From 215e199d82af2514fa988818b7b79b497cbecf13 Mon Sep 17 00:00:00 2001 From: Sergey Cherevko Date: Tue, 30 Jan 2024 14:17:06 +0300 Subject: [PATCH] import python-waitress-1.4.3-1.el8 --- .gitignore | 1 + .python-waitress.metadata | 1 + SOURCES/0001-Skip-test_in_generator.patch | 30 +++ SOURCES/generate-tarball.sh | 8 + SPECS/python-waitress.spec | 223 ++++++++++++++++++++++ 5 files changed, 263 insertions(+) create mode 100644 .gitignore create mode 100644 .python-waitress.metadata create mode 100644 SOURCES/0001-Skip-test_in_generator.patch create mode 100755 SOURCES/generate-tarball.sh create mode 100644 SPECS/python-waitress.spec diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a8c649b --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/v1.4.3-nodocs.tar.gz diff --git a/.python-waitress.metadata b/.python-waitress.metadata new file mode 100644 index 0000000..731ae49 --- /dev/null +++ b/.python-waitress.metadata @@ -0,0 +1 @@ +929190ebdffb4bed70d88db55afacb3bff0a0099 SOURCES/v1.4.3-nodocs.tar.gz diff --git a/SOURCES/0001-Skip-test_in_generator.patch b/SOURCES/0001-Skip-test_in_generator.patch new file mode 100644 index 0000000..1a66d68 --- /dev/null +++ b/SOURCES/0001-Skip-test_in_generator.patch @@ -0,0 +1,30 @@ +From 0278f7a9ca9e65c877a34b5c122dbdda9f78c23d Mon Sep 17 00:00:00 2001 +From: Carl George +Date: Tue, 9 May 2023 23:01:49 -0500 +Subject: [PATCH] Skip test_in_generator + +This test fails during a mock build. + +Traceback (most recent call last): + File "/builddir/build/BUILD/waitress-1.4.3-nodocs/waitress/tests/test_functional.py", line 1207, in test_in_generator + self.assertRaises(ConnectionClosed, read_http, fp) +AssertionError: ConnectionClosed not raised +--- + waitress/tests/test_functional.py | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/waitress/tests/test_functional.py b/waitress/tests/test_functional.py +index 8f4b262..c748f3a 100644 +--- a/waitress/tests/test_functional.py ++++ b/waitress/tests/test_functional.py +@@ -1193,6 +1193,7 @@ class InternalServerErrorTests(object): + self.send_check_error(to_send) + self.assertRaises(ConnectionClosed, read_http, fp) + ++ @unittest.skip('fails in mock build') + def test_in_generator(self): + to_send = "GET /in_generator HTTP/1.1\r\n\r\n" + to_send = tobytes(to_send) +-- +2.40.1 + diff --git a/SOURCES/generate-tarball.sh b/SOURCES/generate-tarball.sh new file mode 100755 index 0000000..b15b561 --- /dev/null +++ b/SOURCES/generate-tarball.sh @@ -0,0 +1,8 @@ +#!/bin/sh + +VERSION=$1 + +#tar -xzvf v$VERSION.tar.gz +rm -rf waitress-$VERSION/docs +mv waitress-$VERSION waitress-$VERSION-nodocs +tar -czvf v$VERSION-nodocs.tar.gz waitress-$VERSION-nodocs diff --git a/SPECS/python-waitress.spec b/SPECS/python-waitress.spec new file mode 100644 index 0000000..5d0c2d0 --- /dev/null +++ b/SPECS/python-waitress.spec @@ -0,0 +1,223 @@ +%global srcname waitress + +%global _docdir_fmt %{name} + +Name: python-%{srcname} +Version: 1.4.3 +Release: 1%{?dist} +Summary: Waitress WSGI server + +License: ZPLv2.1 +URL: https://github.com/Pylons/%{srcname} +Source0: v%{version}-nodocs.tar.gz +# Upstream ships non free docs files. +# We do not even want them in our src.rpms +# So we remove them before uploading. +# +# Download the upstream tarball and invoke this script while in the +# tarball's directory: +# ./generate-tarball.sh 1.0 +# +Source1: generate-tarball.sh + +# downstream only patch +Patch0: 0001-Skip-test_in_generator.patch + +BuildArch: noarch + +%global _description %{expand: +Waitress is meant to be a production-quality pure-Python WSGI server with very +acceptable performance. It has no dependencies except ones which live in the +Python standard library. It runs on CPython on Unix and Windows under Python +2.7+ and Python 3.4+. It is also known to run on PyPy 1.6.0+ on UNIX. It +supports HTTP/1.0 and HTTP/1.1.} + +%description %{_description} + +%package -n python2-%{srcname} +Summary: %{summary} +BuildRequires: python2-devel +BuildRequires: python2-setuptools +BuildRequires: python2-nose + +%description -n python2-%{srcname} %{_description} + +Python 2 version. + +%package -n python3-%{srcname} +Summary: %{summary} +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-nose + +%description -n python3-%{srcname} %{_description} + +Python 3 version. + +%prep +%autosetup -n %{srcname}-%{version}-nodocs -p 1 + +%build +%py2_build +%py3_build + +%install +%py2_install +%py3_install + +%check +PYTHONPATH=%{buildroot}%{python2_sitelib} nosetests-%{python2_version} %{srcname} +PYTHONPATH=%{buildroot}%{python3_sitelib} nosetests-%{python3_version} %{srcname} + +%files -n python2-%{srcname} +%license COPYRIGHT.txt LICENSE.txt +%doc README.rst CHANGES.txt +%{python2_sitelib}/%{srcname}/ +%{python2_sitelib}/%{srcname}-*.egg-info/ + +%files -n python3-%{srcname} +%license COPYRIGHT.txt LICENSE.txt +%doc README.rst CHANGES.txt +%{_bindir}/waitress-serve +%{python3_sitelib}/%{srcname}/ +%{python3_sitelib}/%{srcname}-*.egg-info/ + +%changelog +* Wed Jan 24 2024 Sergey Cherevko - 1.4.3-1 +- Rebuilt for MSVSphere 8.9 + +* Wed May 10 2023 Carl George - 1.4.3-1 +- Update to version 1.4.3 +- Resolves: rhbz#1791421 CVE-2019-16785 +- Resolves: rhbz#1791417 CVE-2019-16786 +- Resolves: rhbz#1789810 CVE-2019-16789 +- Resolves: CVE-2019-16792 +- Resolves: CVE-2020-5236 +- Run test suite + +* Wed Jul 24 2019 Stephen Smoogen - 1.2.1-2.1 +- Change out python3-coverage with standard lookup call. + +* Sat Jun 29 2019 Kevin Fenzi - 1.2.1-2 +- Remove non free docs from src.rpm and provide script to do so before upload. +- Fixes bug #1684335 + +* Tue Feb 05 2019 Lorenzo Gil Sanchez - 1.2.1-1 +- Update to 1.2.1 (#1667466) + +* Sat Feb 02 2019 Fedora Release Engineering - 1.1.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Sat Jul 14 2018 Fedora Release Engineering - 1.1.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Sun Jun 17 2018 Miro Hrončok - 1.1.0-3 +- Rebuilt for Python 3.7 + +* Fri Feb 09 2018 Fedora Release Engineering - 1.1.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Sat Nov 11 2017 Lorenzo Gil Sanchez - 1.1.0-1 +- Update to 1.1.0 (#1504455) + +* Thu Jul 27 2017 Fedora Release Engineering - 1.0.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Sat Feb 18 2017 Lorenzo Gil Sanchez - 1.0.2-1 +- Update to 1.0.2. Fixes bug #1419297 + +* Sat Feb 11 2017 Fedora Release Engineering - 1.0.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Mon Dec 19 2016 Miro Hrončok - 1.0.1-2 +- Rebuild for Python 3.6 + +* Tue Oct 25 2016 Kevin Fenzi - 1.0.1-1 +- Update to 1.0.1. Fixes bug #1387885 + +* Sat Sep 03 2016 Kevin Fenzi - 1.0.0-1 +- Update to 1.0.0. Fixes bug #1372330 + +* Tue Jul 19 2016 Fedora Release Engineering - 0.9.0-4 +- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages + +* Wed Jun 29 2016 Igor Gnatenko - 0.9.0-3 +- Modernize spec to comply with new packaging guidelines + +* Thu May 26 2016 Lorenzo Gil Sanchez - 0.9.0-2 +- Fixed Source0 to point to new PyPi predictable URL format + +* Thu May 5 2016 Lorenzo Gil Sanchez - 0.9.0-1 +- Update to 0.9.0 +- Fixed 2 warnings from fedpkg lint + +* Sun Apr 10 2016 Kevin Fenzi - 0.9.0b1-1 +- Update to 0.9.0b1. Fixes bug #1325661 + +* Mon Mar 21 2016 Lorenzo Gil Sanchez - 0.9.0b0-1 +- New (beta) version + +* Thu Feb 04 2016 Fedora Release Engineering - 0.8.10-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Tue Nov 10 2015 Fedora Release Engineering - 0.8.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5 + +* Wed Sep 16 2015 Ralph Bean - 0.8.10-1 +- new version + +* Thu Jun 18 2015 Fedora Release Engineering - 0.8.9-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Mon Apr 27 2015 Ralph Bean - 0.8.9-5 +- Conditionalize the python3 subpackage. + +* Mon Jul 14 2014 Lorenzo Gil Sanchez - 0.8.9-4 +- Fix comment in description section about versioned directory for docs +- Use __python2 macro instead of __python + +* Sat Jun 14 2014 Lorenzo Gil Sanchez - 0.8.9-3 +- Run the tests with nose to avoid unclosed socket errors + +* Sun Jun 08 2014 Fedora Release Engineering - 0.8.9-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Sun May 25 2014 Lorenzo Gil Sanchez - 0.8.9-1 +- Update to upstream + +* Wed May 14 2014 Bohuslav Kabrda - 0.8.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4 + +* Sun Dec 22 2013 Lorenzo Gil Sanchez - 0.8.8-1 +- Update to upstream + +* Sun Dec 8 2013 Lorenzo Gil Sanchez - 0.8.5-3 +- Remove python3 dependency on the python-waitress python2 package + +* Wed Aug 7 2013 Lorenzo Gil Sanchez - 0.8.5-2 +- Update description to use the new Fedora 20 _pkgdocdir macro, which + is also defined for backwards cmompatibility + +* Wed Jul 31 2013 Lorenzo Gil Sanchez - 0.8.5-1 +- Update to upstream + +* Sat Jul 6 2013 Lorenzo Gil Sanchez - 0.8.4-1 +- Update to upstream +- Added waitress-serve as a binary executable in /usr/bin + +* Sun May 12 2013 Lorenzo Gil Sanchez - 0.8.3-1 +- Update to upstream + +* Thu Feb 14 2013 Fedora Release Engineering - 0.8.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Wed Nov 28 2012 Lorenzo Gil Sanchez - 0.8.2-3 +- Use version macro in the Source0 to avoid duplicates +* Sat Nov 24 2012 Lorenzo Gil Sanchez - 0.8.2-2 +- Point to the local docs directory in the description for the documentation +- Remove py3dir before copying the files to it in the prep phase +- Remove -O1 in the build phase as it is not used anymore in the Fedora + Packaging guidelines +- Remove files rpmlint doesn't like +* Mon Nov 19 2012 Lorenzo Gil Sanchez - 0.8.2-1 +- New package.