2020-04-04 00:17:18 +00:00
|
|
|
# what it's called on pypi
|
2010-08-16 11:10:46 +00:00
|
|
|
%global srcname pyzmq
|
2020-04-04 00:17:18 +00:00
|
|
|
# what it's imported as
|
|
|
|
%global libname zmq
|
|
|
|
# name of egg info directory
|
|
|
|
%global eggname %{srcname}
|
|
|
|
# package name fragment
|
|
|
|
%global pkgname %{libname}
|
|
|
|
|
|
|
|
%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.}
|
2010-08-16 11:10:46 +00:00
|
|
|
|
2018-05-12 10:48:28 +00:00
|
|
|
%global run_tests 0
|
2011-03-23 18:10:28 +00:00
|
|
|
|
2020-04-04 00:17:18 +00:00
|
|
|
Name: python-%{pkgname}
|
2021-02-13 01:03:51 +00:00
|
|
|
Version: 22.0.3
|
2021-07-23 10:25:33 +00:00
|
|
|
Release: 3%{?dist}
|
2010-08-16 11:10:46 +00:00
|
|
|
Summary: Software library for fast, message-based applications
|
|
|
|
|
2013-03-20 11:12:44 +00:00
|
|
|
License: LGPLv3+ and ASL 2.0 and BSD
|
2020-04-04 00:17:18 +00:00
|
|
|
URL: https://zeromq.org/languages/python/
|
|
|
|
Source0: %pypi_source
|
|
|
|
|
2018-07-10 13:56:25 +00:00
|
|
|
BuildRequires: gcc
|
2014-08-27 21:19:09 +00:00
|
|
|
BuildRequires: chrpath
|
2018-05-12 10:48:28 +00:00
|
|
|
BuildRequires: %{_bindir}/pathfix.py
|
2014-08-27 21:19:09 +00:00
|
|
|
|
2014-11-17 09:03:11 +00:00
|
|
|
BuildRequires: zeromq-devel
|
2010-08-16 11:10:46 +00:00
|
|
|
|
2015-06-23 12:00:30 +00:00
|
|
|
# For some tests
|
2015-06-23 12:39:36 +00:00
|
|
|
# czmq currently FTBFS, so enable it some time later
|
|
|
|
#BuildRequires: czmq-devel
|
2015-06-23 12:00:30 +00:00
|
|
|
|
2015-09-01 16:19:32 +00:00
|
|
|
BuildRequires: python%{python3_pkgversion}-devel
|
|
|
|
BuildRequires: python%{python3_pkgversion}-setuptools
|
2019-05-14 18:10:49 +00:00
|
|
|
BuildRequires: python%{python3_pkgversion}-Cython
|
2016-07-12 17:28:13 +00:00
|
|
|
%if 0%{?run_tests}
|
|
|
|
BuildRequires: python%{python3_pkgversion}-pytest
|
|
|
|
BuildRequires: python%{python3_pkgversion}-tornado
|
|
|
|
%endif
|
2010-08-16 11:10:46 +00:00
|
|
|
|
2014-11-17 09:03:11 +00:00
|
|
|
|
2020-04-04 00:17:18 +00:00
|
|
|
%description %{common_description}
|
2010-08-16 11:10:46 +00:00
|
|
|
|
2011-07-31 13:47:31 +00:00
|
|
|
|
2020-04-04 00:17:18 +00:00
|
|
|
%package -n python%{python3_pkgversion}-%{pkgname}
|
2019-11-29 10:46:14 +00:00
|
|
|
Summary: %{summary}
|
2010-08-16 11:10:46 +00:00
|
|
|
License: LGPLv3+
|
2020-04-04 00:17:18 +00:00
|
|
|
%{?python_provide:%python_provide python%{python3_pkgversion}-%{pkgname}}
|
|
|
|
%{?python_provide:%python_provide python%{python3_pkgversion}-%{srcname}}
|
|
|
|
Provides: python%{python3_pkgversion}-%{srcname} = %{version}-%{release}
|
|
|
|
|
|
|
|
%description -n python%{python3_pkgversion}-%{pkgname} %{common_description}
|
2010-08-16 11:10:46 +00:00
|
|
|
|
|
|
|
This package contains the python bindings.
|
2011-07-31 13:47:31 +00:00
|
|
|
|
|
|
|
|
2020-04-04 00:17:18 +00:00
|
|
|
%package -n python%{python3_pkgversion}-%{pkgname}-tests
|
2019-11-29 10:46:14 +00:00
|
|
|
Summary: %{summary}, testsuite
|
2011-07-31 13:47:31 +00:00
|
|
|
License: LGPLv3+
|
2015-09-01 16:19:32 +00:00
|
|
|
Requires: python%{python3_pkgversion}-zmq = %{version}-%{release}
|
2020-04-04 00:17:18 +00:00
|
|
|
%{?python_provide:%python_provide python%{python3_pkgversion}-%{pkgname}-tests}
|
|
|
|
%{?python_provide:%python_provide python%{python3_pkgversion}-%{srcname}-tests}
|
|
|
|
Provides: python%{python3_pkgversion}-%{srcname}-tests = %{version}-%{release}
|
|
|
|
|
|
|
|
%description -n python%{python3_pkgversion}-%{pkgname}-tests %{common_description}
|
2011-07-31 13:47:31 +00:00
|
|
|
|
|
|
|
This package contains the testsuite for the python bindings.
|
|
|
|
|
2010-08-16 11:10:46 +00:00
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n %{srcname}-%{version}
|
2012-08-03 22:08:54 +00:00
|
|
|
|
2014-08-27 21:19:09 +00:00
|
|
|
# remove bundled libraries
|
|
|
|
rm -rf bundled
|
|
|
|
|
2012-08-03 22:08:54 +00:00
|
|
|
# forcibly regenerate the Cython-generated .c files:
|
2019-05-14 18:10:49 +00:00
|
|
|
find zmq -name "*.c" -delete
|
|
|
|
%{__python3} setup.py cython
|
2012-08-03 22:08:54 +00:00
|
|
|
|
2010-08-16 11:10:46 +00:00
|
|
|
# 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
|
|
|
|
|
|
|
|
# remove excecutable bits
|
|
|
|
chmod -x examples/pubsub/topics_pub.py
|
|
|
|
chmod -x examples/pubsub/topics_sub.py
|
|
|
|
|
2010-09-23 12:08:23 +00:00
|
|
|
# delete hidden files
|
2011-01-18 22:11:13 +00:00
|
|
|
#find examples -name '.*' | xargs rm -v
|
|
|
|
|
2010-09-23 12:08:23 +00:00
|
|
|
|
2010-08-16 11:10:46 +00:00
|
|
|
%build
|
2015-10-14 09:18:31 +00:00
|
|
|
%py3_build
|
2010-08-16 11:10:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
%install
|
2014-08-27 21:19:09 +00:00
|
|
|
%global RPATH /zmq/{backend/cython,devices}
|
2015-10-14 09:18:31 +00:00
|
|
|
%py3_install
|
2018-05-12 10:48:28 +00:00
|
|
|
pathfix.py -pn -i %{__python3} %{buildroot}%{python3_sitearch}
|
|
|
|
|
2010-08-16 11:10:46 +00:00
|
|
|
|
|
|
|
%check
|
2011-03-23 18:10:28 +00:00
|
|
|
%if 0%{?run_tests}
|
2016-07-12 17:28:13 +00:00
|
|
|
# Make sure we import from the install directory
|
2016-11-13 10:10:20 +00:00
|
|
|
#rm zmq/__*.py
|
2016-07-12 17:28:13 +00:00
|
|
|
PYTHONPATH=%{buildroot}%{python3_sitearch} \
|
|
|
|
%{__python3} setup.py test
|
2010-08-16 11:10:46 +00:00
|
|
|
%endif
|
|
|
|
|
|
|
|
|
2020-04-04 00:17:18 +00:00
|
|
|
%files -n python%{python3_pkgversion}-%{pkgname}
|
2016-07-12 17:28:13 +00:00
|
|
|
%license COPYING.*
|
|
|
|
%doc README.md
|
2010-08-16 11:10:46 +00:00
|
|
|
# examples/
|
2020-04-04 00:17:18 +00:00
|
|
|
%{python3_sitearch}/%{eggname}-%{version}-py%{python3_version}.egg-info
|
|
|
|
%{python3_sitearch}/%{libname}
|
|
|
|
%exclude %{python3_sitearch}/%{libname}/tests
|
2011-07-31 13:47:31 +00:00
|
|
|
|
2020-04-04 00:17:18 +00:00
|
|
|
%files -n python%{python3_pkgversion}-%{pkgname}-tests
|
|
|
|
%{python3_sitearch}/%{libname}/tests
|
2010-08-16 11:10:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
2021-07-23 10:25:33 +00:00
|
|
|
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 22.0.3-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
2021-06-03 15:20:03 +00:00
|
|
|
* Thu Jun 03 2021 Python Maint <python-maint@redhat.com> - 22.0.3-2
|
|
|
|
- Rebuilt for Python 3.10
|
|
|
|
|
2021-02-13 01:03:51 +00:00
|
|
|
* Fri Feb 12 2021 Kevin Fenzi <kevin@scrye.com> - 22.0.3-1
|
|
|
|
- Update to 22.0.3. Fixes rhbz#1928104
|
|
|
|
|
2021-02-03 16:50:12 +00:00
|
|
|
* Wed Feb 03 2021 Kevin Fenzi <kevin@scrye.com> - 22.0.2-1
|
|
|
|
- Update to 22.0.2. Fixes rhbz#1922110
|
|
|
|
|
2021-01-29 01:12:55 +00:00
|
|
|
* Thu Jan 28 2021 Kevin Fenzi <kevin@scrye.com> - 21.0.2-1
|
|
|
|
- Update to 21.0.2. Fixes rhbz#1920351
|
|
|
|
|
2021-01-27 14:21:59 +00:00
|
|
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 21.0.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
2021-01-16 20:15:38 +00:00
|
|
|
* Sat Jan 16 2021 Kevin Fenzi <kevin@scrye.com> - 21.0.0-1
|
|
|
|
- Update to 21.0.0. Fixes rhbz#1916136
|
|
|
|
|
2021-01-01 02:26:14 +00:00
|
|
|
* Thu Dec 31 2020 Kevin Fenzi <kevin@scrye.com> - 20.0.0-1
|
|
|
|
- Update to 20.0.0. Fixes rhbz#1832893
|
|
|
|
|
2020-11-24 10:19:22 +00:00
|
|
|
* Tue Nov 24 2020 Joel Capitao <jcapitao@redhat.com> - 19.0.2-1
|
|
|
|
- Update to 19.0.2
|
|
|
|
|
2020-07-29 04:48:22 +00:00
|
|
|
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 19.0.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
2020-05-23 15:28:15 +00:00
|
|
|
* Sat May 23 2020 Miro Hrončok <mhroncok@redhat.com> - 19.0.0-2
|
|
|
|
- Rebuilt for Python 3.9
|
|
|
|
|
2020-04-04 00:17:18 +00:00
|
|
|
* Fri Apr 03 2020 Carl George <carl@george.computer> - 19.0.0-1
|
|
|
|
- Latest upstream rhbz#1772343
|
|
|
|
|
2020-01-30 16:24:02 +00:00
|
|
|
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 18.1.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
2020-01-14 15:39:48 +00:00
|
|
|
* Tue Jan 14 2020 Jochen Breuer <jbreuer@suse.de> - 18.1.0-3
|
|
|
|
- Providing python-pyzmq, since some packages are still relying on that.
|
|
|
|
See: https://bugzilla.redhat.com/show_bug.cgi?id=1789889
|
|
|
|
|
2019-11-29 10:46:14 +00:00
|
|
|
* Fri Nov 29 2019 Miro Hrončok <mhroncok@redhat.com> - 18.1.0-2
|
|
|
|
- Subpackages python2-zmq, python2-zmq-test have been removed
|
|
|
|
See https://fedoraproject.org/wiki/Changes/RetirePython2
|
|
|
|
|
2019-10-06 19:24:25 +00:00
|
|
|
* Sun Oct 06 2019 Kevin Fenzi <kevin@scrye.com> - 18.1.0-1
|
|
|
|
- Update to 18.1.0. Fixes bug #1742606
|
|
|
|
|
2019-10-03 12:36:54 +00:00
|
|
|
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 18.0.2-4
|
|
|
|
- Rebuilt for Python 3.8.0rc1 (#1748018)
|
|
|
|
|
2019-08-16 21:06:04 +00:00
|
|
|
* Fri Aug 16 2019 Miro Hrončok <mhroncok@redhat.com> - 18.0.2-3
|
|
|
|
- Rebuilt for Python 3.8
|
|
|
|
|
2019-07-26 17:16:44 +00:00
|
|
|
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 18.0.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-06-30 00:28:22 +00:00
|
|
|
* Sun Jun 30 2019 Kevin Fenzi <kevin@scrye.com> - 18.0.2-1
|
|
|
|
- Update to 18.0.2. Fixes bug #1724706
|
|
|
|
|
2019-04-29 21:29:12 +00:00
|
|
|
* Mon Apr 29 2019 Kevin Fenzi <kevin@scrye.com> - 18.0.1-1
|
|
|
|
- Update to 18.0.1. Fixes bug #1601128
|
|
|
|
|
2019-02-02 10:13:11 +00:00
|
|
|
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 17.0.0-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2018-07-14 02:45:46 +00:00
|
|
|
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 17.0.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-06-17 16:38:00 +00:00
|
|
|
* Sun Jun 17 2018 Miro Hrončok <mhroncok@redhat.com> - 17.0.0-2
|
|
|
|
- Rebuilt for Python 3.7
|
|
|
|
|
2018-05-12 10:48:28 +00:00
|
|
|
* Sat May 12 2018 Miro Hrončok <mhroncok@redhat.com> - 17.0.0-1
|
|
|
|
- Update to 17.0.0 (#1538381)
|
|
|
|
- Fix shebangs
|
|
|
|
|
2018-02-09 11:51:03 +00:00
|
|
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 16.0.2-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2018-01-31 21:28:42 +00:00
|
|
|
* Wed Jan 31 2018 Iryna Shcherbina <ishcherb@redhat.com> - 16.0.2-6
|
|
|
|
- Update Python 2 dependency declarations to new packaging standards
|
|
|
|
(See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
|
|
|
|
|
2017-08-03 07:03:56 +00:00
|
|
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 16.0.2-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
2017-07-27 12:22:48 +00:00
|
|
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 16.0.2-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-02-11 11:00:59 +00:00
|
|
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 16.0.2-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2016-12-19 17:20:38 +00:00
|
|
|
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 16.0.2-2
|
|
|
|
- Rebuild for Python 3.6
|
|
|
|
|
2016-11-23 20:21:19 +00:00
|
|
|
* Wed Nov 23 2016 Kevin Fenzi <kevin@scrye.com> - 16.0.2-1
|
|
|
|
- Update to 16.0.2. Fixes bug #1397615
|
|
|
|
|
2016-11-13 10:10:20 +00:00
|
|
|
* Sun Nov 13 2016 Thomas Spura <tomspur@fedoraproject.org> - 16.0.1-1
|
|
|
|
- update to 16.0.1
|
|
|
|
- build twice (for installing and testing in-place)
|
|
|
|
|
2016-07-19 12:14:07 +00:00
|
|
|
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 15.3.0-2
|
|
|
|
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
|
|
|
|
2016-07-12 17:28:13 +00:00
|
|
|
* Tue Jul 12 2016 Orion Poplawski <orion@cora.nwra.com> - 15.3.0-1
|
|
|
|
- Update to 15.3.0
|
|
|
|
|
2016-07-12 17:40:21 +00:00
|
|
|
* Tue Jul 12 2016 Orion Poplawski <orion@cora.nwra.com> - 14.7.0-7
|
|
|
|
- Use modern provides filtering
|
|
|
|
|
2016-02-04 21:28:08 +00:00
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 14.7.0-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2015-11-16 11:51:44 +00:00
|
|
|
* 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
|
|
|
|
|
2015-11-10 17:55:13 +00:00
|
|
|
* 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
|
|
|
|
|
2015-10-16 07:39:09 +00:00
|
|
|
* Fri Oct 16 2015 Thomas Spura <tomspur@fedoraproject.org> - 14.7.0-3
|
|
|
|
- rebuilt to pick up new obsoletes/provides
|
|
|
|
|
2015-10-14 09:04:47 +00:00
|
|
|
* Wed Oct 14 2015 Thomas Spura <tomspur@fedoraproject.org> - 14.7.0-2
|
2015-10-14 09:18:31 +00:00
|
|
|
- Use python_provide and py_build macros
|
|
|
|
- Cleanup spec
|
2015-10-14 09:04:47 +00:00
|
|
|
|
2015-09-01 16:19:32 +00:00
|
|
|
* Mon Jun 29 2015 Ralph Bean <rbean@redhat.com> - 14.7.0-2
|
|
|
|
- Support python34 on EPEL7.
|
|
|
|
|
2015-06-23 12:00:30 +00:00
|
|
|
* Tue Jun 23 2015 Thomas Spura <tomspur@fedoraproject.org> - 14.7.0-1
|
|
|
|
- update to 14.7.0
|
2015-06-23 14:37:20 +00:00
|
|
|
- temporarily disable python3 testsuite as it hangs on koji
|
2015-06-23 12:00:30 +00:00
|
|
|
|
2015-06-18 21:26:24 +00:00
|
|
|
* 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
|
|
|
|
|
2014-11-17 09:03:11 +00:00
|
|
|
* Mon Nov 17 2014 Thomas Spura <tomspur@fedoraproject.org> - 14.4.1-1
|
|
|
|
- update to 14.4.1
|
|
|
|
- build against zeromq-4
|
|
|
|
|
2014-08-27 21:19:09 +00:00
|
|
|
* Wed Aug 27 2014 Thomas Spura <tomspur@fedoraproject.org> - 14.3.1-1
|
|
|
|
- update to 14.3.1
|
|
|
|
|
2014-08-17 22:02:58 +00:00
|
|
|
* 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
|
|
|
|
|
2014-06-08 00:30:08 +00:00
|
|
|
* 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
|
|
|
|
|
2014-05-16 06:35:50 +00:00
|
|
|
* Wed May 14 2014 Bohuslav Kabrda <bkabrda@redhat.com> - 13.0.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4
|
|
|
|
|
2013-08-05 09:39:18 +00:00
|
|
|
* Mon Aug 5 2013 Thomas Spura <tomspur@fedoraproject.org> - 13.0.2-1
|
|
|
|
- update to new version (fixes FTBFS)
|
|
|
|
|
2013-08-04 10:59:53 +00:00
|
|
|
* 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
|
|
|
|
|
2013-03-20 11:12:44 +00:00
|
|
|
* Wed Mar 20 2013 Thomas Spura <tomspur@fedoraproject.org> - 13.0.0-1
|
|
|
|
- update to 13.0.0
|
|
|
|
- add BSD to license list
|
|
|
|
|
2013-02-14 20:54:40 +00:00
|
|
|
* 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
|
|
|
|
|
2012-10-15 08:17:24 +00:00
|
|
|
* Mon Oct 15 2012 Thomas Spura <tomspur@fedoraproject.org> - 2.2.0.1-1
|
2012-10-15 08:15:33 +00:00
|
|
|
- update to 2.2.0.1
|
|
|
|
- move to BR zeromq3
|
2012-10-15 08:30:48 +00:00
|
|
|
- not all *.c files may be deleted, when receneration of .c files by Cython
|
|
|
|
- remove bundled folder explicitely
|
2012-10-15 08:15:33 +00:00
|
|
|
|
2012-08-05 01:13:21 +00:00
|
|
|
* Sat Aug 04 2012 David Malcolm <dmalcolm@redhat.com> - 2.2.0-5
|
|
|
|
- rebuild for https://fedoraproject.org/wiki/Features/Python_3.3
|
|
|
|
|
2012-08-03 22:08:54 +00:00
|
|
|
* 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)
|
|
|
|
|
2012-08-03 21:32:03 +00:00
|
|
|
* Fri Aug 3 2012 David Malcolm <dmalcolm@redhat.com> - 2.2.0-3
|
|
|
|
- remove rhel logic from with_python3 conditional
|
|
|
|
|
2012-07-21 11:22:15 +00:00
|
|
|
* 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
|
|
|
|
|
2012-04-26 11:23:08 +00:00
|
|
|
* Thu Apr 26 2012 Thomas Spura <tomspur@fedoraproject.org> - 2.2.0-1
|
|
|
|
- update to 2.2.0
|
|
|
|
|
2012-03-07 21:58:48 +00:00
|
|
|
* Wed Mar 7 2012 Thomas Spura <tomspur@fedoraproject.org> - 2.1.11-1
|
|
|
|
- update to new version
|
|
|
|
|
2012-01-14 02:20:25 +00:00
|
|
|
* 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
|
|
|
|
|
2011-12-14 09:48:45 +00:00
|
|
|
* Wed Dec 14 2011 Thomas Spura <tomspur@fedoraproject.org> - 2.1.9-3
|
|
|
|
- tests package requires main package
|
|
|
|
- filter python3 libs
|
|
|
|
|
2011-12-08 20:12:24 +00:00
|
|
|
* Thu Dec 8 2011 Thomas Spura <tomspur@fedoraproject.org> - 2.1.9-2
|
|
|
|
- use proper buildroot macro
|
2011-12-08 20:42:43 +00:00
|
|
|
- don't include tests twice
|
2011-12-08 20:12:24 +00:00
|
|
|
|
2011-09-21 09:40:16 +00:00
|
|
|
* Wed Sep 21 2011 Thomas Spura <tomspur@fedoraproject.org> - 2.1.9-1
|
|
|
|
- update to new version
|
|
|
|
- run testsuite on python3
|
|
|
|
|
2011-07-31 13:47:31 +00:00
|
|
|
* 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
|
|
|
|
|
2011-04-06 09:12:49 +00:00
|
|
|
* Wed Apr 6 2011 Thomas Spura <tomspur@fedoraproject.org> - 2.1.4-1
|
|
|
|
- update to new version (#690199)
|
|
|
|
|
2011-03-23 18:10:28 +00:00
|
|
|
* Wed Mar 23 2011 Thomas Spura <tomspur@fedoraproject.org> - 2.1.1-1
|
|
|
|
- update to new version (#682201)
|
|
|
|
|
2011-02-09 07:30:08 +00:00
|
|
|
* 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
|
|
|
|
|
2011-01-30 20:51:21 +00:00
|
|
|
* 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
|
|
|
|
|
2011-01-18 22:11:13 +00:00
|
|
|
* Thu Jan 13 2011 Thomas Spura <tomspur@fedoraproject.org> - 2.0.10-1
|
|
|
|
- update to new version
|
|
|
|
- remove patch (is upstream)
|
|
|
|
- run tests differently
|
|
|
|
|
2010-12-30 01:00:56 +00:00
|
|
|
* Wed Dec 29 2010 David Malcolm <dmalcolm@redhat.com> - 2.0.8-2
|
|
|
|
- rebuild for newer python3
|
|
|
|
|
2010-09-23 12:08:23 +00:00
|
|
|
* Thu Sep 23 2010 Thomas Spura <tomspur@fedoraproject.org> - 2.0.8-1
|
|
|
|
- update to new version to be comply with zeromp
|
|
|
|
|
2010-08-22 12:02:34 +00:00
|
|
|
* 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
|
|
|
|
|
2010-08-16 11:10:46 +00:00
|
|
|
* 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)
|