Accepting request 305747 from devel:languages:python
1 OBS-URL: https://build.opensuse.org/request/show/305747 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-greenlet?expand=0&rev=25
This commit is contained in:
commit
a18aec18ba
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b990f00f120c4cfb6672eec2acd32210990a2c7b70b815c034d1d8cbf08e2dbe
|
||||
size 77396
|
3
greenlet-0.4.6.zip
Normal file
3
greenlet-0.4.6.zip
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3000b5c4301a0285f914fd7bb2eb613279f7098000c8e2150b169abcad4c3393
|
||||
size 77759
|
@ -1,3 +1,16 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed May 6 12:29:51 UTC 2015 - benoit.monin@gmx.fr
|
||||
|
||||
- update to version 0.4.6:
|
||||
* Expose `_stack_saved` property on greenlet objects, it may be
|
||||
used to introspect the amount of memory used by a saved stack,
|
||||
but the API is subject to change in the future
|
||||
* Added a workaround for `return 0` compiler optimizations on all
|
||||
architectures
|
||||
* C API typo fixes
|
||||
- add -fno-strict-aliasing to CFLAGS to fix compiler warnings
|
||||
- remove hidden file .buildinfo from html documentation
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Nov 18 13:57:34 UTC 2014 - toddrme2178@gmail.com
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-greenlet
|
||||
#
|
||||
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2010 B1 Systems GmbH, Vohburg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
@ -18,7 +18,7 @@
|
||||
|
||||
|
||||
Name: python-greenlet
|
||||
Version: 0.4.5
|
||||
Version: 0.4.6
|
||||
Release: 0
|
||||
Url: http://pypi.python.org/pypi/greenlet
|
||||
Summary: Lightweight in-process concurrent programming
|
||||
@ -58,14 +58,14 @@ This package contains header files required for C modules development.
|
||||
%patch1 -p1
|
||||
|
||||
%build
|
||||
CFLAGS="%{optflags} -fno-tree-dominator-opts" python setup.py build
|
||||
cd doc && make html
|
||||
CFLAGS="%{optflags} -fno-tree-dominator-opts -fno-strict-aliasing" python setup.py build
|
||||
cd doc && make html && rm _build/html/.buildinfo
|
||||
|
||||
%install
|
||||
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
|
||||
|
||||
%check
|
||||
CFLAGS="%{optflags} -fno-tree-dominator-opts" python setup.py test
|
||||
CFLAGS="%{optflags} -fno-tree-dominator-opts -fno-strict-aliasing" python setup.py -q test
|
||||
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
|
Loading…
Reference in New Issue
Block a user