Compare commits
63 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
60a04248d3 | ||
|
22c7c875f6 | ||
|
8f2bc33a68 | ||
|
7eaf638d38 | ||
|
a7f566facc | ||
|
b3f5ceddd7 | ||
|
cecf430ee5 | ||
|
2b54cd00a2 | ||
|
54ac4cbc93 | ||
|
8da8b57575 | ||
|
0917c43591 | ||
|
64e50e4d60 | ||
|
fba34611ce | ||
|
7a0eacba54 | ||
|
298f49063d | ||
|
22e6a03633 | ||
|
72f86860f4 | ||
|
fcf074ba1b | ||
|
a1efb1c004 | ||
|
da2d4baa4f | ||
|
78c23be15b | ||
|
159b0600d8 | ||
|
456fc7351a | ||
|
5494112907 | ||
|
7e7b4c5c47 | ||
|
70218f5054 | ||
|
25aa2d515f | ||
|
b6552cdce0 | ||
|
988c4bd2b5 | ||
|
64440471e9 | ||
|
22eeceeacd | ||
|
ee3523bfd8 | ||
|
74cd90941f | ||
|
9a8ab80628 | ||
|
832569fb21 | ||
|
00806c0650 | ||
|
e3bf4c22ab | ||
|
17cb8f049d | ||
|
bff38cfe60 | ||
|
2984d1f63d | ||
|
a8c4a41ea7 | ||
|
378fa220f5 | ||
|
c1fb4fe4e0 | ||
|
06f81f9aa7 | ||
|
4823970274 | ||
|
08942759f1 | ||
|
652bfda805 | ||
|
1b6b81a1a3 | ||
|
26b7ee5c4b | ||
|
5eac141775 | ||
|
0b262468d9 | ||
|
2883e893e9 | ||
|
b37a99a622 | ||
|
85858ae9a1 | ||
|
787beee0f7 | ||
|
9a40121399 | ||
|
8f24af5fa7 | ||
|
d51917e0d7 | ||
|
f8ffed6816 | ||
|
96adc70a4f | ||
|
ff20d52e7e | ||
|
d314a5b142 | ||
|
3d6389fca0 |
16
.gitignore
vendored
16
.gitignore
vendored
@ -1,15 +1 @@
|
||||
/pyzmq-0.1.20100725git18f5d06.tar.xz
|
||||
/pyzmq-2.0.8.tar.gz
|
||||
/pyzmq-2.0.10.tar.gz
|
||||
/pyzmq-2.0.10.1.tar.gz
|
||||
/pyzmq-2.1.1.tar.gz
|
||||
/pyzmq-2.1.4.tar.gz
|
||||
/pyzmq-2.1.9.tar.gz
|
||||
/pyzmq-2.1.11.tar.gz
|
||||
/pyzmq-2.2.0.tar.gz
|
||||
/pyzmq-2.2.0.1.tar.gz
|
||||
/pyzmq-13.0.0.tar.gz
|
||||
/pyzmq-13.0.2.tar.gz
|
||||
/pyzmq-14.3.1.tar.gz
|
||||
/pyzmq-14.4.1.tar.gz
|
||||
/pyzmq-14.7.0.tar.gz
|
||||
pyzmq-*.tar.gz
|
||||
|
29
1961.patch
Normal file
29
1961.patch
Normal file
@ -0,0 +1,29 @@
|
||||
From 82831563d02f0c1cc4887173c00fd04308bb4804 Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= <miro@hroncok.cz>
|
||||
Date: Mon, 11 Mar 2024 09:54:57 +0100
|
||||
Subject: [PATCH] Don't fail when logging.Logger.warn is not available
|
||||
|
||||
Python 3.13 removed it.
|
||||
|
||||
See https://github.com/python/cpython/issues/105376
|
||||
---
|
||||
zmq/log/handlers.py | 6 +++++-
|
||||
1 file changed, 5 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/zmq/log/handlers.py b/zmq/log/handlers.py
|
||||
index 841d80524..88fe571ca 100644
|
||||
--- a/zmq/log/handlers.py
|
||||
+++ b/zmq/log/handlers.py
|
||||
@@ -218,7 +218,11 @@ def log(self, level, topic, msg, *args, **kwargs):
|
||||
# Generate the methods of TopicLogger, since they are just adding a
|
||||
# topic prefix to a message.
|
||||
for name in "debug warn warning error critical fatal".split():
|
||||
- meth = getattr(logging.Logger, name)
|
||||
+ try:
|
||||
+ meth = getattr(logging.Logger, name)
|
||||
+ except AttributeError:
|
||||
+ # some methods are missing, e.g. Logger.warn was removed from Python 3.13
|
||||
+ continue
|
||||
setattr(
|
||||
TopicLogger,
|
||||
name,
|
391
python-zmq.spec
391
python-zmq.spec
@ -1,379 +1,114 @@
|
||||
%global with_python3 1
|
||||
|
||||
# we don't want to provide private python extension libs in either the python2 or python3 dirs
|
||||
%global __provides_exclude_from ^(%{python2_sitearch}|%{python3_sitearch})/.*\\.so$
|
||||
|
||||
%global checkout 18f5d061558a176f5496aa8e049182c1a7da64f6
|
||||
|
||||
%global srcname pyzmq
|
||||
%global modname zmq
|
||||
|
||||
%global run_tests 1
|
||||
%global common_description %{expand:
|
||||
The 0MQ lightweight messaging kernel is a library which extends the
|
||||
standard socket interfaces with features traditionally provided by
|
||||
specialized messaging middle-ware products. 0MQ sockets provide an
|
||||
abstraction of asynchronous message queues, multiple messaging
|
||||
patterns, message filtering (subscriptions), seamless access to
|
||||
multiple transport protocols and more.}
|
||||
|
||||
Name: python-zmq
|
||||
Version: 14.7.0
|
||||
Release: 11%{?dist}
|
||||
Version: 25.1.1
|
||||
Release: %autorelease
|
||||
Summary: Software library for fast, message-based applications
|
||||
|
||||
Group: Development/Libraries
|
||||
License: LGPLv3+ and ASL 2.0 and BSD
|
||||
URL: http://www.zeromq.org/bindings:python
|
||||
# VCS: git:http://github.com/zeromq/pyzmq.git
|
||||
# git checkout with the commands:
|
||||
# git clone http://github.com/zeromq/pyzmq.git pyzmq.git
|
||||
# cd pyzmq.git
|
||||
# git archive --format=tar --prefix=pyzmq-%%{version}/ %%{checkout} | xz -z --force - > pyzmq-%%{version}.tar.xz
|
||||
Source0: https://pypi.python.org/packages/source/p/pyzmq/pyzmq-%{version}.tar.gz
|
||||
License: MPLv2.0 and ASL 2.0 and BSD
|
||||
URL: https://zeromq.org/languages/python/
|
||||
Source0: %{pypi_source pyzmq}
|
||||
|
||||
BuildRequires: chrpath
|
||||
# Python 3.13 compatibility
|
||||
Patch: https://github.com/zeromq/pyzmq/pull/1961.patch
|
||||
|
||||
BuildRequires: python2-devel
|
||||
BuildRequires: python-setuptools
|
||||
BuildRequires: zeromq-devel
|
||||
BuildRequires: python-nose
|
||||
BuildRequires: Cython
|
||||
BuildRequires: gcc
|
||||
|
||||
# For some tests
|
||||
# czmq currently FTBFS, so enable it some time later
|
||||
#BuildRequires: czmq-devel
|
||||
BuildRequires: pkgconfig(libzmq)
|
||||
|
||||
%if 0%{?with_python3}
|
||||
BuildRequires: python%{python3_pkgversion}-devel
|
||||
BuildRequires: python%{python3_pkgversion}-setuptools
|
||||
# needed for 2to3
|
||||
BuildRequires: python-tools
|
||||
BuildRequires: python%{python3_pkgversion}-nose
|
||||
BuildRequires: python%{python3_pkgversion}-pytest
|
||||
BuildRequires: python%{python3_pkgversion}-pytest-asyncio
|
||||
BuildRequires: python%{python3_pkgversion}-tornado
|
||||
BuildRequires: python%{python3_pkgversion}-numpy
|
||||
|
||||
# The gevent tests are automatically skipped when gevent is not installed.
|
||||
# When bootstrapping new Python versions, gevent is often not available until very late.
|
||||
# This bcond allows to ship zmq without gevent when needed.
|
||||
%bcond gevent 1
|
||||
%if %{with gevent}
|
||||
BuildRequires: python%{python3_pkgversion}-gevent
|
||||
%endif
|
||||
|
||||
# Explicit Requires zeromq
|
||||
# to not install sclo-cassandra3-zeromq instead zeromq
|
||||
Requires: zeromq
|
||||
|
||||
%description
|
||||
The 0MQ lightweight messaging kernel is a library which extends the
|
||||
standard socket interfaces with features traditionally provided by
|
||||
specialized messaging middle-ware products. 0MQ sockets provide an
|
||||
abstraction of asynchronous message queues, multiple messaging
|
||||
patterns, message filtering (subscriptions), seamless access to
|
||||
multiple transport protocols and more.
|
||||
|
||||
This package contains the python bindings.
|
||||
|
||||
%package -n python2-zmq
|
||||
Provides: python-pyzmq = %{version}
|
||||
Summary: Software library for fast, message-based applications
|
||||
%{?python_provide:%python_provide python2-%{modname}}
|
||||
%description -n python2-zmq
|
||||
The 0MQ lightweight messaging kernel is a library which extends the
|
||||
standard socket interfaces with features traditionally provided by
|
||||
specialized messaging middle-ware products. 0MQ sockets provide an
|
||||
abstraction of asynchronous message queues, multiple messaging
|
||||
patterns, message filtering (subscriptions), seamless access to
|
||||
multiple transport protocols and more.
|
||||
|
||||
This package contains the python bindings.
|
||||
%description %{common_description}
|
||||
|
||||
|
||||
%package -n python2-zmq-tests
|
||||
Summary: Software library for fast, message-based applications
|
||||
Group: Development/Libraries
|
||||
License: LGPLv3+
|
||||
Requires: python2-zmq = %{version}-%{release}
|
||||
%{?python_provide:%python_provide python2-%{modname}-tests}
|
||||
%description -n python2-zmq-tests
|
||||
The 0MQ lightweight messaging kernel is a library which extends the
|
||||
standard socket interfaces with features traditionally provided by
|
||||
specialized messaging middle-ware products. 0MQ sockets provide an
|
||||
abstraction of asynchronous message queues, multiple messaging
|
||||
patterns, message filtering (subscriptions), seamless access to
|
||||
multiple transport protocols and more.
|
||||
|
||||
This package contains the testsuite for the python bindings.
|
||||
|
||||
|
||||
%if 0%{?with_python3}
|
||||
%package -n python%{python3_pkgversion}-zmq
|
||||
Provides: python%{python3_pkgversion}-pyzmq = %{version}
|
||||
Summary: Software library for fast, message-based applications
|
||||
Group: Development/Libraries
|
||||
License: LGPLv3+
|
||||
%{?python_provide:%python_provide python%{python3_pkgversion}-%{modname}}
|
||||
%description -n python%{python3_pkgversion}-zmq
|
||||
The 0MQ lightweight messaging kernel is a library which extends the
|
||||
standard socket interfaces with features traditionally provided by
|
||||
specialized messaging middle-ware products. 0MQ sockets provide an
|
||||
abstraction of asynchronous message queues, multiple messaging
|
||||
patterns, message filtering (subscriptions), seamless access to
|
||||
multiple transport protocols and more.
|
||||
Summary: %{summary}
|
||||
License: MPL-2.0
|
||||
%py_provides python%{python3_pkgversion}-pyzmq
|
||||
|
||||
%description -n python%{python3_pkgversion}-zmq %{common_description}
|
||||
|
||||
This package contains the python bindings.
|
||||
|
||||
|
||||
%package -n python%{python3_pkgversion}-zmq-tests
|
||||
Summary: Software library for fast, message-based applications
|
||||
Group: Development/Libraries
|
||||
License: LGPLv3+
|
||||
Summary: %{summary}, testsuite
|
||||
License: MPL-2.0
|
||||
Requires: python%{python3_pkgversion}-zmq = %{version}-%{release}
|
||||
%{?python_provide:%python_provide python%{python3_pkgversion}-%{modname}-tests}
|
||||
%description -n python%{python3_pkgversion}-zmq-tests
|
||||
The 0MQ lightweight messaging kernel is a library which extends the
|
||||
standard socket interfaces with features traditionally provided by
|
||||
specialized messaging middle-ware products. 0MQ sockets provide an
|
||||
abstraction of asynchronous message queues, multiple messaging
|
||||
patterns, message filtering (subscriptions), seamless access to
|
||||
multiple transport protocols and more.
|
||||
%py_provides python%{python3_pkgversion}-pyzmq-tests
|
||||
|
||||
%description -n python%{python3_pkgversion}-zmq-tests %{common_description}
|
||||
|
||||
This package contains the testsuite for the python bindings.
|
||||
|
||||
%endif
|
||||
|
||||
|
||||
%prep
|
||||
%setup -q -n %{srcname}-%{version}
|
||||
%autosetup -p1 -n pyzmq-%{version}
|
||||
|
||||
# Upstream is testing with cython 3 on 3.12
|
||||
sed -i -e '/cython>=3/d' pyproject.toml test-requirements.txt
|
||||
sed -i -e '/min_cython_version/s/"3.*"/"0.29"/' setup.py
|
||||
|
||||
# remove bundled libraries
|
||||
rm -rf bundled
|
||||
|
||||
# forcibly regenerate the Cython-generated .c files:
|
||||
#find zmq -name "*.c" -delete
|
||||
#%%{__python} setup.py cython
|
||||
# remove the Cython .c files in order to regenerate them:
|
||||
find zmq -name "*.c" -delete
|
||||
|
||||
# remove shebangs
|
||||
for lib in zmq/eventloop/*.py; do
|
||||
sed '/\/usr\/bin\/env/d' $lib > $lib.new &&
|
||||
touch -r $lib $lib.new &&
|
||||
mv $lib.new $lib
|
||||
done
|
||||
grep -lr "^#\!/usr/bin/env python" | xargs sed -i "1d"
|
||||
|
||||
# remove excecutable bits
|
||||
chmod -x examples/pubsub/topics_pub.py
|
||||
chmod -x examples/pubsub/topics_sub.py
|
||||
|
||||
# delete hidden files
|
||||
#find examples -name '.*' | xargs rm -v
|
||||
|
||||
find . -type f -executable | xargs chmod -x
|
||||
|
||||
%generate_buildrequires
|
||||
%pyproject_buildrequires
|
||||
|
||||
%build
|
||||
%global py_setup setupegg.py
|
||||
%py2_build
|
||||
|
||||
%if 0%{?with_python3}
|
||||
%py3_build
|
||||
%endif # with_python3
|
||||
|
||||
|
||||
%pyproject_wheel
|
||||
|
||||
%install
|
||||
%global RPATH /zmq/{backend/cython,devices}
|
||||
# Must do the python3 install first because the scripts in /usr/bin are
|
||||
# overwritten with every setup.py install (and we want the python2 version
|
||||
# to be the default for now).
|
||||
%if 0%{?with_python3}
|
||||
%py3_install
|
||||
|
||||
chrpath --delete %{buildroot}%{python3_sitearch}%{RPATH}/*.so
|
||||
%endif # with_python3
|
||||
|
||||
|
||||
%py2_install
|
||||
|
||||
chrpath --delete %{buildroot}%{python_sitearch}%{RPATH}/*.so
|
||||
|
||||
%pyproject_install
|
||||
%pyproject_save_files zmq
|
||||
|
||||
%check
|
||||
%if 0%{?run_tests}
|
||||
rm zmq/__*
|
||||
PYTHONPATH=%{buildroot}%{python2_sitearch} \
|
||||
%{__python2} setup.py test
|
||||
|
||||
%if 0%{?with_python3}
|
||||
# Temporarily disable the testsuite for now as it currently hangs in koji:
|
||||
# http://koji.fedoraproject.org/koji/taskinfo?taskID=10191201
|
||||
#rm zmq/__*
|
||||
#PYTHONPATH=%{buildroot}%{python3_sitearch} \
|
||||
# %{__python3} setup.py test
|
||||
%endif
|
||||
# to avoid partially initialized zmq module from cwd
|
||||
# test_draft seems to get incorrectly run - https://github.com/zeromq/pyzmq/issues/1853
|
||||
cd %{_topdir}
|
||||
%pytest --pyargs zmq -v --asyncio-mode auto \
|
||||
%ifarch ppc64le
|
||||
-k "not (test_draft or test_green_device or (Green and (test_raw or test_timeout or test_poll)))" # this crashes on Python 3.12, TODO investigate
|
||||
%else
|
||||
-k "not test_draft"
|
||||
%endif
|
||||
|
||||
|
||||
%files -n python2-%{modname}
|
||||
%doc README.md COPYING.* examples/
|
||||
%{python2_sitearch}/%{srcname}-*.egg-info
|
||||
%{python2_sitearch}/zmq
|
||||
%exclude %{python2_sitearch}/zmq/tests
|
||||
|
||||
%files -n python2-%{modname}-tests
|
||||
%{python2_sitearch}/zmq/tests
|
||||
|
||||
%if 0%{?with_python3}
|
||||
%files -n python%{python3_pkgversion}-zmq
|
||||
%doc README.md COPYING.*
|
||||
# examples/
|
||||
%{python3_sitearch}/%{srcname}-*.egg-info
|
||||
%{python3_sitearch}/zmq
|
||||
%files -n python%{python3_pkgversion}-zmq -f %{pyproject_files}
|
||||
%doc README.md
|
||||
%exclude %{python3_sitearch}/zmq/tests
|
||||
|
||||
%files -n python%{python3_pkgversion}-zmq-tests
|
||||
%{python3_sitearch}/zmq/tests
|
||||
%endif
|
||||
|
||||
|
||||
%changelog
|
||||
* Tue Feb 18 2020 Kevin Fenzi <kevin@scrye.com> - 14.7.0-11
|
||||
- Fix provides for python-pyzmq
|
||||
%autochangelog
|
||||
|
||||
* Tue Jan 28 2020 Jochen Breuer <jbreuer@suse.de> - 14.7.0-10
|
||||
- Providing python-pyzmq, since some packages are still relying on that.
|
||||
See: https://bugzilla.redhat.com/show_bug.cgi?id=1789889
|
||||
|
||||
* Sun Jun 02 2019 Sérgio Basto <sergio@serjux.com> - 14.7.0-9
|
||||
- Explicit Requires zeromq
|
||||
|
||||
* Sun Apr 28 2019 FeRD (Frank Dana) <ferdnyc@gmail.com> - 14.7.0-8
|
||||
- Rebuild for Python 3.6
|
||||
|
||||
* Tue Jul 12 2016 Orion Poplawski <orion@cora.nwra.com> - 14.7.0-7
|
||||
- Use modern provides filtering
|
||||
|
||||
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 14.7.0-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Mon Nov 16 2015 Thomas Spura <tomspur@fedoraproject.org> - 14.7.0-5
|
||||
- Use setupegg.py for building/installing to have an unzip'ed egg
|
||||
|
||||
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 14.7.0-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
|
||||
|
||||
* Fri Oct 16 2015 Thomas Spura <tomspur@fedoraproject.org> - 14.7.0-3
|
||||
- rebuilt to pick up new obsoletes/provides
|
||||
|
||||
* Wed Oct 14 2015 Thomas Spura <tomspur@fedoraproject.org> - 14.7.0-2
|
||||
- Use python_provide and py_build macros
|
||||
- Cleanup spec
|
||||
|
||||
* Mon Jun 29 2015 Ralph Bean <rbean@redhat.com> - 14.7.0-2
|
||||
- Support python34 on EPEL7.
|
||||
|
||||
* Tue Jun 23 2015 Thomas Spura <tomspur@fedoraproject.org> - 14.7.0-1
|
||||
- update to 14.7.0
|
||||
- temporarily disable python3 testsuite as it hangs on koji
|
||||
|
||||
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 14.4.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Mon Nov 17 2014 Thomas Spura <tomspur@fedoraproject.org> - 14.4.1-1
|
||||
- update to 14.4.1
|
||||
- build against zeromq-4
|
||||
|
||||
* Wed Aug 27 2014 Thomas Spura <tomspur@fedoraproject.org> - 14.3.1-1
|
||||
- update to 14.3.1
|
||||
|
||||
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 13.0.2-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||
|
||||
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 13.0.2-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||
|
||||
* Wed May 14 2014 Bohuslav Kabrda <bkabrda@redhat.com> - 13.0.2-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4
|
||||
|
||||
* Mon Aug 5 2013 Thomas Spura <tomspur@fedoraproject.org> - 13.0.2-1
|
||||
- update to new version (fixes FTBFS)
|
||||
|
||||
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 13.0.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||
|
||||
* Wed Mar 20 2013 Thomas Spura <tomspur@fedoraproject.org> - 13.0.0-1
|
||||
- update to 13.0.0
|
||||
- add BSD to license list
|
||||
|
||||
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.0.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||
|
||||
* Mon Oct 15 2012 Thomas Spura <tomspur@fedoraproject.org> - 2.2.0.1-1
|
||||
- update to 2.2.0.1
|
||||
- move to BR zeromq3
|
||||
- not all *.c files may be deleted, when receneration of .c files by Cython
|
||||
- remove bundled folder explicitely
|
||||
|
||||
* Sat Aug 04 2012 David Malcolm <dmalcolm@redhat.com> - 2.2.0-5
|
||||
- rebuild for https://fedoraproject.org/wiki/Features/Python_3.3
|
||||
|
||||
* Fri Aug 3 2012 David Malcolm <dmalcolm@redhat.com> - 2.2.0-4
|
||||
- force regeneration of .c files by Cython (needed for python 3.3 support)
|
||||
|
||||
* Fri Aug 3 2012 David Malcolm <dmalcolm@redhat.com> - 2.2.0-3
|
||||
- remove rhel logic from with_python3 conditional
|
||||
|
||||
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||
|
||||
* Thu Apr 26 2012 Thomas Spura <tomspur@fedoraproject.org> - 2.2.0-1
|
||||
- update to 2.2.0
|
||||
|
||||
* Wed Mar 7 2012 Thomas Spura <tomspur@fedoraproject.org> - 2.1.11-1
|
||||
- update to new version
|
||||
|
||||
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.9-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||
|
||||
* Wed Dec 14 2011 Thomas Spura <tomspur@fedoraproject.org> - 2.1.9-3
|
||||
- tests package requires main package
|
||||
- filter python3 libs
|
||||
|
||||
* Thu Dec 8 2011 Thomas Spura <tomspur@fedoraproject.org> - 2.1.9-2
|
||||
- use proper buildroot macro
|
||||
- don't include tests twice
|
||||
|
||||
* Wed Sep 21 2011 Thomas Spura <tomspur@fedoraproject.org> - 2.1.9-1
|
||||
- update to new version
|
||||
- run testsuite on python3
|
||||
|
||||
* Sun Jul 31 2011 Thomas Spura <tomspur@fedoraproject.org> - 2.1.4-2
|
||||
- don't delete the tests, needed by ipython-tests on runtime
|
||||
- don't use _sourcedir macro
|
||||
|
||||
* Wed Apr 6 2011 Thomas Spura <tomspur@fedoraproject.org> - 2.1.4-1
|
||||
- update to new version (#690199)
|
||||
|
||||
* Wed Mar 23 2011 Thomas Spura <tomspur@fedoraproject.org> - 2.1.1-1
|
||||
- update to new version (#682201)
|
||||
|
||||
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.10.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||
|
||||
* Sun Jan 30 2011 Thomas Spura <tomspur@fedoraproject.org> - 2.0.10.1-1
|
||||
- update to new version (fixes memory leak)
|
||||
- no need to run 2to3 on python3 subpackage
|
||||
|
||||
* Thu Jan 13 2011 Thomas Spura <tomspur@fedoraproject.org> - 2.0.10-1
|
||||
- update to new version
|
||||
- remove patch (is upstream)
|
||||
- run tests differently
|
||||
|
||||
* Wed Dec 29 2010 David Malcolm <dmalcolm@redhat.com> - 2.0.8-2
|
||||
- rebuild for newer python3
|
||||
|
||||
* Thu Sep 23 2010 Thomas Spura <tomspur@fedoraproject.org> - 2.0.8-1
|
||||
- update to new version to be comply with zeromp
|
||||
|
||||
* Sun Aug 22 2010 Thomas Spura <tomspur@fedoraproject.org> - 0.1.20100725git18f5d06-4
|
||||
- rebuild with python3.2
|
||||
http://lists.fedoraproject.org/pipermail/devel/2010-August/141368.html
|
||||
|
||||
* Thu Aug 5 2010 Thomas Spura <tomspur@fedoraproject.org> - 0.1.20100725git18f5d06-3
|
||||
- add missing BR for 2to3
|
||||
|
||||
* Tue Aug 3 2010 Thomas Spura <tomspur@fedoraproject.org> - 0.1.20100725git18f5d06-2
|
||||
- build python3 subpackage
|
||||
- rename to from pyzmq to python-zmq
|
||||
- change license
|
||||
|
||||
* Sun Jul 25 2010 Thomas Spura <tomspur@fedoraproject.org> - 0.1.20100725git18f5d06-1
|
||||
- renew git snapshot
|
||||
- start from version 0.1 like upstream (not the version from zeromq)
|
||||
- remove buildroot / %%clean
|
||||
|
||||
* Sat Jun 12 2010 Thomas Spura <tomspur@fedoraproject.org - 2.0.7-1
|
||||
- initial package (based on upstreams example one)
|
||||
|
Loading…
Reference in New Issue
Block a user