15 Commits

Author SHA256 Message Date
Sascha Peilicke
32f780db18 - Update to version 0.20:
* Support for CPython 3.4.
  * Support for calling C++ template functions.
  * yield is supported in finally clauses.
  * The C code generated for finally blocks is duplicated for each exit
    case to allow for better optimisations by the C compiler.
  * Cython tries to undo the Python optimisationism of assigning a bound
    method to a local variable when it can generate better code for the
    direct call.
  * Constant Python float values are cached.
  * String equality comparisons can use faster type specific code in
    more cases than before.
  * String/Unicode formatting using the '%' operator uses a faster
    C-API call.
  * bytearray has become a known type and supports coercion from and
    to C strings.  Indexing, slicing and decoding is optimised. Note that
    this may have an impact on existing code due to type inference.
  * Using cdef basestring stringvar and function arguments typed as
    basestring is now meaningful and allows assigning exactly
    str and unicode objects, but no subtypes of these types.
  * Support for the __debug__ builtin.
  * Assertions in Cython compiled modules are disabled if the running
    Python interpreter was started with the "-O" option.
  * Some types that Cython provides internally, such as functions and
    generators, are now shared across modules if more than one Cython
    implemented module is imported.
  * The type inference algorithm works more fine granular by taking the
    results of the control flow analysis into account.
  * A new script in bin/cythonize provides a command line frontend
    to the cythonize() compilation function (including distutils build).

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Cython?expand=0&rev=37
2014-01-31 10:24:36 +00:00
Sascha Peilicke
96a481b360 Accepting request 204137 from home:dirkmueller:branches:devel:languages:python
- update to 0.19.2:
    * Some standard declarations were fixed or updated, including the previously
    incorrect declaration of ``PyBuffer_FillInfo()`` and some missing bits in
    ``libc.math``.
    * Heap allocated subtypes of ``type`` used the wrong base type struct at the
    C level.
    * Calling the unbound method dict.keys/value/items() in dict subtypes could
    call the bound object method instead of the unbound supertype method.
    * "yield" wasn't supported in "return" value expressions.
    * Using the "bint" type in memory views lead to unexpected results.
    It is now an error.
    * Assignments to global/closure variables could catch them in an illegal state
    while deallocating the old value.

OBS-URL: https://build.opensuse.org/request/show/204137
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Cython?expand=0&rev=35
2013-10-21 12:30:33 +00:00
Denisart Benjamin
32706eaef3 Accepting request 203001 from home:posophe:branches:devel:languages:python
update-alternative implementation

OBS-URL: https://build.opensuse.org/request/show/203001
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Cython?expand=0&rev=33
2013-10-11 17:08:38 +00:00
Sascha Peilicke
b6983bc4bf Accepting request 175219 from home:dirkmueller:branches:devel:languages:python
- update to 0.19.1:
  * Completely empty C-API structs for extension type slots (protocols like
  number/mapping/sequence) are no longer generated into the C code.
  * Docstrings that directly follow a public/readonly attribute declaration
  in a cdef class will be used as docstring of the auto-generated property.
  This fixes ticket 206.
  * The automatic signature documentation tries to preserve more semantics
  of default arguments and argument types.  Specifically, ``bint`` arguments
  now appear as type ``bool``.
  * A warning is emitted when negative literal indices are found inside of
  a code section that disables ``wraparound`` handling.  This helps with
  fixing invalid code that might fail in the face of future compiler
  optimisations.
  * Constant folding for boolean expressions (and/or) was improved.
  * Added a build_dir option to cythonize() which allows one to place
  the generated .c files outside the source tree.

- Update to version 0.19:
  + Please see http://wiki.cython.org/ReleaseNotes-0.19

OBS-URL: https://build.opensuse.org/request/show/175219
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Cython?expand=0&rev=29
2013-05-13 09:26:29 +00:00
Sascha Peilicke
74e6b4489b - Update to version 0.18:
+ Please see http://wiki.cython.org/ReleaseNotes-0.18
  + Please see http://wiki.cython.org/ReleaseNotes-0.17.2

- Update to version 0.18:
  + Please see http://wiki.cython.org/ReleaseNotes-0.18

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Cython?expand=0&rev=26
2013-03-27 12:20:00 +00:00
Sascha Peilicke
6bdab78bea - Update to version 0.17.2:
+ Please see http://wiki.cython.org/ReleaseNotes-0.18.2
- Drop excessive macro usage
- No need for "-fno-strict-aliasing" anymore
- One rpmlintrc is enough

- Update to version 0.17.2:
  + Please see http://wiki.cython.org/ReleaseNotes-0.18.2
- Drop excessive macro usage
- No need for "-fno-strict-aliasing" anymore
- One rpmlintrc is enough
- Python3 binary suffix should be "-%{py3_ver}"

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Cython?expand=0&rev=23
2012-11-22 15:35:09 +00:00
Todd R
6d6909968a OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Cython?expand=0&rev=19 2012-05-25 07:47:58 +00:00
Todd R
8e62ae3dca OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Cython?expand=0&rev=15 2012-05-21 10:55:45 +00:00
Todd R
7df235766e Accepting request 121584 from home:TheBlackCat:branches:devel:languages:python
Add python 3 package

OBS-URL: https://build.opensuse.org/request/show/121584
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Cython?expand=0&rev=11
2012-05-21 09:21:58 +00:00
Sascha Peilicke
7bbff47556 Accepting request 115083 from home:vdziewiecki:branches:devel:languages:python
-Update to 0.16:
	http://wiki.cython.org/ReleaseNotes-0.16

OBS-URL: https://build.opensuse.org/request/show/115083
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Cython?expand=0&rev=10
2012-04-24 08:43:13 +00:00
Pascal Bleser
d5a19efafe - add rpmlintrc to mask false positives
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Cython?expand=0&rev=9
2012-02-29 19:08:32 +00:00
Sascha Peilicke
e977c66557 - Update to version 0.15.1:
* Please see http://wiki.cython.org/ReleaseNotes-0.15.1

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Cython?expand=0&rev=6
2011-09-21 12:36:31 +00:00
Sascha Peilicke
f1770ec712 - Add Provides/Obsoletes for python-cython
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Cython?expand=0&rev=4
2011-09-06 13:29:33 +00:00
Sascha Peilicke
3582dcf231 - Fixed a typo
- Removed testsuite again, fixes SLE build

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Cython?expand=0&rev=2
2011-09-02 11:06:10 +00:00
Sascha Peilicke
40eef20fb9 - Update to version 0.15:
* For loop docs fix and pointer iteration. 
  * Pure decorators now implemented.
  * fix bug #707: optimised dict iteration over non-trivial expressions fail...
  * optimise object.pop() for sets
  * Py2.4 fix: PySet_Pop() appeared in Py2.5 
  * Py3.3 test fix
  * Support module level control flow and Entry-level error on uninitialized
- Spec file cleanup:
  - Fixed wrong EOL encodings and non-excutable scripts
  - Set license to Apache-2.0
  - Run testsuite

- updated to 0.14.1
  - changes too numerous to list, see the following for more details:
    * http://wiki.cython.org/ReleaseNotes-0.13
    * http://wiki.cython.org/ReleaseNotes-0.14
    * http://wiki.cython.org/ReleaseNotes-0.14.1

- Use renewed python-macros, also for compatibility with other
  build targets.

- Initial package of Cython 0.12.1

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Cython?expand=0&rev=1
2011-09-02 09:55:13 +00:00