188 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
Tomáš Chvátal
ad2c8f1f12 Accepting request 204142 from 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. (forwarded request 204137 from dirkmueller)

OBS-URL: https://build.opensuse.org/request/show/204142
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-Cython?expand=0&rev=17
2013-10-21 18:01:30 +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
Tomáš Chvátal
f7dc769406 Accepting request 203002 from devel:languages:python
update-alternative implementation (forwarded request 203001 from posophe)

OBS-URL: https://build.opensuse.org/request/show/203002
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-Cython?expand=0&rev=16
2013-10-17 12:31:03 +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
Stephan Kulow
b5c9e2e40b Accepting request 179674 from devel:languages:python
housekeeping sr, necessary due to split between d:l:p and d:l:p3 and (manual) _link removal in Factory.

OBS-URL: https://build.opensuse.org/request/show/179674
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-Cython?expand=0&rev=14
2013-06-19 14:20:32 +00:00
Sascha Peilicke
5cc4f775eb Python3 moved to devel:languages:python3
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Cython?expand=0&rev=31
2013-06-17 12:50:36 +00:00
Stephan Kulow
6ffb825556 Accepting request 175239 from 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 (forwarded request 175219 from dirkmueller)

OBS-URL: https://build.opensuse.org/request/show/175239
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-Cython?expand=0&rev=13
2013-05-16 09:25:18 +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
Stephan Kulow
b5de299fa5 Accepting request 162600 from devel:languages:python
fixed python3 build for <12.2 (forwarded request 162331 from apersaud)

OBS-URL: https://build.opensuse.org/request/show/162600
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-Cython?expand=0&rev=12
2013-04-05 11:22:57 +00:00
Todd R
f09e2076b8 Accepting request 162331 from home:apersaud:branches:devel:languages:python
fixed python3 build for <12.2

OBS-URL: https://build.opensuse.org/request/show/162331
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Cython?expand=0&rev=27
2013-04-04 11:00:38 +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
Todd R
ce0497cdad OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Cython?expand=0&rev=25 2012-11-30 14:10:16 +00:00
Stephan Kulow
e5ade195df Accepting request 142493 from devel:languages:python
- 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/request/show/142493
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-Cython?expand=0&rev=10
2012-11-28 13:32:53 +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
Stephan Kulow
d29d6f4022 Accepting request 124997 from devel:languages:python
Fix building on openSUSE 11.4 (forwarded request 124994 from TheBlackCat) (forwarded request 124996 from TheBlackCat)

OBS-URL: https://build.opensuse.org/request/show/124997
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-Cython?expand=0&rev=8
2012-06-15 13:40:33 +00:00
Todd R
8033bab7fb Accepting request 124996 from devel:languages:python3
Fix building on openSUSE 11.4 (forwarded request 124994 from TheBlackCat)

OBS-URL: https://build.opensuse.org/request/show/124996
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Cython?expand=0&rev=21
2012-06-14 13:49:58 +00:00
Stephan Kulow
8ff621abd2 Accepting request 122248 from devel:languages:python
Fix .py/.pyc issues

OBS-URL: https://build.opensuse.org/request/show/122248
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-Cython?expand=0&rev=7
2012-05-29 09:37:16 +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
5782b223e3 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Cython?expand=0&rev=18 2012-05-25 07:47:46 +00:00
Todd R
71d069d577 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Cython?expand=0&rev=17 2012-05-25 07:47:33 +00:00
Todd R
3760a92d5e OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Cython?expand=0&rev=16 2012-05-25 07:47:01 +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
1e3e6df1c4 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Cython?expand=0&rev=14 2012-05-21 10:55:42 +00:00
Todd R
5886714208 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Cython?expand=0&rev=13 2012-05-21 10:19:18 +00:00
Todd R
78b05d04fc OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Cython?expand=0&rev=12 2012-05-21 10:19:11 +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
230dfcd571 Accepting request 84174 from devel:languages:python
- Update to version 0.15.1:
  * Please see http://wiki.cython.org/ReleaseNotes-0.15.1

OBS-URL: https://build.opensuse.org/request/show/84174
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-Cython?expand=0&rev=4
2011-09-22 08:48:07 +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
Lars Vogdt
c6d57254ea Accepting request 81087 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/81087
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-Cython?expand=0&rev=3
2011-09-12 21:08:24 +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
Lars Vogdt
b1fa3fd210 Autobuild autoformatter for 80647
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-Cython?expand=0&rev=2
2011-09-05 14:38:13 +00:00
OBS User buildservice-autocommit
5e3f83032e Updating link to change in openSUSE:Factory/python-Cython revision 2.0
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Cython?expand=0&rev=75cd188b47d43d249edc3a54e5fba757
2011-09-05 14:38:13 +00:00
Lars Vogdt
91b4a55b50 Accepting request 80647 from devel:languages:python
Replaces python-cython

OBS-URL: https://build.opensuse.org/request/show/80647
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-Cython?expand=0&rev=1
2011-09-05 14:38:00 +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