From 8c1528b56e603020a9320cab97df41e25b32f821 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Esser?= Date: Thu, 22 Aug 2013 16:01:02 +0200 Subject: [PATCH 01/28] Initial import (#999563) --- .gitignore | 4 ++ python-Bottleneck.spec | 129 +++++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 134 insertions(+) create mode 100644 python-Bottleneck.spec diff --git a/.gitignore b/.gitignore index e69de29..4a406bf 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1,4 @@ +*~ +*.rpm +*.tar* +results_*/ diff --git a/python-Bottleneck.spec b/python-Bottleneck.spec new file mode 100644 index 0000000..7dcfb91 --- /dev/null +++ b/python-Bottleneck.spec @@ -0,0 +1,129 @@ +%global __provides_exclude_from ^%{python_sitearch}/.*\\.so +%global upname Bottleneck + +Name: python-%{upname} +Version: 0.6.0 +Release: 1%{?dist} +Summary: Collection of fast NumPy array functions written in Cython + +License: BSD +URL: http://berkeleyanalytics.com/bottleneck +Source0: https://pypi.python.org/packages/source/B/%{upname}/%{upname}-%{version}.tar.gz + +BuildRequires: numpy +BuildRequires: python-nose +%{?!fc18:BuildRequires: python-numpydoc} +BuildRequires: python-setuptools +BuildRequires: python-sphinx +BuildRequires: python2-devel +BuildRequires: python3-devel +BuildRequires: python3-nose +BuildRequires: python3-numpy +BuildRequires: python3-scipy +BuildRequires: python3-setuptools +BuildRequires: scipy + +Requires: numpy%{?_isa} +Requires: scipy%{?_isa} + +%description +%{name} is a collection of fast NumPy array functions +written in Cython. + + +%package doc +Summary: Documentation files for %{name} + +BuildArch: noarch +Provides: python3-%{upname}-doc = %{version}-%{release} + +%description doc +This package contains the HTML-docs for %{name}. + + +%package -n python3-%{upname} +Summary: Collection of fast NumPy array functions written in Cython + +Requires: python3-numpy%{?_isa} +Requires: python3-scipy%{?_isa} + +%description -n python3-%{upname} +python3-%{upname} is a collection of fast NumPy array functions +written in Cython. + + +%prep +%setup -qn %{upname}-%{version} +rm -rf %{py3dir} +cp -a . %{py3dir} + + +%build +# export compiler-flags +%configure ||: + +# build +%{__python} setup.py build +pushd %{py3dir} +%{__python3} setup.py build +popd + +# build autodocs +export PYTHONPATH="`pwd`/`find . -depth -type d -name lib.linux*`" +pushd doc +mkdir -p source/_static +make html + +# clean unneeded stuff from docs +rm -rf build/html/.buildinfo \ + build/html/_sources + + +%install +%{__python} setup.py install -O1 --skip-build --root `pwd`/test_install + +# clean unneeded stuff +rm -rf test_install/%{python_sitearch}/bottleneck/src \ + test_install/%{python_sitearch}/bottleneck/LICENSE + +# install into buildroot +cp -a test_install/* %{buildroot} + +pushd %{py3dir} +%{__python3} setup.py install -O1 --skip-build --root `pwd`/test_install + +# clean unneeded stuff +rm -rf test_install/%{python3_sitearch}/bottleneck/src \ + test_install/%{python3_sitearch}/bottleneck/LICENSE + +# install into buildroot +cp -a test_install/* %{buildroot} +popd + +%{_fixperms} %{buildroot}/* + + +%check +pushd `find . -depth -type d -name lib.linux*` +%{__python} -c 'import bottleneck as bn; bn.test()' +popd +pushd `find %{py3dir} -depth -type d -name lib.linux*` +%{__python3} -c 'import bottleneck as bn; bn.test()' +popd + + +%files +%doc bottleneck/LICENSE +%{python_sitearch}/* + +%files doc +%doc README* RELEASE* bottleneck/LICENSE doc/build/html + +%files -n python3-%{upname} +%doc bottleneck/LICENSE +%{python3_sitearch}/* + + +%changelog +* Wed Aug 21 2013 Björn Esser - 0.6.0-1 +- Initial rpm release (#999563) diff --git a/sources b/sources index e69de29..2a49cee 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +44ede1261fae49445b695ac861e48cb9 Bottleneck-0.6.0.tar.gz From 43fe7094406aab2619a2daa6fc3ac4355afafb6e Mon Sep 17 00:00:00 2001 From: Kalev Lember Date: Tue, 27 May 2014 23:57:05 +0200 Subject: [PATCH 02/28] Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4 --- python-Bottleneck.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-Bottleneck.spec b/python-Bottleneck.spec index 7dcfb91..3fe3575 100644 --- a/python-Bottleneck.spec +++ b/python-Bottleneck.spec @@ -3,7 +3,7 @@ Name: python-%{upname} Version: 0.6.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Collection of fast NumPy array functions written in Cython License: BSD @@ -125,5 +125,8 @@ popd %changelog +* Tue May 27 2014 Kalev Lember - 0.6.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4 + * Wed Aug 21 2013 Björn Esser - 0.6.0-1 - Initial rpm release (#999563) From 46a4f9c23955a7c45e427e29fdcbe07794caa77c Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 7 Jun 2014 13:20:54 -0500 Subject: [PATCH 03/28] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild --- python-Bottleneck.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-Bottleneck.spec b/python-Bottleneck.spec index 3fe3575..9e6b774 100644 --- a/python-Bottleneck.spec +++ b/python-Bottleneck.spec @@ -3,7 +3,7 @@ Name: python-%{upname} Version: 0.6.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Collection of fast NumPy array functions written in Cython License: BSD @@ -125,6 +125,9 @@ popd %changelog +* Sat Jun 07 2014 Fedora Release Engineering - 0.6.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + * Tue May 27 2014 Kalev Lember - 0.6.0-2 - Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4 From b4b3a75d638393cd3121724f7c5d425d7848f0f5 Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Sun, 17 Aug 2014 20:46:57 +0000 Subject: [PATCH 04/28] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild --- python-Bottleneck.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-Bottleneck.spec b/python-Bottleneck.spec index 9e6b774..ed73ad9 100644 --- a/python-Bottleneck.spec +++ b/python-Bottleneck.spec @@ -3,7 +3,7 @@ Name: python-%{upname} Version: 0.6.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Collection of fast NumPy array functions written in Cython License: BSD @@ -125,6 +125,9 @@ popd %changelog +* Sun Aug 17 2014 Fedora Release Engineering - 0.6.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + * Sat Jun 07 2014 Fedora Release Engineering - 0.6.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild From d1cf3e2a83cdc75dd4ff732d19319fabd8697c90 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 18 Jun 2015 18:20:06 +0000 Subject: [PATCH 05/28] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- python-Bottleneck.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-Bottleneck.spec b/python-Bottleneck.spec index ed73ad9..32b0018 100644 --- a/python-Bottleneck.spec +++ b/python-Bottleneck.spec @@ -3,7 +3,7 @@ Name: python-%{upname} Version: 0.6.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Collection of fast NumPy array functions written in Cython License: BSD @@ -125,6 +125,9 @@ popd %changelog +* Thu Jun 18 2015 Fedora Release Engineering - 0.6.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Sun Aug 17 2014 Fedora Release Engineering - 0.6.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild From 5ac451a602efb5e193d19d4e776f6dcbbfbdb2f8 Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Tue, 10 Nov 2015 15:01:53 +0000 Subject: [PATCH 06/28] - Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5 --- python-Bottleneck.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-Bottleneck.spec b/python-Bottleneck.spec index 32b0018..e5d0844 100644 --- a/python-Bottleneck.spec +++ b/python-Bottleneck.spec @@ -3,7 +3,7 @@ Name: python-%{upname} Version: 0.6.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Collection of fast NumPy array functions written in Cython License: BSD @@ -125,6 +125,9 @@ popd %changelog +* Tue Nov 10 2015 Fedora Release Engineering - 0.6.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5 + * Thu Jun 18 2015 Fedora Release Engineering - 0.6.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild From c10bb6f7b71f9d9b44b4ce4ebda411af294195ef Mon Sep 17 00:00:00 2001 From: Thomas Spura Date: Sun, 15 Nov 2015 11:55:34 +0100 Subject: [PATCH 07/28] Use new python macros and add python2 subpackage --- python-Bottleneck.spec | 38 +++++++++++++++++++++++--------------- 1 file changed, 23 insertions(+), 15 deletions(-) diff --git a/python-Bottleneck.spec b/python-Bottleneck.spec index e5d0844..da8dcdf 100644 --- a/python-Bottleneck.spec +++ b/python-Bottleneck.spec @@ -3,7 +3,7 @@ Name: python-%{upname} Version: 0.6.0 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Collection of fast NumPy array functions written in Cython License: BSD @@ -23,11 +23,20 @@ BuildRequires: python3-scipy BuildRequires: python3-setuptools BuildRequires: scipy +%description +%{name} is a collection of fast NumPy array functions +written in Cython. + + +%package -n python2-%{upname} +Summary: Collection of fast NumPy array functions written in Cython +%{?python_provide:%python_provide python2-%{upname}} + Requires: numpy%{?_isa} Requires: scipy%{?_isa} -%description -%{name} is a collection of fast NumPy array functions +%description -n python2-%{upname} +python2-%{upname} is a collection of fast NumPy array functions written in Cython. @@ -35,6 +44,7 @@ written in Cython. Summary: Documentation files for %{name} BuildArch: noarch +Provides: python2-%{upname}-doc = %{version}-%{release} Provides: python3-%{upname}-doc = %{version}-%{release} %description doc @@ -43,6 +53,7 @@ This package contains the HTML-docs for %{name}. %package -n python3-%{upname} Summary: Collection of fast NumPy array functions written in Cython +%{?python_provide:%python_provide python2-%{upname}} Requires: python3-numpy%{?_isa} Requires: python3-scipy%{?_isa} @@ -54,8 +65,6 @@ written in Cython. %prep %setup -qn %{upname}-%{version} -rm -rf %{py3dir} -cp -a . %{py3dir} %build @@ -63,10 +72,8 @@ cp -a . %{py3dir} %configure ||: # build -%{__python} setup.py build -pushd %{py3dir} -%{__python3} setup.py build -popd +%py2_build +%py3_build # build autodocs export PYTHONPATH="`pwd`/`find . -depth -type d -name lib.linux*`" @@ -89,7 +96,6 @@ rm -rf test_install/%{python_sitearch}/bottleneck/src \ # install into buildroot cp -a test_install/* %{buildroot} -pushd %{py3dir} %{__python3} setup.py install -O1 --skip-build --root `pwd`/test_install # clean unneeded stuff @@ -98,21 +104,20 @@ rm -rf test_install/%{python3_sitearch}/bottleneck/src \ # install into buildroot cp -a test_install/* %{buildroot} -popd %{_fixperms} %{buildroot}/* %check -pushd `find . -depth -type d -name lib.linux*` -%{__python} -c 'import bottleneck as bn; bn.test()' +pushd build/lib.linux-*-2.? +%{__python2} -c 'import bottleneck as bn; bn.test()' popd -pushd `find %{py3dir} -depth -type d -name lib.linux*` +pushd build/lib.linux-*-3.? %{__python3} -c 'import bottleneck as bn; bn.test()' popd -%files +%files -n python2-%{upname} %doc bottleneck/LICENSE %{python_sitearch}/* @@ -125,6 +130,9 @@ popd %changelog +* Sun Nov 15 2015 Thomas Spura - 0.6.0-7 +- Use new python macros and add python2 subpackage + * Tue Nov 10 2015 Fedora Release Engineering - 0.6.0-6 - Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5 From 00b6a22e057c57d11e0fb825b1e9f987a19ee0bf Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 4 Feb 2016 18:50:52 +0000 Subject: [PATCH 08/28] - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- python-Bottleneck.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-Bottleneck.spec b/python-Bottleneck.spec index da8dcdf..6767f5e 100644 --- a/python-Bottleneck.spec +++ b/python-Bottleneck.spec @@ -3,7 +3,7 @@ Name: python-%{upname} Version: 0.6.0 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Collection of fast NumPy array functions written in Cython License: BSD @@ -130,6 +130,9 @@ popd %changelog +* Thu Feb 04 2016 Fedora Release Engineering - 0.6.0-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + * Sun Nov 15 2015 Thomas Spura - 0.6.0-7 - Use new python macros and add python2 subpackage From 11f556feb149aed37956dd6690d713dd65de68f1 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 19 Jul 2016 08:41:03 +0000 Subject: [PATCH 09/28] - https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages --- python-Bottleneck.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-Bottleneck.spec b/python-Bottleneck.spec index 6767f5e..a614fac 100644 --- a/python-Bottleneck.spec +++ b/python-Bottleneck.spec @@ -3,7 +3,7 @@ Name: python-%{upname} Version: 0.6.0 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Collection of fast NumPy array functions written in Cython License: BSD @@ -130,6 +130,9 @@ popd %changelog +* Tue Jul 19 2016 Fedora Release Engineering - 0.6.0-9 +- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages + * Thu Feb 04 2016 Fedora Release Engineering - 0.6.0-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild From 04cbee27569c20135b65491bd578ba08573bd210 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Mon, 19 Dec 2016 18:20:37 +0100 Subject: [PATCH 10/28] Rebuild for Python 3.6 --- python-Bottleneck.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-Bottleneck.spec b/python-Bottleneck.spec index a614fac..132a872 100644 --- a/python-Bottleneck.spec +++ b/python-Bottleneck.spec @@ -3,7 +3,7 @@ Name: python-%{upname} Version: 0.6.0 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Collection of fast NumPy array functions written in Cython License: BSD @@ -130,6 +130,9 @@ popd %changelog +* Mon Dec 19 2016 Miro Hrončok - 0.6.0-10 +- Rebuild for Python 3.6 + * Tue Jul 19 2016 Fedora Release Engineering - 0.6.0-9 - https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages From ca8b848bd722ec3369699e7ad979bc5805889260 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 11 Feb 2017 08:11:48 +0000 Subject: [PATCH 11/28] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild --- python-Bottleneck.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-Bottleneck.spec b/python-Bottleneck.spec index 132a872..ec303da 100644 --- a/python-Bottleneck.spec +++ b/python-Bottleneck.spec @@ -3,7 +3,7 @@ Name: python-%{upname} Version: 0.6.0 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Collection of fast NumPy array functions written in Cython License: BSD @@ -130,6 +130,9 @@ popd %changelog +* Sat Feb 11 2017 Fedora Release Engineering - 0.6.0-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + * Mon Dec 19 2016 Miro Hrončok - 0.6.0-10 - Rebuild for Python 3.6 From 2b9fa2d84109e71beefedf8638224889867a04ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Esser?= Date: Sun, 9 Apr 2017 16:04:44 +0200 Subject: [PATCH 12/28] Updated to new upstream release (rhbz#1105817) Updated spec-file to recent guidelines --- python-Bottleneck.spec | 143 +++++++++++++++++++++-------------------- sources | 2 +- 2 files changed, 73 insertions(+), 72 deletions(-) diff --git a/python-Bottleneck.spec b/python-Bottleneck.spec index ec303da..676a736 100644 --- a/python-Bottleneck.spec +++ b/python-Bottleneck.spec @@ -1,135 +1,136 @@ -%global __provides_exclude_from ^%{python_sitearch}/.*\\.so %global upname Bottleneck Name: python-%{upname} -Version: 0.6.0 -Release: 11%{?dist} +Version: 1.2.0 +Release: 1%{?dist} Summary: Collection of fast NumPy array functions written in Cython License: BSD URL: http://berkeleyanalytics.com/bottleneck -Source0: https://pypi.python.org/packages/source/B/%{upname}/%{upname}-%{version}.tar.gz - -BuildRequires: numpy -BuildRequires: python-nose -%{?!fc18:BuildRequires: python-numpydoc} -BuildRequires: python-setuptools -BuildRequires: python-sphinx -BuildRequires: python2-devel -BuildRequires: python3-devel -BuildRequires: python3-nose -BuildRequires: python3-numpy -BuildRequires: python3-scipy -BuildRequires: python3-setuptools -BuildRequires: scipy +Source0: https://files.pythonhosted.org/packages/source/B/%{upname}/%{upname}-%{version}.tar.gz %description %{name} is a collection of fast NumPy array functions written in Cython. -%package -n python2-%{upname} -Summary: Collection of fast NumPy array functions written in Cython -%{?python_provide:%python_provide python2-%{upname}} - -Requires: numpy%{?_isa} -Requires: scipy%{?_isa} - -%description -n python2-%{upname} -python2-%{upname} is a collection of fast NumPy array functions -written in Cython. - - %package doc Summary: Documentation files for %{name} BuildArch: noarch -Provides: python2-%{upname}-doc = %{version}-%{release} -Provides: python3-%{upname}-doc = %{version}-%{release} %description doc This package contains the HTML-docs for %{name}. +%package -n python2-%{upname} +Summary: Collection of fast NumPy array functions written in Cython + +BuildRequires: numpy +BuildRequires: python-nose +BuildRequires: python-setuptools +BuildRequires: python-sphinx +BuildRequires: python2-devel +BuildRequires: scipy + +Requires: numpy%{?_isa} +Requires: scipy%{?_isa} + +%{?python_provide:%python_provide python2-%{upname}} + +%description -n python2-%{upname} +python2-%{upname} is a collection of fast NumPy array functions +written in Cython. + + %package -n python3-%{upname} Summary: Collection of fast NumPy array functions written in Cython -%{?python_provide:%python_provide python2-%{upname}} + +BuildRequires: python3-devel +BuildRequires: python3-nose +BuildRequires: python3-numpy +BuildRequires: python3-scipy +BuildRequires: python3-setuptools Requires: python3-numpy%{?_isa} Requires: python3-scipy%{?_isa} +%{?python_provide:%python_provide python2-%{upname}} + %description -n python3-%{upname} python3-%{upname} is a collection of fast NumPy array functions written in Cython. %prep -%setup -qn %{upname}-%{version} +%autosetup -n %{upname}-%{version} -p 1 +%{__rm} -fr *.egg* %build -# export compiler-flags -%configure ||: - -# build %py2_build %py3_build -# build autodocs -export PYTHONPATH="`pwd`/`find . -depth -type d -name lib.linux*`" -pushd doc -mkdir -p source/_static -make html - -# clean unneeded stuff from docs -rm -rf build/html/.buildinfo \ - build/html/_sources - %install -%{__python} setup.py install -O1 --skip-build --root `pwd`/test_install +%py2_install +%py3_install # clean unneeded stuff -rm -rf test_install/%{python_sitearch}/bottleneck/src \ - test_install/%{python_sitearch}/bottleneck/LICENSE - -# install into buildroot -cp -a test_install/* %{buildroot} - -%{__python3} setup.py install -O1 --skip-build --root `pwd`/test_install - -# clean unneeded stuff -rm -rf test_install/%{python3_sitearch}/bottleneck/src \ - test_install/%{python3_sitearch}/bottleneck/LICENSE - -# install into buildroot -cp -a test_install/* %{buildroot} +%{__rm} -rf %{buildroot}%{python2_sitearch}/bottleneck/src \ + %{buildroot}%{python2_sitearch}/bottleneck/LICENSE \ + %{buildroot}%{python3_sitearch}/bottleneck/src \ + %{buildroot}%{python3_sitearch}/bottleneck/LICENSE %{_fixperms} %{buildroot}/* +# Move installed files to temporary location. +%{__mkdir} -p tmp_inst +%{__cp} -fpr %{buildroot}/* tmp_inst + +# Build the autodocs. +export PYTHONPATH="$(/bin/pwd)/tmp_inst/%{python2_sitearch}" +%{__mkdir} -p doc/source/_static +%{_bindir}/sphinx-build -b html doc/source doc/html +unset PYTHONPATH + +# Clean unneeded stuff from docs. +%{__rm} -rf doc/html/{.buildinfo,.doctrees,objects.inv} + %check -pushd build/lib.linux-*-2.? +pushd tmp_inst/%{python2_sitearch} %{__python2} -c 'import bottleneck as bn; bn.test()' popd -pushd build/lib.linux-*-3.? +pushd tmp_inst/%{python3_sitearch} %{__python3} -c 'import bottleneck as bn; bn.test()' popd -%files -n python2-%{upname} -%doc bottleneck/LICENSE -%{python_sitearch}/* - %files doc -%doc README* RELEASE* bottleneck/LICENSE doc/build/html +%license bottleneck/LICENSE +%doc README* RELEASE* doc/html + + +%files -n python2-%{upname} +%license bottleneck/LICENSE +%doc README* RELEASE* +%{python2_sitearch}/bottleneck +%{python2_sitearch}/%{upname}-%{version}-py%{python2_version}.egg-info + %files -n python3-%{upname} -%doc bottleneck/LICENSE -%{python3_sitearch}/* +%license bottleneck/LICENSE +%doc README* RELEASE* +%{python3_sitearch}/bottleneck +%{python3_sitearch}/%{upname}-%{version}-py%{python3_version}.egg-info %changelog +* Sun Apr 09 2017 Björn Esser - 1.2.0-1 +- Updated to new upstream release (rhbz#1105817) +- Updated spec-file to recent guidelines + * Sat Feb 11 2017 Fedora Release Engineering - 0.6.0-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild diff --git a/sources b/sources index 2a49cee..d171554 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -44ede1261fae49445b695ac861e48cb9 Bottleneck-0.6.0.tar.gz +SHA512 (Bottleneck-1.2.0.tar.gz) = 2dce3626b33923b4ab08047910b38e5531090a58f63a380392b78352c3dc657b947dc6dcad306734beaf130855c10ff9fb0048c027821720660fc62a242daafb From c27c5b98ecf8df0e2a32cacc028d6fb416e3d46d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Esser?= Date: Tue, 16 May 2017 14:54:59 +0200 Subject: [PATCH 13/28] Updated to new upstream release (rhbz#1451146) --- python-Bottleneck.spec | 13 ++++++++----- sources | 2 +- 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/python-Bottleneck.spec b/python-Bottleneck.spec index 676a736..a44e138 100644 --- a/python-Bottleneck.spec +++ b/python-Bottleneck.spec @@ -1,7 +1,7 @@ %global upname Bottleneck Name: python-%{upname} -Version: 1.2.0 +Version: 1.2.1 Release: 1%{?dist} Summary: Collection of fast NumPy array functions written in Cython @@ -64,7 +64,7 @@ written in Cython. %prep %autosetup -n %{upname}-%{version} -p 1 -%{__rm} -fr *.egg* +%{__rm} -fr .egg* *.egg* %build @@ -95,15 +95,15 @@ export PYTHONPATH="$(/bin/pwd)/tmp_inst/%{python2_sitearch}" unset PYTHONPATH # Clean unneeded stuff from docs. -%{__rm} -rf doc/html/{.buildinfo,.doctrees,objects.inv} +%{__rm} -rf doc/html/{.buildinfo,.doctrees} %check pushd tmp_inst/%{python2_sitearch} -%{__python2} -c 'import bottleneck as bn; bn.test()' +%{_bindir}/nosetests-%{python2_version} -vv popd pushd tmp_inst/%{python3_sitearch} -%{__python3} -c 'import bottleneck as bn; bn.test()' +%{_bindir}/nosetests-%{python3_version} -vv popd @@ -127,6 +127,9 @@ popd %changelog +* Tue May 16 2017 Björn Esser - 1.2.1-1 +- Updated to new upstream release (rhbz#1451146) + * Sun Apr 09 2017 Björn Esser - 1.2.0-1 - Updated to new upstream release (rhbz#1105817) - Updated spec-file to recent guidelines diff --git a/sources b/sources index d171554..c302071 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (Bottleneck-1.2.0.tar.gz) = 2dce3626b33923b4ab08047910b38e5531090a58f63a380392b78352c3dc657b947dc6dcad306734beaf130855c10ff9fb0048c027821720660fc62a242daafb +SHA512 (Bottleneck-1.2.1.tar.gz) = c766999cd1501b9f1dee0177b631ece12824d1f95c33077705f6387c911df583c3556ea22b208e455567f75e6e12e29b95855a6aea316bd1d6113bf47a04cf5a From dba59075a1e71d65f8fac213ff1963ede510833c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 27 Jul 2017 09:26:14 +0000 Subject: [PATCH 14/28] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- python-Bottleneck.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-Bottleneck.spec b/python-Bottleneck.spec index a44e138..29ee381 100644 --- a/python-Bottleneck.spec +++ b/python-Bottleneck.spec @@ -2,7 +2,7 @@ Name: python-%{upname} Version: 1.2.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Collection of fast NumPy array functions written in Cython License: BSD @@ -127,6 +127,9 @@ popd %changelog +* Thu Jul 27 2017 Fedora Release Engineering - 1.2.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Tue May 16 2017 Björn Esser - 1.2.1-1 - Updated to new upstream release (rhbz#1451146) From 9704d69fcb22b301a1577f15c5844786f5e40e67 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 3 Aug 2017 06:37:08 +0000 Subject: [PATCH 15/28] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild --- python-Bottleneck.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-Bottleneck.spec b/python-Bottleneck.spec index 29ee381..a67479d 100644 --- a/python-Bottleneck.spec +++ b/python-Bottleneck.spec @@ -2,7 +2,7 @@ Name: python-%{upname} Version: 1.2.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Collection of fast NumPy array functions written in Cython License: BSD @@ -127,6 +127,9 @@ popd %changelog +* Thu Aug 03 2017 Fedora Release Engineering - 1.2.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + * Thu Jul 27 2017 Fedora Release Engineering - 1.2.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild From c5cc7ffabd59fcdfd9b7f3bc078c54f0239a0a90 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 9 Feb 2018 06:21:52 +0000 Subject: [PATCH 16/28] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- python-Bottleneck.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-Bottleneck.spec b/python-Bottleneck.spec index a67479d..eddc9ec 100644 --- a/python-Bottleneck.spec +++ b/python-Bottleneck.spec @@ -2,7 +2,7 @@ Name: python-%{upname} Version: 1.2.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Collection of fast NumPy array functions written in Cython License: BSD @@ -127,6 +127,9 @@ popd %changelog +* Fri Feb 09 2018 Fedora Release Engineering - 1.2.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Thu Aug 03 2017 Fedora Release Engineering - 1.2.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild From 882880ed80a340b709c32327cc3145b86994a305 Mon Sep 17 00:00:00 2001 From: Iryna Shcherbina Date: Fri, 9 Feb 2018 10:59:23 +0100 Subject: [PATCH 17/28] Update Python 2 dependency declarations to new packaging standards --- python-Bottleneck.spec | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/python-Bottleneck.spec b/python-Bottleneck.spec index eddc9ec..f9fef93 100644 --- a/python-Bottleneck.spec +++ b/python-Bottleneck.spec @@ -2,7 +2,7 @@ Name: python-%{upname} Version: 1.2.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Collection of fast NumPy array functions written in Cython License: BSD @@ -26,12 +26,12 @@ This package contains the HTML-docs for %{name}. %package -n python2-%{upname} Summary: Collection of fast NumPy array functions written in Cython -BuildRequires: numpy -BuildRequires: python-nose -BuildRequires: python-setuptools -BuildRequires: python-sphinx +BuildRequires: python2-numpy +BuildRequires: python2-nose +BuildRequires: python2-setuptools +BuildRequires: python2-sphinx BuildRequires: python2-devel -BuildRequires: scipy +BuildRequires: python2-scipy Requires: numpy%{?_isa} Requires: scipy%{?_isa} @@ -127,6 +127,10 @@ popd %changelog +* Fri Feb 09 2018 Iryna Shcherbina - 1.2.1-5 +- Update Python 2 dependency declarations to new packaging standards + (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3) + * Fri Feb 09 2018 Fedora Release Engineering - 1.2.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild From 10d33a17961612d96a4307ceac32f4d8ad10b6a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Tue, 19 Jun 2018 10:51:37 +0200 Subject: [PATCH 18/28] Rebuilt for Python 3.7 --- python-Bottleneck.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-Bottleneck.spec b/python-Bottleneck.spec index f9fef93..72db4e8 100644 --- a/python-Bottleneck.spec +++ b/python-Bottleneck.spec @@ -2,7 +2,7 @@ Name: python-%{upname} Version: 1.2.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Collection of fast NumPy array functions written in Cython License: BSD @@ -127,6 +127,9 @@ popd %changelog +* Tue Jun 19 2018 Miro Hrončok - 1.2.1-6 +- Rebuilt for Python 3.7 + * Fri Feb 09 2018 Iryna Shcherbina - 1.2.1-5 - Update Python 2 dependency declarations to new packaging standards (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3) From 3f0567d665ce0a6c3c80f0204aaebd890036397a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Sun, 24 Jun 2018 16:48:15 +0200 Subject: [PATCH 19/28] Use numpydoc from our package to fix FTBFS (#1594555) --- python-Bottleneck.spec | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/python-Bottleneck.spec b/python-Bottleneck.spec index 72db4e8..941b5fa 100644 --- a/python-Bottleneck.spec +++ b/python-Bottleneck.spec @@ -27,6 +27,7 @@ This package contains the HTML-docs for %{name}. Summary: Collection of fast NumPy array functions written in Cython BuildRequires: python2-numpy +BuildRequires: python2-numpydoc BuildRequires: python2-nose BuildRequires: python2-setuptools BuildRequires: python2-sphinx @@ -66,6 +67,9 @@ written in Cython. %autosetup -n %{upname}-%{version} -p 1 %{__rm} -fr .egg* *.egg* +# use numpydoc from the package instead +%{__rm} -f doc/sphinxext/numpydoc.py* + %build %py2_build @@ -129,6 +133,7 @@ popd %changelog * Tue Jun 19 2018 Miro Hrončok - 1.2.1-6 - Rebuilt for Python 3.7 +- Use numpydoc from our package to fix FTBFS (#1594555) * Fri Feb 09 2018 Iryna Shcherbina - 1.2.1-5 - Update Python 2 dependency declarations to new packaging standards From 5f970dc7e3c4f075d2baad2ca868837510885b5d Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Tue, 10 Jul 2018 15:56:26 +0200 Subject: [PATCH 20/28] add BuildRequires: gcc Reference: https://fedoraproject.org/wiki/Changes/Remove_GCC_from_BuildRoot --- python-Bottleneck.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/python-Bottleneck.spec b/python-Bottleneck.spec index 941b5fa..8d11231 100644 --- a/python-Bottleneck.spec +++ b/python-Bottleneck.spec @@ -26,6 +26,7 @@ This package contains the HTML-docs for %{name}. %package -n python2-%{upname} Summary: Collection of fast NumPy array functions written in Cython +BuildRequires: gcc BuildRequires: python2-numpy BuildRequires: python2-numpydoc BuildRequires: python2-nose From db9b831856da21ec52700cb63bc45ee9cc8d11c7 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 13 Jul 2018 23:15:40 +0000 Subject: [PATCH 21/28] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- python-Bottleneck.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-Bottleneck.spec b/python-Bottleneck.spec index 8d11231..026d289 100644 --- a/python-Bottleneck.spec +++ b/python-Bottleneck.spec @@ -2,7 +2,7 @@ Name: python-%{upname} Version: 1.2.1 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Collection of fast NumPy array functions written in Cython License: BSD @@ -132,6 +132,9 @@ popd %changelog +* Fri Jul 13 2018 Fedora Release Engineering - 1.2.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Tue Jun 19 2018 Miro Hrončok - 1.2.1-6 - Rebuilt for Python 3.7 - Use numpydoc from our package to fix FTBFS (#1594555) From 4727e85324721a8c690bf148fdbb8bbd45c6b3fe Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 2 Feb 2019 05:20:53 +0000 Subject: [PATCH 22/28] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- python-Bottleneck.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-Bottleneck.spec b/python-Bottleneck.spec index 026d289..ea0c4a1 100644 --- a/python-Bottleneck.spec +++ b/python-Bottleneck.spec @@ -2,7 +2,7 @@ Name: python-%{upname} Version: 1.2.1 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Collection of fast NumPy array functions written in Cython License: BSD @@ -132,6 +132,9 @@ popd %changelog +* Sat Feb 02 2019 Fedora Release Engineering - 1.2.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Fri Jul 13 2018 Fedora Release Engineering - 1.2.1-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild From 3ae40abe2dcafb3b1928aade602db47bbba660e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Wed, 1 May 2019 19:09:45 +0200 Subject: [PATCH 23/28] Build docs with Python 3 https://fedoraproject.org/wiki/Changes/Sphinx2 --- python-Bottleneck.spec | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/python-Bottleneck.spec b/python-Bottleneck.spec index ea0c4a1..d7d21e9 100644 --- a/python-Bottleneck.spec +++ b/python-Bottleneck.spec @@ -28,10 +28,8 @@ Summary: Collection of fast NumPy array functions written in Cython BuildRequires: gcc BuildRequires: python2-numpy -BuildRequires: python2-numpydoc BuildRequires: python2-nose BuildRequires: python2-setuptools -BuildRequires: python2-sphinx BuildRequires: python2-devel BuildRequires: python2-scipy @@ -51,8 +49,10 @@ Summary: Collection of fast NumPy array functions written in Cython BuildRequires: python3-devel BuildRequires: python3-nose BuildRequires: python3-numpy +BuildRequires: python3-numpydoc BuildRequires: python3-scipy BuildRequires: python3-setuptools +BuildRequires: python3-sphinx Requires: python3-numpy%{?_isa} Requires: python3-scipy%{?_isa} @@ -71,6 +71,8 @@ written in Cython. # use numpydoc from the package instead %{__rm} -f doc/sphinxext/numpydoc.py* +# Python 2 remark +%{__sed} -i 's/fid = file(/fid = open(/' doc/source/conf.py %build %py2_build @@ -94,7 +96,7 @@ written in Cython. %{__cp} -fpr %{buildroot}/* tmp_inst # Build the autodocs. -export PYTHONPATH="$(/bin/pwd)/tmp_inst/%{python2_sitearch}" +export PYTHONPATH="$(/bin/pwd)/tmp_inst/%{python3_sitearch}" %{__mkdir} -p doc/source/_static %{_bindir}/sphinx-build -b html doc/source doc/html unset PYTHONPATH From cc92459849a70180f868a18b29c00ea4a033bf2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Fri, 28 Jun 2019 12:34:06 +0200 Subject: [PATCH 24/28] Subpackage python2-Bottleneck has been removed --- python-Bottleneck.spec | 46 +++++++++--------------------------------- 1 file changed, 9 insertions(+), 37 deletions(-) diff --git a/python-Bottleneck.spec b/python-Bottleneck.spec index d7d21e9..3bf55ee 100644 --- a/python-Bottleneck.spec +++ b/python-Bottleneck.spec @@ -2,13 +2,15 @@ Name: python-%{upname} Version: 1.2.1 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Collection of fast NumPy array functions written in Cython License: BSD URL: http://berkeleyanalytics.com/bottleneck Source0: https://files.pythonhosted.org/packages/source/B/%{upname}/%{upname}-%{version}.tar.gz +BuildRequires: gcc + %description %{name} is a collection of fast NumPy array functions written in Cython. @@ -23,26 +25,6 @@ BuildArch: noarch This package contains the HTML-docs for %{name}. -%package -n python2-%{upname} -Summary: Collection of fast NumPy array functions written in Cython - -BuildRequires: gcc -BuildRequires: python2-numpy -BuildRequires: python2-nose -BuildRequires: python2-setuptools -BuildRequires: python2-devel -BuildRequires: python2-scipy - -Requires: numpy%{?_isa} -Requires: scipy%{?_isa} - -%{?python_provide:%python_provide python2-%{upname}} - -%description -n python2-%{upname} -python2-%{upname} is a collection of fast NumPy array functions -written in Cython. - - %package -n python3-%{upname} Summary: Collection of fast NumPy array functions written in Cython @@ -57,7 +39,7 @@ BuildRequires: python3-sphinx Requires: python3-numpy%{?_isa} Requires: python3-scipy%{?_isa} -%{?python_provide:%python_provide python2-%{upname}} +%{?python_provide:%python_provide python3-%{upname}} %description -n python3-%{upname} python3-%{upname} is a collection of fast NumPy array functions @@ -75,18 +57,14 @@ written in Cython. %{__sed} -i 's/fid = file(/fid = open(/' doc/source/conf.py %build -%py2_build %py3_build %install -%py2_install %py3_install # clean unneeded stuff -%{__rm} -rf %{buildroot}%{python2_sitearch}/bottleneck/src \ - %{buildroot}%{python2_sitearch}/bottleneck/LICENSE \ - %{buildroot}%{python3_sitearch}/bottleneck/src \ +%{__rm} -rf %{buildroot}%{python3_sitearch}/bottleneck/src \ %{buildroot}%{python3_sitearch}/bottleneck/LICENSE %{_fixperms} %{buildroot}/* @@ -106,9 +84,6 @@ unset PYTHONPATH %check -pushd tmp_inst/%{python2_sitearch} -%{_bindir}/nosetests-%{python2_version} -vv -popd pushd tmp_inst/%{python3_sitearch} %{_bindir}/nosetests-%{python3_version} -vv popd @@ -119,13 +94,6 @@ popd %doc README* RELEASE* doc/html -%files -n python2-%{upname} -%license bottleneck/LICENSE -%doc README* RELEASE* -%{python2_sitearch}/bottleneck -%{python2_sitearch}/%{upname}-%{version}-py%{python2_version}.egg-info - - %files -n python3-%{upname} %license bottleneck/LICENSE %doc README* RELEASE* @@ -134,6 +102,10 @@ popd %changelog +* Fri Jun 28 2019 Miro Hrončok - 1.2.1-9 +- Subpackage python2-Bottleneck has been removed + See https://fedoraproject.org/wiki/Changes/Mass_Python_2_Package_Removal + * Sat Feb 02 2019 Fedora Release Engineering - 1.2.1-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild From e138800959c9acba64e8fe836f2480e8aaf5eb07 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 26 Jul 2019 11:51:35 +0000 Subject: [PATCH 25/28] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- python-Bottleneck.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-Bottleneck.spec b/python-Bottleneck.spec index 3bf55ee..c4f6f6e 100644 --- a/python-Bottleneck.spec +++ b/python-Bottleneck.spec @@ -2,7 +2,7 @@ Name: python-%{upname} Version: 1.2.1 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Collection of fast NumPy array functions written in Cython License: BSD @@ -102,6 +102,9 @@ popd %changelog +* Fri Jul 26 2019 Fedora Release Engineering - 1.2.1-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Fri Jun 28 2019 Miro Hrončok - 1.2.1-9 - Subpackage python2-Bottleneck has been removed See https://fedoraproject.org/wiki/Changes/Mass_Python_2_Package_Removal From 45733e4010562b7d16443721740e94388e5ce6ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Mon, 19 Aug 2019 10:24:49 +0200 Subject: [PATCH 26/28] Rebuilt for Python 3.8 --- python-Bottleneck.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-Bottleneck.spec b/python-Bottleneck.spec index c4f6f6e..4184233 100644 --- a/python-Bottleneck.spec +++ b/python-Bottleneck.spec @@ -2,7 +2,7 @@ Name: python-%{upname} Version: 1.2.1 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Collection of fast NumPy array functions written in Cython License: BSD @@ -102,6 +102,9 @@ popd %changelog +* Mon Aug 19 2019 Miro Hrončok - 1.2.1-11 +- Rebuilt for Python 3.8 + * Fri Jul 26 2019 Fedora Release Engineering - 1.2.1-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild From 1816070f6cc033cbbb6d3598e38580c8d04c8ab5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Thu, 3 Oct 2019 14:00:11 +0200 Subject: [PATCH 27/28] Rebuilt for Python 3.8.0rc1 (#1748018) --- python-Bottleneck.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-Bottleneck.spec b/python-Bottleneck.spec index 4184233..559a1d3 100644 --- a/python-Bottleneck.spec +++ b/python-Bottleneck.spec @@ -2,7 +2,7 @@ Name: python-%{upname} Version: 1.2.1 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Collection of fast NumPy array functions written in Cython License: BSD @@ -102,6 +102,9 @@ popd %changelog +* Thu Oct 03 2019 Miro Hrončok - 1.2.1-12 +- Rebuilt for Python 3.8.0rc1 (#1748018) + * Mon Aug 19 2019 Miro Hrončok - 1.2.1-11 - Rebuilt for Python 3.8 From e160ed5e8e3cd1190df047f548289fe4020ca12f Mon Sep 17 00:00:00 2001 From: Orion Poplawski Date: Fri, 4 Oct 2019 10:55:59 -0600 Subject: [PATCH 28/28] Fix URL --- python-Bottleneck.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/python-Bottleneck.spec b/python-Bottleneck.spec index 559a1d3..8809888 100644 --- a/python-Bottleneck.spec +++ b/python-Bottleneck.spec @@ -2,11 +2,11 @@ Name: python-%{upname} Version: 1.2.1 -Release: 12%{?dist} +Release: 13%{?dist} Summary: Collection of fast NumPy array functions written in Cython License: BSD -URL: http://berkeleyanalytics.com/bottleneck +URL: https://pypi.org/project/Bottleneck/ Source0: https://files.pythonhosted.org/packages/source/B/%{upname}/%{upname}-%{version}.tar.gz BuildRequires: gcc @@ -102,6 +102,9 @@ popd %changelog +* Fri Oct 4 2019 Orion Poplawski - 1.2.1-13 +- Fix URL + * Thu Oct 03 2019 Miro Hrončok - 1.2.1-12 - Rebuilt for Python 3.8.0rc1 (#1748018)