From e28d9410658d9572b053cedf2da8a69927f4547e Mon Sep 17 00:00:00 2001 From: Robin Lee Date: Tue, 31 Aug 2010 09:07:00 +0800 Subject: [PATCH 01/32] Initial import --- .gitignore | 1 + python-zope-exceptions.spec | 53 +++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 55 insertions(+) create mode 100644 python-zope-exceptions.spec diff --git a/.gitignore b/.gitignore index e69de29..b178cea 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/zope.exceptions-3.6.1.zip diff --git a/python-zope-exceptions.spec b/python-zope-exceptions.spec new file mode 100644 index 0000000..b28e8d1 --- /dev/null +++ b/python-zope-exceptions.spec @@ -0,0 +1,53 @@ +%global modname zope.exceptions + +Summary: Zope Exceptions +Name: python-zope-exceptions +Version: 3.6.1 +Release: 3%{?dist} +Source0: http://pypi.python.org/packages/source/z/%{modname}/%{modname}-%{version}.zip +License: ZPLv2.1 +Group: Development/Libraries +BuildArch: noarch +URL: http://cheeseshop.python.org/pypi/zope.exceptions + +BuildRequires: python2-devel +BuildRequires: python-setuptools +Requires: python-zope-interface + +%description +This package contains exception interfaces and implementations which are so +general purpose that they don't belong in Zope application-specific packages. + +%prep +%setup -q -n %{modname}-%{version} + +%build +python setup.py build + +%install +python setup.py install --root=$RPM_BUILD_ROOT + +%files +%defattr(-,root,root,-) +%doc LICENSE.txt CHANGES.txt README.txt COPYRIGHT.txt +%{python_sitelib}/zope/exceptions/ +%{python_sitelib}/%{modname}-*.egg-info +%{python_sitelib}/%{modname}-*-nspkg.pth + + +%changelog +* Mon Aug 30 2010 Robin Lee - 3.6.1-3 +- Remove python-zope-filesystem from requirements +- Import to Fedora repositories + +* Mon Aug 30 2010 Robin Lee - 3.6.1-2 +- Remove %%clean section +- Remove python-setuptools from requirements +- Remove definitions of Python-related macros + +* Mon Aug 30 2010 Robin Lee - 3.6.1-1 +- Update to 3.6.1 +- Summit review request + +* Wed Jun 16 2010 Robin Lee - 3.6.0-1 +- Initial packaging diff --git a/sources b/sources index e69de29..7be2eaf 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +b735a62e1ef16e746764b4938a4d7926 zope.exceptions-3.6.1.zip From dc4b4432c5132758ee177d7d27a39f2be8be19e6 Mon Sep 17 00:00:00 2001 From: Robin Lee Date: Tue, 31 Aug 2010 09:42:19 +0800 Subject: [PATCH 02/32] - Own %%{python_sitelib}/zope/ --- python-zope-exceptions.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/python-zope-exceptions.spec b/python-zope-exceptions.spec index b28e8d1..9bee5ae 100644 --- a/python-zope-exceptions.spec +++ b/python-zope-exceptions.spec @@ -3,7 +3,7 @@ Summary: Zope Exceptions Name: python-zope-exceptions Version: 3.6.1 -Release: 3%{?dist} +Release: 4%{?dist} Source0: http://pypi.python.org/packages/source/z/%{modname}/%{modname}-%{version}.zip License: ZPLv2.1 Group: Development/Libraries @@ -31,11 +31,15 @@ python setup.py install --root=$RPM_BUILD_ROOT %defattr(-,root,root,-) %doc LICENSE.txt CHANGES.txt README.txt COPYRIGHT.txt %{python_sitelib}/zope/exceptions/ +%dir %{python_sitelib}/zope/ %{python_sitelib}/%{modname}-*.egg-info %{python_sitelib}/%{modname}-*-nspkg.pth %changelog +* Tue Aug 31 2010 Robin Lee - 3.6.1-4 +- Own %%{python_sitelib}/zope/ + * Mon Aug 30 2010 Robin Lee - 3.6.1-3 - Remove python-zope-filesystem from requirements - Import to Fedora repositories From 11ccda634c58da7428dc2d08e97f191921609a7f Mon Sep 17 00:00:00 2001 From: Robin Lee Date: Wed, 15 Sep 2010 15:47:13 +0800 Subject: [PATCH 03/32] - BR: python-zope-interface added - Add %%check section and run the tests --- python-zope-exceptions.spec | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/python-zope-exceptions.spec b/python-zope-exceptions.spec index 9bee5ae..6c2d825 100644 --- a/python-zope-exceptions.spec +++ b/python-zope-exceptions.spec @@ -3,7 +3,7 @@ Summary: Zope Exceptions Name: python-zope-exceptions Version: 3.6.1 -Release: 4%{?dist} +Release: 5%{?dist} Source0: http://pypi.python.org/packages/source/z/%{modname}/%{modname}-%{version}.zip License: ZPLv2.1 Group: Development/Libraries @@ -12,6 +12,8 @@ URL: http://cheeseshop.python.org/pypi/zope.exceptions BuildRequires: python2-devel BuildRequires: python-setuptools +# for the tests +BuildRequires: python-zope-interface Requires: python-zope-interface %description @@ -22,21 +24,29 @@ general purpose that they don't belong in Zope application-specific packages. %setup -q -n %{modname}-%{version} %build -python setup.py build +%{__python} setup.py build %install -python setup.py install --root=$RPM_BUILD_ROOT +%{__python} setup.py install --root=$RPM_BUILD_ROOT + +%check +%{__python} setup.py test %files %defattr(-,root,root,-) %doc LICENSE.txt CHANGES.txt README.txt COPYRIGHT.txt %{python_sitelib}/zope/exceptions/ +# Co-own %%{python_sitelib}/zope/ %dir %{python_sitelib}/zope/ %{python_sitelib}/%{modname}-*.egg-info %{python_sitelib}/%{modname}-*-nspkg.pth %changelog +* Wed Sep 15 2010 Robin Lee - 3.6.1-5 +- BR: python-zope-interface added +- Add %%check section and run the tests + * Tue Aug 31 2010 Robin Lee - 3.6.1-4 - Own %%{python_sitelib}/zope/ From 8e92eeb9883979d38678ab9dc85d77b82cab3471 Mon Sep 17 00:00:00 2001 From: Robin Lee Date: Sun, 19 Sep 2010 11:04:10 +0800 Subject: [PATCH 04/32] - Exclude the tests from installation --- python-zope-exceptions.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/python-zope-exceptions.spec b/python-zope-exceptions.spec index 6c2d825..eebb29c 100644 --- a/python-zope-exceptions.spec +++ b/python-zope-exceptions.spec @@ -3,7 +3,7 @@ Summary: Zope Exceptions Name: python-zope-exceptions Version: 3.6.1 -Release: 5%{?dist} +Release: 6%{?dist} Source0: http://pypi.python.org/packages/source/z/%{modname}/%{modname}-%{version}.zip License: ZPLv2.1 Group: Development/Libraries @@ -38,11 +38,15 @@ general purpose that they don't belong in Zope application-specific packages. %{python_sitelib}/zope/exceptions/ # Co-own %%{python_sitelib}/zope/ %dir %{python_sitelib}/zope/ +%exclude %{python_sitelib}/zope/exceptions/tests/ %{python_sitelib}/%{modname}-*.egg-info %{python_sitelib}/%{modname}-*-nspkg.pth %changelog +* Sun Sep 19 2010 Robin Lee - 3.6.1-6 +- Exclude the tests from installation + * Wed Sep 15 2010 Robin Lee - 3.6.1-5 - BR: python-zope-interface added - Add %%check section and run the tests From bd6336d6c9d48fa7120d63c8cd11a69be1ee43bf Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 9 Feb 2011 01:33:10 -0600 Subject: [PATCH 05/32] - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild --- python-zope-exceptions.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-zope-exceptions.spec b/python-zope-exceptions.spec index eebb29c..f484391 100644 --- a/python-zope-exceptions.spec +++ b/python-zope-exceptions.spec @@ -3,7 +3,7 @@ Summary: Zope Exceptions Name: python-zope-exceptions Version: 3.6.1 -Release: 6%{?dist} +Release: 7%{?dist} Source0: http://pypi.python.org/packages/source/z/%{modname}/%{modname}-%{version}.zip License: ZPLv2.1 Group: Development/Libraries @@ -44,6 +44,9 @@ general purpose that they don't belong in Zope application-specific packages. %changelog +* Wed Feb 09 2011 Fedora Release Engineering - 3.6.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + * Sun Sep 19 2010 Robin Lee - 3.6.1-6 - Exclude the tests from installation From 5c42a311941890d75545ae205b1e5feb3d24ba41 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 13 Jan 2012 20:20:55 -0600 Subject: [PATCH 06/32] - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild --- python-zope-exceptions.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-zope-exceptions.spec b/python-zope-exceptions.spec index f484391..3ed22e3 100644 --- a/python-zope-exceptions.spec +++ b/python-zope-exceptions.spec @@ -3,7 +3,7 @@ Summary: Zope Exceptions Name: python-zope-exceptions Version: 3.6.1 -Release: 7%{?dist} +Release: 8%{?dist} Source0: http://pypi.python.org/packages/source/z/%{modname}/%{modname}-%{version}.zip License: ZPLv2.1 Group: Development/Libraries @@ -44,6 +44,9 @@ general purpose that they don't belong in Zope application-specific packages. %changelog +* Sat Jan 14 2012 Fedora Release Engineering - 3.6.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + * Wed Feb 09 2011 Fedora Release Engineering - 3.6.1-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild From 30e0201d27ef02c724d235e3a3948e8d2cb2e872 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 21 Jul 2012 06:26:34 -0500 Subject: [PATCH 07/32] - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild --- python-zope-exceptions.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-zope-exceptions.spec b/python-zope-exceptions.spec index 3ed22e3..1998e0d 100644 --- a/python-zope-exceptions.spec +++ b/python-zope-exceptions.spec @@ -3,7 +3,7 @@ Summary: Zope Exceptions Name: python-zope-exceptions Version: 3.6.1 -Release: 8%{?dist} +Release: 9%{?dist} Source0: http://pypi.python.org/packages/source/z/%{modname}/%{modname}-%{version}.zip License: ZPLv2.1 Group: Development/Libraries @@ -44,6 +44,9 @@ general purpose that they don't belong in Zope application-specific packages. %changelog +* Sat Jul 21 2012 Fedora Release Engineering - 3.6.1-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + * Sat Jan 14 2012 Fedora Release Engineering - 3.6.1-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild From ef1c77281f17c583ed408332caef37537c6da5d2 Mon Sep 17 00:00:00 2001 From: Ralph Bean Date: Tue, 11 Dec 2012 10:19:05 -0500 Subject: [PATCH 08/32] Latest upstream and a python3 subpackage. --- .gitignore | 1 + python-zope-exceptions.spec | 94 ++++++++++++++++++++++++++++++------- sources | 2 +- 3 files changed, 80 insertions(+), 17 deletions(-) diff --git a/.gitignore b/.gitignore index b178cea..dc8c693 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /zope.exceptions-3.6.1.zip +/zope.exceptions-4.0.3.zip diff --git a/python-zope-exceptions.spec b/python-zope-exceptions.spec index 1998e0d..110549a 100644 --- a/python-zope-exceptions.spec +++ b/python-zope-exceptions.spec @@ -1,37 +1,83 @@ %global modname zope.exceptions -Summary: Zope Exceptions -Name: python-zope-exceptions -Version: 3.6.1 -Release: 9%{?dist} -Source0: http://pypi.python.org/packages/source/z/%{modname}/%{modname}-%{version}.zip -License: ZPLv2.1 -Group: Development/Libraries -BuildArch: noarch -URL: http://cheeseshop.python.org/pypi/zope.exceptions - -BuildRequires: python2-devel -BuildRequires: python-setuptools -# for the tests -BuildRequires: python-zope-interface -Requires: python-zope-interface +%if 0%{?fedora} > 12 || 0%{?rhel} > 6 +%global with_python3 1 +%endif + +Summary: Zope Exceptions +Name: python-zope-exceptions +Version: 4.0.3 +Release: 1%{?dist} +Source0: http://pypi.python.org/packages/source/z/%{modname}/%{modname}-%{version}.zip +License: ZPLv2.1 +Group: Development/Libraries +BuildArch: noarch +URL: http://pypi.python.org/pypi/zope.exceptions + +BuildRequires: python2-devel +BuildRequires: python-setuptools +BuildRequires: python-zope-interface + +%if 0%{?with_python3} +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-zope-interface +%endif + +Requires: python-zope-interface %description This package contains exception interfaces and implementations which are so general purpose that they don't belong in Zope application-specific packages. +%if 0%{?with_python3} +%package -n python3-zope-exceptions +Summary: Zope Exceptions +Group: Development/Libraries + +Requires: python3-zope-interface + +%description -n python3-zope-exceptions +This package contains exception interfaces and implementations which are so +general purpose that they don't belong in Zope application-specific packages. +%endif + %prep %setup -q -n %{modname}-%{version} +rm -rf %{modname}.egg-info + +%if 0%{?with_python3} +rm -rf %{py3dir} +cp -a . %{py3dir} +%endif + %build %{__python} setup.py build +%if 0%{?with_python3} +pushd %{py3dir} +%{__python3} setup.py build +popd +%endif %install -%{__python} setup.py install --root=$RPM_BUILD_ROOT +%if 0%{?with_python3} +pushd %{py3dir} +%{__python3} setup.py install -O1 --skip-build --root %{buildroot} +popd +%endif + +%{__python} setup.py install -O1 --skip-build --root %{buildroot} %check %{__python} setup.py test +%if 0%{?with_python3} +pushd %{py3dir} +%{__python3} setup.py test +popd +%endif + %files %defattr(-,root,root,-) %doc LICENSE.txt CHANGES.txt README.txt COPYRIGHT.txt @@ -42,8 +88,24 @@ general purpose that they don't belong in Zope application-specific packages. %{python_sitelib}/%{modname}-*.egg-info %{python_sitelib}/%{modname}-*-nspkg.pth +%if 0%{?with_python3} +%files -n python3-zope-exceptions +%doc LICENSE.txt CHANGES.txt README.txt COPYRIGHT.txt +%{python3_sitelib}/zope/exceptions/ +# Co-own %%{python3_sitelib}/zope/ +%dir %{python3_sitelib}/zope/ +%exclude %{python3_sitelib}/zope/exceptions/tests/ +%{python3_sitelib}/%{modname}-*.egg-info +%{python3_sitelib}/%{modname}-*-nspkg.pth +%endif + %changelog +* Tue Dec 11 2012 Ralph Bean - 4.0.3-1 +- Latest upstream. +- Packaged a python3 subpackage. +- Made indentation consistent. + * Sat Jul 21 2012 Fedora Release Engineering - 3.6.1-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild diff --git a/sources b/sources index 7be2eaf..f7e124d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -b735a62e1ef16e746764b4938a4d7926 zope.exceptions-3.6.1.zip +893532486e1648d43798fc5ebd5ce5a1 zope.exceptions-4.0.3.zip From 96f8379e7211b19529360d6269c3cfd8d818b1d4 Mon Sep 17 00:00:00 2001 From: Ralph Bean Date: Tue, 1 Jan 2013 09:27:46 -0500 Subject: [PATCH 09/32] Require python-zope-interface4 forward-compat package on el6. --- python-zope-exceptions.spec | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/python-zope-exceptions.spec b/python-zope-exceptions.spec index 110549a..50323e1 100644 --- a/python-zope-exceptions.spec +++ b/python-zope-exceptions.spec @@ -7,7 +7,7 @@ Summary: Zope Exceptions Name: python-zope-exceptions Version: 4.0.3 -Release: 1%{?dist} +Release: 2%{?dist} Source0: http://pypi.python.org/packages/source/z/%{modname}/%{modname}-%{version}.zip License: ZPLv2.1 Group: Development/Libraries @@ -16,7 +16,14 @@ URL: http://pypi.python.org/pypi/zope.exceptions BuildRequires: python2-devel BuildRequires: python-setuptools + +%if 0%{?rhel} && 0%{?rhel} <= 6 +BuildRequires: python-zope-interface4 +Requires: python-zope-interface4 +%else BuildRequires: python-zope-interface +Requires: python-zope-interface +%endif %if 0%{?with_python3} BuildRequires: python3-devel @@ -24,8 +31,6 @@ BuildRequires: python3-setuptools BuildRequires: python3-zope-interface %endif -Requires: python-zope-interface - %description This package contains exception interfaces and implementations which are so general purpose that they don't belong in Zope application-specific packages. @@ -101,6 +106,9 @@ popd %changelog +* Tue Jan 01 2013 Ralph Bean - 4.0.3-2 +- Require python-zope-interface4 compat package on el6. + * Tue Dec 11 2012 Ralph Bean - 4.0.3-1 - Latest upstream. - Packaged a python3 subpackage. From a350c243970fbf2ace6f12da1438b2604fb8861b Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 14 Feb 2013 14:55:47 -0600 Subject: [PATCH 10/32] - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild --- python-zope-exceptions.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-zope-exceptions.spec b/python-zope-exceptions.spec index 50323e1..ac3eb84 100644 --- a/python-zope-exceptions.spec +++ b/python-zope-exceptions.spec @@ -7,7 +7,7 @@ Summary: Zope Exceptions Name: python-zope-exceptions Version: 4.0.3 -Release: 2%{?dist} +Release: 3%{?dist} Source0: http://pypi.python.org/packages/source/z/%{modname}/%{modname}-%{version}.zip License: ZPLv2.1 Group: Development/Libraries @@ -106,6 +106,9 @@ popd %changelog +* Thu Feb 14 2013 Fedora Release Engineering - 4.0.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + * Tue Jan 01 2013 Ralph Bean - 4.0.3-2 - Require python-zope-interface4 compat package on el6. From 85dfd85b70b03c4ef230d325564b8335267cd7df Mon Sep 17 00:00:00 2001 From: Ralph Bean Date: Mon, 25 Feb 2013 14:17:43 -0500 Subject: [PATCH 11/32] Latest upstream. --- .gitignore | 1 + python-zope-exceptions.spec | 9 ++++++--- sources | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index dc8c693..3df22cd 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /zope.exceptions-3.6.1.zip /zope.exceptions-4.0.3.zip +/zope.exceptions-4.0.5.tar.gz diff --git a/python-zope-exceptions.spec b/python-zope-exceptions.spec index ac3eb84..6dad13f 100644 --- a/python-zope-exceptions.spec +++ b/python-zope-exceptions.spec @@ -6,9 +6,9 @@ Summary: Zope Exceptions Name: python-zope-exceptions -Version: 4.0.3 -Release: 3%{?dist} -Source0: http://pypi.python.org/packages/source/z/%{modname}/%{modname}-%{version}.zip +Version: 4.0.5 +Release: 1%{?dist} +Source0: http://pypi.python.org/packages/source/z/%{modname}/%{modname}-%{version}.tar.gz License: ZPLv2.1 Group: Development/Libraries BuildArch: noarch @@ -106,6 +106,9 @@ popd %changelog +* Mon Feb 25 2013 Ralph Bean - 4.0.5-1 +- Latest upstream. + * Thu Feb 14 2013 Fedora Release Engineering - 4.0.3-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild diff --git a/sources b/sources index f7e124d..8e31ab8 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -893532486e1648d43798fc5ebd5ce5a1 zope.exceptions-4.0.3.zip +c95569fcb444ae541777de7ae5297492 zope.exceptions-4.0.5.tar.gz From 34d0bd0832614c672a4533407680f1dd6374f4b4 Mon Sep 17 00:00:00 2001 From: Ralph Bean Date: Wed, 10 Apr 2013 17:36:41 -0400 Subject: [PATCH 12/32] Update to the latest upstream: 4.0.6. --- .gitignore | 1 + python-zope-exceptions.spec | 34 +++++++++++++++++++++------------- sources | 2 +- 3 files changed, 23 insertions(+), 14 deletions(-) diff --git a/.gitignore b/.gitignore index 3df22cd..ddfedf6 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /zope.exceptions-3.6.1.zip /zope.exceptions-4.0.3.zip /zope.exceptions-4.0.5.tar.gz +/zope.exceptions-4.0.6.zip diff --git a/python-zope-exceptions.spec b/python-zope-exceptions.spec index 6dad13f..f1d0964 100644 --- a/python-zope-exceptions.spec +++ b/python-zope-exceptions.spec @@ -1,14 +1,14 @@ %global modname zope.exceptions -%if 0%{?fedora} > 12 || 0%{?rhel} > 6 +%if 0%{?fedora} %global with_python3 1 %endif Summary: Zope Exceptions Name: python-zope-exceptions -Version: 4.0.5 +Version: 4.0.6 Release: 1%{?dist} -Source0: http://pypi.python.org/packages/source/z/%{modname}/%{modname}-%{version}.tar.gz +Source0: http://pypi.python.org/packages/source/z/%{modname}/%{modname}-%{version}.zip License: ZPLv2.1 Group: Development/Libraries BuildArch: noarch @@ -74,18 +74,20 @@ popd %{__python} setup.py install -O1 --skip-build --root %{buildroot} -%check -%{__python} setup.py test - -%if 0%{?with_python3} -pushd %{py3dir} -%{__python3} setup.py test -popd -%endif +# As of python-zope-exceptions-4.0.6, the tests require +# python-zope-testrunner which has not yet been packaged. +#%%check +#%%{__python} setup.py test +# +#%%if 0%%{?with_python3} +#pushd %%{py3dir} +#%%{__python3} setup.py test +#popd +#%%endif %files %defattr(-,root,root,-) -%doc LICENSE.txt CHANGES.txt README.txt COPYRIGHT.txt +%doc LICENSE.txt CHANGES.rst README.rst COPYRIGHT.txt %{python_sitelib}/zope/exceptions/ # Co-own %%{python_sitelib}/zope/ %dir %{python_sitelib}/zope/ @@ -95,7 +97,7 @@ popd %if 0%{?with_python3} %files -n python3-zope-exceptions -%doc LICENSE.txt CHANGES.txt README.txt COPYRIGHT.txt +%doc LICENSE.txt CHANGES.rst README.rst COPYRIGHT.txt %{python3_sitelib}/zope/exceptions/ # Co-own %%{python3_sitelib}/zope/ %dir %{python3_sitelib}/zope/ @@ -106,6 +108,12 @@ popd %changelog +* Wed Apr 10 2013 Ralph Bean - 4.0.6-1 +- Update to the latest upstream. +- Modernized python3 conditional. +- Renamed CHANGES and README from .txt to .rst. +- Disabled tests which now require python-zope-testrunner. + * Mon Feb 25 2013 Ralph Bean - 4.0.5-1 - Latest upstream. diff --git a/sources b/sources index 8e31ab8..3c9ca26 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -c95569fcb444ae541777de7ae5297492 zope.exceptions-4.0.5.tar.gz +63cf38f8081e9e3b73eaf8725ba8dda6 zope.exceptions-4.0.6.zip From 13e4e3a870cd3539cf6450f688b4631c71818275 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sun, 4 Aug 2013 06:02:48 -0500 Subject: [PATCH 13/32] - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild --- python-zope-exceptions.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-zope-exceptions.spec b/python-zope-exceptions.spec index f1d0964..ceee329 100644 --- a/python-zope-exceptions.spec +++ b/python-zope-exceptions.spec @@ -7,7 +7,7 @@ Summary: Zope Exceptions Name: python-zope-exceptions Version: 4.0.6 -Release: 1%{?dist} +Release: 2%{?dist} Source0: http://pypi.python.org/packages/source/z/%{modname}/%{modname}-%{version}.zip License: ZPLv2.1 Group: Development/Libraries @@ -108,6 +108,9 @@ popd %changelog +* Sun Aug 04 2013 Fedora Release Engineering - 4.0.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + * Wed Apr 10 2013 Ralph Bean - 4.0.6-1 - Update to the latest upstream. - Modernized python3 conditional. From 23708f468f636e18b322b17230688a4a23503530 Mon Sep 17 00:00:00 2001 From: Slavek Kabrda Date: Fri, 16 May 2014 11:17:29 +0200 Subject: [PATCH 14/32] Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4 --- python-zope-exceptions.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-zope-exceptions.spec b/python-zope-exceptions.spec index ceee329..dad9552 100644 --- a/python-zope-exceptions.spec +++ b/python-zope-exceptions.spec @@ -7,7 +7,7 @@ Summary: Zope Exceptions Name: python-zope-exceptions Version: 4.0.6 -Release: 2%{?dist} +Release: 3%{?dist} Source0: http://pypi.python.org/packages/source/z/%{modname}/%{modname}-%{version}.zip License: ZPLv2.1 Group: Development/Libraries @@ -108,6 +108,9 @@ popd %changelog +* Wed May 14 2014 Bohuslav Kabrda - 4.0.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4 + * Sun Aug 04 2013 Fedora Release Engineering - 4.0.6-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild From 006281d578c8c991007820b54f626978d52623c5 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 7 Jun 2014 19:32:44 -0500 Subject: [PATCH 15/32] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild --- python-zope-exceptions.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-zope-exceptions.spec b/python-zope-exceptions.spec index dad9552..235b8d5 100644 --- a/python-zope-exceptions.spec +++ b/python-zope-exceptions.spec @@ -7,7 +7,7 @@ Summary: Zope Exceptions Name: python-zope-exceptions Version: 4.0.6 -Release: 3%{?dist} +Release: 4%{?dist} Source0: http://pypi.python.org/packages/source/z/%{modname}/%{modname}-%{version}.zip License: ZPLv2.1 Group: Development/Libraries @@ -108,6 +108,9 @@ popd %changelog +* Sun Jun 08 2014 Fedora Release Engineering - 4.0.6-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + * Wed May 14 2014 Bohuslav Kabrda - 4.0.6-3 - Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4 From 82a8b383ae09ff204a33a02135446235d0dd412f Mon Sep 17 00:00:00 2001 From: Ralph Bean Date: Wed, 20 Aug 2014 11:05:12 -0400 Subject: [PATCH 16/32] 4.0.7-1 --- .gitignore | 1 + python-zope-exceptions.spec | 9 ++++++--- sources | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index ddfedf6..f9196cd 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ /zope.exceptions-4.0.3.zip /zope.exceptions-4.0.5.tar.gz /zope.exceptions-4.0.6.zip +/zope.exceptions-4.0.7.tar.gz diff --git a/python-zope-exceptions.spec b/python-zope-exceptions.spec index 235b8d5..157ba53 100644 --- a/python-zope-exceptions.spec +++ b/python-zope-exceptions.spec @@ -6,9 +6,9 @@ Summary: Zope Exceptions Name: python-zope-exceptions -Version: 4.0.6 -Release: 4%{?dist} -Source0: http://pypi.python.org/packages/source/z/%{modname}/%{modname}-%{version}.zip +Version: 4.0.7 +Release: 1%{?dist} +Source0: http://pypi.python.org/packages/source/z/%{modname}/%{modname}-%{version}.tar.gz License: ZPLv2.1 Group: Development/Libraries BuildArch: noarch @@ -108,6 +108,9 @@ popd %changelog +* Wed Aug 20 2014 Ralph Bean - 4.0.7-1 +- Latest uptream. + * Sun Jun 08 2014 Fedora Release Engineering - 4.0.6-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild diff --git a/sources b/sources index 3c9ca26..0602e72 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -63cf38f8081e9e3b73eaf8725ba8dda6 zope.exceptions-4.0.6.zip +93daa7463373d755441d2b034709acac zope.exceptions-4.0.7.tar.gz From 78d6766dee316a44f3c2b140aafb0fb2b6cfe69f Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 18 Jun 2015 21:27:46 +0000 Subject: [PATCH 17/32] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- python-zope-exceptions.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-zope-exceptions.spec b/python-zope-exceptions.spec index 157ba53..f0d679e 100644 --- a/python-zope-exceptions.spec +++ b/python-zope-exceptions.spec @@ -7,7 +7,7 @@ Summary: Zope Exceptions Name: python-zope-exceptions Version: 4.0.7 -Release: 1%{?dist} +Release: 2%{?dist} Source0: http://pypi.python.org/packages/source/z/%{modname}/%{modname}-%{version}.tar.gz License: ZPLv2.1 Group: Development/Libraries @@ -108,6 +108,9 @@ popd %changelog +* Thu Jun 18 2015 Fedora Release Engineering - 4.0.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Wed Aug 20 2014 Ralph Bean - 4.0.7-1 - Latest uptream. From 0666ebfa301047710c3e9476fa97056c2c96382d Mon Sep 17 00:00:00 2001 From: Ralph Bean Date: Fri, 18 Sep 2015 21:09:15 -0400 Subject: [PATCH 18/32] 4.0.8 --- .gitignore | 1 + python-zope-exceptions.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index f9196cd..4ebaaa7 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ /zope.exceptions-4.0.5.tar.gz /zope.exceptions-4.0.6.zip /zope.exceptions-4.0.7.tar.gz +/zope.exceptions-4.0.8.tar.gz diff --git a/python-zope-exceptions.spec b/python-zope-exceptions.spec index f0d679e..3499676 100644 --- a/python-zope-exceptions.spec +++ b/python-zope-exceptions.spec @@ -6,8 +6,8 @@ Summary: Zope Exceptions Name: python-zope-exceptions -Version: 4.0.7 -Release: 2%{?dist} +Version: 4.0.8 +Release: 1%{?dist} Source0: http://pypi.python.org/packages/source/z/%{modname}/%{modname}-%{version}.tar.gz License: ZPLv2.1 Group: Development/Libraries @@ -108,6 +108,9 @@ popd %changelog +* Sat Sep 19 2015 Ralph Bean - 4.0.8-1 +- new version + * Thu Jun 18 2015 Fedora Release Engineering - 4.0.7-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild diff --git a/sources b/sources index 0602e72..ddbb661 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -93daa7463373d755441d2b034709acac zope.exceptions-4.0.7.tar.gz +c6f9b3905a48ba0487f82d95fba71c0c zope.exceptions-4.0.8.tar.gz From 9d70abc1feae5dac3a92dab1c2f339ddffaf54f3 Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Tue, 10 Nov 2015 17:56:32 +0000 Subject: [PATCH 19/32] - Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5 --- python-zope-exceptions.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-zope-exceptions.spec b/python-zope-exceptions.spec index 3499676..1256609 100644 --- a/python-zope-exceptions.spec +++ b/python-zope-exceptions.spec @@ -7,7 +7,7 @@ Summary: Zope Exceptions Name: python-zope-exceptions Version: 4.0.8 -Release: 1%{?dist} +Release: 2%{?dist} Source0: http://pypi.python.org/packages/source/z/%{modname}/%{modname}-%{version}.tar.gz License: ZPLv2.1 Group: Development/Libraries @@ -108,6 +108,9 @@ popd %changelog +* Tue Nov 10 2015 Fedora Release Engineering - 4.0.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5 + * Sat Sep 19 2015 Ralph Bean - 4.0.8-1 - new version From 47dabd9f53bf97c36f5bb3035da3ea1a84927ab7 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 4 Feb 2016 21:29:06 +0000 Subject: [PATCH 20/32] - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- python-zope-exceptions.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-zope-exceptions.spec b/python-zope-exceptions.spec index 1256609..46d6e5c 100644 --- a/python-zope-exceptions.spec +++ b/python-zope-exceptions.spec @@ -7,7 +7,7 @@ Summary: Zope Exceptions Name: python-zope-exceptions Version: 4.0.8 -Release: 2%{?dist} +Release: 3%{?dist} Source0: http://pypi.python.org/packages/source/z/%{modname}/%{modname}-%{version}.tar.gz License: ZPLv2.1 Group: Development/Libraries @@ -108,6 +108,9 @@ popd %changelog +* Thu Feb 04 2016 Fedora Release Engineering - 4.0.8-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + * Tue Nov 10 2015 Fedora Release Engineering - 4.0.8-2 - Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5 From 1a38543a9bf35ba4feaa3d2f84742659742ae6ca Mon Sep 17 00:00:00 2001 From: Ralph Bean Date: Mon, 18 Jul 2016 19:47:40 -0400 Subject: [PATCH 21/32] Explicit python2 subpackage. --- python-zope-exceptions.spec | 72 ++++++++++++++++++------------------- 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/python-zope-exceptions.spec b/python-zope-exceptions.spec index 46d6e5c..b671a0e 100644 --- a/python-zope-exceptions.spec +++ b/python-zope-exceptions.spec @@ -7,31 +7,35 @@ Summary: Zope Exceptions Name: python-zope-exceptions Version: 4.0.8 -Release: 3%{?dist} +Release: 4%{?dist} Source0: http://pypi.python.org/packages/source/z/%{modname}/%{modname}-%{version}.tar.gz License: ZPLv2.1 Group: Development/Libraries BuildArch: noarch URL: http://pypi.python.org/pypi/zope.exceptions +%description +This package contains exception interfaces and implementations which are so +general purpose that they don't belong in Zope application-specific packages. + +%package -n python2-zope-exceptions +Summary: Zope Exceptions +Group: Development/Libraries +%{?python_provide:%python_provide python2-zope-exceptions} + BuildRequires: python2-devel -BuildRequires: python-setuptools +BuildRequires: python2-setuptools %if 0%{?rhel} && 0%{?rhel} <= 6 BuildRequires: python-zope-interface4 Requires: python-zope-interface4 %else -BuildRequires: python-zope-interface -Requires: python-zope-interface +BuildRequires: python2-zope-interface +Requires: python2-zope-interface %endif -%if 0%{?with_python3} -BuildRequires: python3-devel -BuildRequires: python3-setuptools -BuildRequires: python3-zope-interface -%endif -%description +%description -n python2-zope-exceptions This package contains exception interfaces and implementations which are so general purpose that they don't belong in Zope application-specific packages. @@ -39,8 +43,13 @@ general purpose that they don't belong in Zope application-specific packages. %package -n python3-zope-exceptions Summary: Zope Exceptions Group: Development/Libraries +%{?python_provide:%python_provide python3-zope-exceptions} + +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-zope-interface -Requires: python3-zope-interface +Requires: python3-zope-interface %description -n python3-zope-exceptions This package contains exception interfaces and implementations which are so @@ -52,48 +61,36 @@ general purpose that they don't belong in Zope application-specific packages. rm -rf %{modname}.egg-info -%if 0%{?with_python3} -rm -rf %{py3dir} -cp -a . %{py3dir} -%endif - %build -%{__python} setup.py build +%{py2_build} %if 0%{?with_python3} -pushd %{py3dir} -%{__python3} setup.py build -popd +%{py3_build} %endif %install +%{py2_install} %if 0%{?with_python3} -pushd %{py3dir} -%{__python3} setup.py install -O1 --skip-build --root %{buildroot} -popd +%{py3_install} %endif -%{__python} setup.py install -O1 --skip-build --root %{buildroot} - # As of python-zope-exceptions-4.0.6, the tests require # python-zope-testrunner which has not yet been packaged. #%%check -#%%{__python} setup.py test +#%%{__python2} setup.py test # #%%if 0%%{?with_python3} -#pushd %%{py3dir} #%%{__python3} setup.py test -#popd #%%endif -%files +%files -n python2-zope-exceptions %defattr(-,root,root,-) %doc LICENSE.txt CHANGES.rst README.rst COPYRIGHT.txt -%{python_sitelib}/zope/exceptions/ -# Co-own %%{python_sitelib}/zope/ -%dir %{python_sitelib}/zope/ -%exclude %{python_sitelib}/zope/exceptions/tests/ -%{python_sitelib}/%{modname}-*.egg-info -%{python_sitelib}/%{modname}-*-nspkg.pth +%{python2_sitelib}/zope/exceptions/ +# Co-own %%{python2_sitelib}/zope/ +%dir %{python2_sitelib}/zope/ +%exclude %{python2_sitelib}/zope/exceptions/tests/ +%{python2_sitelib}/%{modname}-*.egg-info +%{python2_sitelib}/%{modname}-*-nspkg.pth %if 0%{?with_python3} %files -n python3-zope-exceptions @@ -106,8 +103,11 @@ popd %{python3_sitelib}/%{modname}-*-nspkg.pth %endif - %changelog +* Mon Jul 18 2016 Ralph Bean - 4.0.8-4 +- Explicit python2 subpackage. +- Modernized python macros. + * Thu Feb 04 2016 Fedora Release Engineering - 4.0.8-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild From 0a78e38db41fb3eae5db1d93ceb2a885861044a2 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 19 Jul 2016 12:15:34 +0000 Subject: [PATCH 22/32] - https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages --- python-zope-exceptions.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-zope-exceptions.spec b/python-zope-exceptions.spec index b671a0e..2700c7f 100644 --- a/python-zope-exceptions.spec +++ b/python-zope-exceptions.spec @@ -7,7 +7,7 @@ Summary: Zope Exceptions Name: python-zope-exceptions Version: 4.0.8 -Release: 4%{?dist} +Release: 5%{?dist} Source0: http://pypi.python.org/packages/source/z/%{modname}/%{modname}-%{version}.tar.gz License: ZPLv2.1 Group: Development/Libraries @@ -104,6 +104,9 @@ rm -rf %{modname}.egg-info %endif %changelog +* Tue Jul 19 2016 Fedora Release Engineering - 4.0.8-5 +- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages + * Mon Jul 18 2016 Ralph Bean - 4.0.8-4 - Explicit python2 subpackage. - Modernized python macros. From a7c3acc27e5ae389ba3aaba93a2505d3069cf048 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Mon, 19 Dec 2016 18:20:38 +0100 Subject: [PATCH 23/32] Rebuild for Python 3.6 --- python-zope-exceptions.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-zope-exceptions.spec b/python-zope-exceptions.spec index 2700c7f..31b771b 100644 --- a/python-zope-exceptions.spec +++ b/python-zope-exceptions.spec @@ -7,7 +7,7 @@ Summary: Zope Exceptions Name: python-zope-exceptions Version: 4.0.8 -Release: 5%{?dist} +Release: 6%{?dist} Source0: http://pypi.python.org/packages/source/z/%{modname}/%{modname}-%{version}.tar.gz License: ZPLv2.1 Group: Development/Libraries @@ -104,6 +104,9 @@ rm -rf %{modname}.egg-info %endif %changelog +* Mon Dec 19 2016 Miro Hrončok - 4.0.8-6 +- Rebuild for Python 3.6 + * Tue Jul 19 2016 Fedora Release Engineering - 4.0.8-5 - https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages From 6023036ba33538c77e39d3cfbda6d70a2cf02de8 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 11 Feb 2017 11:01:51 +0000 Subject: [PATCH 24/32] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild --- python-zope-exceptions.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-zope-exceptions.spec b/python-zope-exceptions.spec index 31b771b..3d8acf2 100644 --- a/python-zope-exceptions.spec +++ b/python-zope-exceptions.spec @@ -7,7 +7,7 @@ Summary: Zope Exceptions Name: python-zope-exceptions Version: 4.0.8 -Release: 6%{?dist} +Release: 7%{?dist} Source0: http://pypi.python.org/packages/source/z/%{modname}/%{modname}-%{version}.tar.gz License: ZPLv2.1 Group: Development/Libraries @@ -104,6 +104,9 @@ rm -rf %{modname}.egg-info %endif %changelog +* Sat Feb 11 2017 Fedora Release Engineering - 4.0.8-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + * Mon Dec 19 2016 Miro Hrončok - 4.0.8-6 - Rebuild for Python 3.6 From b0035b8158e8bf1c055aba6c83793dbfa391ba7b Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 27 Jul 2017 12:23:42 +0000 Subject: [PATCH 25/32] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- python-zope-exceptions.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-zope-exceptions.spec b/python-zope-exceptions.spec index 3d8acf2..0c6b5a3 100644 --- a/python-zope-exceptions.spec +++ b/python-zope-exceptions.spec @@ -7,7 +7,7 @@ Summary: Zope Exceptions Name: python-zope-exceptions Version: 4.0.8 -Release: 7%{?dist} +Release: 8%{?dist} Source0: http://pypi.python.org/packages/source/z/%{modname}/%{modname}-%{version}.tar.gz License: ZPLv2.1 Group: Development/Libraries @@ -104,6 +104,9 @@ rm -rf %{modname}.egg-info %endif %changelog +* Thu Jul 27 2017 Fedora Release Engineering - 4.0.8-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Sat Feb 11 2017 Fedora Release Engineering - 4.0.8-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild From 0e3d50f6a00137e9b0608fe07c28fa2edb602b78 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 9 Feb 2018 11:51:55 +0000 Subject: [PATCH 26/32] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- python-zope-exceptions.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-zope-exceptions.spec b/python-zope-exceptions.spec index 0c6b5a3..9d40c36 100644 --- a/python-zope-exceptions.spec +++ b/python-zope-exceptions.spec @@ -7,7 +7,7 @@ Summary: Zope Exceptions Name: python-zope-exceptions Version: 4.0.8 -Release: 8%{?dist} +Release: 9%{?dist} Source0: http://pypi.python.org/packages/source/z/%{modname}/%{modname}-%{version}.tar.gz License: ZPLv2.1 Group: Development/Libraries @@ -104,6 +104,9 @@ rm -rf %{modname}.egg-info %endif %changelog +* Fri Feb 09 2018 Fedora Release Engineering - 4.0.8-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Thu Jul 27 2017 Fedora Release Engineering - 4.0.8-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild From fe5b977b0f6c0974f4ffbdfdb2677a28e6aa6115 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Sun, 17 Jun 2018 23:56:08 +0200 Subject: [PATCH 27/32] Rebuilt for Python 3.7 --- python-zope-exceptions.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-zope-exceptions.spec b/python-zope-exceptions.spec index 9d40c36..19f84ef 100644 --- a/python-zope-exceptions.spec +++ b/python-zope-exceptions.spec @@ -7,7 +7,7 @@ Summary: Zope Exceptions Name: python-zope-exceptions Version: 4.0.8 -Release: 9%{?dist} +Release: 10%{?dist} Source0: http://pypi.python.org/packages/source/z/%{modname}/%{modname}-%{version}.tar.gz License: ZPLv2.1 Group: Development/Libraries @@ -104,6 +104,9 @@ rm -rf %{modname}.egg-info %endif %changelog +* Sun Jun 17 2018 Miro Hrončok - 4.0.8-10 +- Rebuilt for Python 3.7 + * Fri Feb 09 2018 Fedora Release Engineering - 4.0.8-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild From 4748ddc16644a357d45d284bf4eccbed8f2eda13 Mon Sep 17 00:00:00 2001 From: Jason Tibbitts Date: Tue, 10 Jul 2018 02:09:27 -0500 Subject: [PATCH 28/32] Remove needless use of %defattr --- python-zope-exceptions.spec | 1 - 1 file changed, 1 deletion(-) diff --git a/python-zope-exceptions.spec b/python-zope-exceptions.spec index 19f84ef..1f23403 100644 --- a/python-zope-exceptions.spec +++ b/python-zope-exceptions.spec @@ -83,7 +83,6 @@ rm -rf %{modname}.egg-info #%%endif %files -n python2-zope-exceptions -%defattr(-,root,root,-) %doc LICENSE.txt CHANGES.rst README.rst COPYRIGHT.txt %{python2_sitelib}/zope/exceptions/ # Co-own %%{python2_sitelib}/zope/ From ff4c8da65b92c82ec38c8acae7a7dc471879844a Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 14 Jul 2018 02:46:49 +0000 Subject: [PATCH 29/32] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- python-zope-exceptions.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-zope-exceptions.spec b/python-zope-exceptions.spec index 1f23403..0a5f05a 100644 --- a/python-zope-exceptions.spec +++ b/python-zope-exceptions.spec @@ -7,7 +7,7 @@ Summary: Zope Exceptions Name: python-zope-exceptions Version: 4.0.8 -Release: 10%{?dist} +Release: 11%{?dist} Source0: http://pypi.python.org/packages/source/z/%{modname}/%{modname}-%{version}.tar.gz License: ZPLv2.1 Group: Development/Libraries @@ -103,6 +103,9 @@ rm -rf %{modname}.egg-info %endif %changelog +* Sat Jul 14 2018 Fedora Release Engineering - 4.0.8-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Sun Jun 17 2018 Miro Hrončok - 4.0.8-10 - Rebuilt for Python 3.7 From 0e196dabc566911bfbc879782b25699ea4b4e52b Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Mon, 28 Jan 2019 20:18:19 +0100 Subject: [PATCH 30/32] Remove obsolete Group tag References: https://fedoraproject.org/wiki/Changes/Remove_Group_Tag --- python-zope-exceptions.spec | 3 --- 1 file changed, 3 deletions(-) diff --git a/python-zope-exceptions.spec b/python-zope-exceptions.spec index 0a5f05a..1c89cdb 100644 --- a/python-zope-exceptions.spec +++ b/python-zope-exceptions.spec @@ -10,7 +10,6 @@ Version: 4.0.8 Release: 11%{?dist} Source0: http://pypi.python.org/packages/source/z/%{modname}/%{modname}-%{version}.tar.gz License: ZPLv2.1 -Group: Development/Libraries BuildArch: noarch URL: http://pypi.python.org/pypi/zope.exceptions @@ -20,7 +19,6 @@ general purpose that they don't belong in Zope application-specific packages. %package -n python2-zope-exceptions Summary: Zope Exceptions -Group: Development/Libraries %{?python_provide:%python_provide python2-zope-exceptions} BuildRequires: python2-devel @@ -42,7 +40,6 @@ general purpose that they don't belong in Zope application-specific packages. %if 0%{?with_python3} %package -n python3-zope-exceptions Summary: Zope Exceptions -Group: Development/Libraries %{?python_provide:%python_provide python3-zope-exceptions} BuildRequires: python3-devel From 3b2ff7a7f41c33490a6d08d787c1788000e655d0 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 2 Feb 2019 10:14:35 +0000 Subject: [PATCH 31/32] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- python-zope-exceptions.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-zope-exceptions.spec b/python-zope-exceptions.spec index 1c89cdb..b26f80f 100644 --- a/python-zope-exceptions.spec +++ b/python-zope-exceptions.spec @@ -7,7 +7,7 @@ Summary: Zope Exceptions Name: python-zope-exceptions Version: 4.0.8 -Release: 11%{?dist} +Release: 12%{?dist} Source0: http://pypi.python.org/packages/source/z/%{modname}/%{modname}-%{version}.tar.gz License: ZPLv2.1 BuildArch: noarch @@ -100,6 +100,9 @@ rm -rf %{modname}.egg-info %endif %changelog +* Sat Feb 02 2019 Fedora Release Engineering - 4.0.8-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Sat Jul 14 2018 Fedora Release Engineering - 4.0.8-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild From d369aea8e1eb47a4ddb5bd4f1898b8fe186aa2c4 Mon Sep 17 00:00:00 2001 From: Troy Dawson Date: Wed, 26 Jun 2019 14:41:32 -0700 Subject: [PATCH 32/32] With Python 3 for EL8+ --- python-zope-exceptions.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python-zope-exceptions.spec b/python-zope-exceptions.spec index b26f80f..e3b8588 100644 --- a/python-zope-exceptions.spec +++ b/python-zope-exceptions.spec @@ -1,6 +1,6 @@ %global modname zope.exceptions -%if 0%{?fedora} +%if 0%{?fedora} || 0%{?rhel} >= 8 %global with_python3 1 %endif