From 02fe4b4a7ec1c75184b841ce425c4449c2fd12e7 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 25 Jul 2017 16:46:37 +0000 Subject: [PATCH 01/21] Initial setup of the repo --- .gitignore | 0 sources | 0 2 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 .gitignore create mode 100644 sources diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/sources b/sources new file mode 100644 index 0000000..e69de29 From ce9858b4cad651bbc791e4cda0005503e07a23ce Mon Sep 17 00:00:00 2001 From: Randy Barlow Date: Tue, 25 Jul 2017 12:47:16 -0400 Subject: [PATCH 02/21] Initial import (#1474930). --- .gitignore | 1 + python-webencodings.spec | 104 +++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 106 insertions(+) create mode 100644 python-webencodings.spec diff --git a/.gitignore b/.gitignore index e69de29..6c17c7a 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/webencodings-0.5.1.tar.gz diff --git a/python-webencodings.spec b/python-webencodings.spec new file mode 100644 index 0000000..6e5b93b --- /dev/null +++ b/python-webencodings.spec @@ -0,0 +1,104 @@ +%global srcname webencodings +%global desc This is a Python implementation of the WHATWG Encoding standard. + + +Name: python-%{srcname} +Version: 0.5.1 +Release: 1%{?dist} +BuildArch: noarch + +License: BSD +Summary: Character encoding for the web +URL: https://github.com/gsnedders/python-%{srcname} +Source0: %{url}/archive/v%{version}/%{srcname}-%{version}.tar.gz + +BuildRequires: python2-devel +BuildRequires: python2-pytest +BuildRequires: python3-devel +BuildRequires: python3-pytest +BuildRequires: python3-sphinx + + +%description +%{desc} + + +%package doc +Summary: Documentation for python-webencodings + + +%description doc +Documentation for python-webencodings. + + +%package -n python2-%{srcname} +Summary: %{summary} + +%{?python_provide:%python_provide python2-%{srcname}} + +Requires: python2 + + +%description -n python2-%{srcname} +%{desc} + + +%package -n python3-%{srcname} +Summary: %{summary} + +%{?python_provide:%python_provide python3-%{srcname}} + +Requires: python3 + + +%description -n python3-%{srcname} +%{desc} + + +%prep +%autosetup -n python-%{srcname}-%{version} + + +%build +%py2_build +%py3_build + +sphinx-build-3 docs docs/_build + +# Remove unneeded build artifacts. +rm -rf docs/_build/.buildinfo +rm -rf docs/_build/.doctrees + + +%install +%py2_install +%py3_install + + +%check +py.test-2 +py.test-3 + + +%files doc +%license LICENSE +%doc docs/_build + + +%files -n python2-%{srcname} +%license LICENSE +%doc README.rst +%{python2_sitelib}/%{srcname} +%{python2_sitelib}/*.egg-info + + +%files -n python3-%{srcname} +%license LICENSE +%doc README.rst +%{python3_sitelib}/%{srcname} +%{python3_sitelib}/*.egg-info + + +%changelog +* Tue Jul 25 2017 Randy Barlow - 0.5.1-1 +- Initial release diff --git a/sources b/sources index e69de29..fa9fa7a 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +SHA512 (webencodings-0.5.1.tar.gz) = c5cb34f35fb5bc7ffb88c19eb3262dedbf6231c0ee2871dccbc0f9497193d8209fc20703d451a2bb41a5ff913e63abf7481f7a8f9886c953724e9cf71c34cb74 From 13257b0ea44c3ba916ef19acec3a37f83ddd9725 Mon Sep 17 00:00:00 2001 From: Randy Barlow Date: Tue, 25 Jul 2017 12:59:07 -0400 Subject: [PATCH 03/21] Set the PYTHONPATH when building the docs. Signed-off-by: Randy Barlow --- python-webencodings.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/python-webencodings.spec b/python-webencodings.spec index 6e5b93b..05241da 100644 --- a/python-webencodings.spec +++ b/python-webencodings.spec @@ -4,7 +4,7 @@ Name: python-%{srcname} Version: 0.5.1 -Release: 1%{?dist} +Release: 2%{?dist} BuildArch: noarch License: BSD @@ -63,7 +63,7 @@ Requires: python3 %py2_build %py3_build -sphinx-build-3 docs docs/_build +PYTHONPATH=. sphinx-build-3 docs docs/_build # Remove unneeded build artifacts. rm -rf docs/_build/.buildinfo @@ -100,5 +100,8 @@ py.test-3 %changelog +* Tue Jul 25 2017 Randy Barlow - 0.5.1-2 +- Set the PYTHONPATH when building docs so the library is found. + * Tue Jul 25 2017 Randy Barlow - 0.5.1-1 - Initial release From f8288667de0816e87c5baddf4fad6c7a8288bf53 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 27 Jul 2017 12:15:01 +0000 Subject: [PATCH 04/21] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- python-webencodings.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-webencodings.spec b/python-webencodings.spec index 05241da..3a4ee95 100644 --- a/python-webencodings.spec +++ b/python-webencodings.spec @@ -4,7 +4,7 @@ Name: python-%{srcname} Version: 0.5.1 -Release: 2%{?dist} +Release: 3%{?dist} BuildArch: noarch License: BSD @@ -100,6 +100,9 @@ py.test-3 %changelog +* Thu Jul 27 2017 Fedora Release Engineering - 0.5.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Tue Jul 25 2017 Randy Barlow - 0.5.1-2 - Set the PYTHONPATH when building docs so the library is found. From 07e781ee6f16f636e2cb02a2c7fd0aa3afc2ef26 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 9 Feb 2018 11:37:10 +0000 Subject: [PATCH 05/21] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- python-webencodings.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-webencodings.spec b/python-webencodings.spec index 3a4ee95..d72cd5b 100644 --- a/python-webencodings.spec +++ b/python-webencodings.spec @@ -4,7 +4,7 @@ Name: python-%{srcname} Version: 0.5.1 -Release: 3%{?dist} +Release: 4%{?dist} BuildArch: noarch License: BSD @@ -100,6 +100,9 @@ py.test-3 %changelog +* Fri Feb 09 2018 Fedora Release Engineering - 0.5.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Thu Jul 27 2017 Fedora Release Engineering - 0.5.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild From f6194dff8a351eeadd69b5b1eec621ebf7503644 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Sat, 16 Jun 2018 10:00:02 +0200 Subject: [PATCH 06/21] Rebuilt for Python 3.7 --- python-webencodings.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-webencodings.spec b/python-webencodings.spec index d72cd5b..6aaedc9 100644 --- a/python-webencodings.spec +++ b/python-webencodings.spec @@ -4,7 +4,7 @@ Name: python-%{srcname} Version: 0.5.1 -Release: 4%{?dist} +Release: 5%{?dist} BuildArch: noarch License: BSD @@ -100,6 +100,9 @@ py.test-3 %changelog +* Sat Jun 16 2018 Miro Hrončok - 0.5.1-5 +- Rebuilt for Python 3.7 + * Fri Feb 09 2018 Fedora Release Engineering - 0.5.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild From a4f7d22a837ae375d53b18c6287108072a31bbad Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 14 Jul 2018 02:36:26 +0000 Subject: [PATCH 07/21] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- python-webencodings.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-webencodings.spec b/python-webencodings.spec index 6aaedc9..248b779 100644 --- a/python-webencodings.spec +++ b/python-webencodings.spec @@ -4,7 +4,7 @@ Name: python-%{srcname} Version: 0.5.1 -Release: 5%{?dist} +Release: 6%{?dist} BuildArch: noarch License: BSD @@ -100,6 +100,9 @@ py.test-3 %changelog +* Sat Jul 14 2018 Fedora Release Engineering - 0.5.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Sat Jun 16 2018 Miro Hrončok - 0.5.1-5 - Rebuilt for Python 3.7 From 28c27a9c9ef083d5dcf90095ba8d04061939d644 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 2 Feb 2019 10:01:01 +0000 Subject: [PATCH 08/21] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- python-webencodings.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-webencodings.spec b/python-webencodings.spec index 248b779..fe56394 100644 --- a/python-webencodings.spec +++ b/python-webencodings.spec @@ -4,7 +4,7 @@ Name: python-%{srcname} Version: 0.5.1 -Release: 6%{?dist} +Release: 7%{?dist} BuildArch: noarch License: BSD @@ -100,6 +100,9 @@ py.test-3 %changelog +* Sat Feb 02 2019 Fedora Release Engineering - 0.5.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Sat Jul 14 2018 Fedora Release Engineering - 0.5.1-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild From b132dd7a5e7a647db0ec1ae14cca959ed2db1d60 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 26 Jul 2019 17:03:27 +0000 Subject: [PATCH 09/21] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- python-webencodings.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-webencodings.spec b/python-webencodings.spec index fe56394..ef72ff2 100644 --- a/python-webencodings.spec +++ b/python-webencodings.spec @@ -4,7 +4,7 @@ Name: python-%{srcname} Version: 0.5.1 -Release: 7%{?dist} +Release: 8%{?dist} BuildArch: noarch License: BSD @@ -100,6 +100,9 @@ py.test-3 %changelog +* Fri Jul 26 2019 Fedora Release Engineering - 0.5.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Sat Feb 02 2019 Fedora Release Engineering - 0.5.1-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild From dbf5e9574ed3aaa7cae302be76d929b9b57b436b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Fri, 16 Aug 2019 13:47:31 +0200 Subject: [PATCH 10/21] Rebuilt for Python 3.8 --- python-webencodings.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-webencodings.spec b/python-webencodings.spec index ef72ff2..e3ea1a6 100644 --- a/python-webencodings.spec +++ b/python-webencodings.spec @@ -4,7 +4,7 @@ Name: python-%{srcname} Version: 0.5.1 -Release: 8%{?dist} +Release: 9%{?dist} BuildArch: noarch License: BSD @@ -100,6 +100,9 @@ py.test-3 %changelog +* Fri Aug 16 2019 Miro Hrončok - 0.5.1-9 +- Rebuilt for Python 3.8 + * Fri Jul 26 2019 Fedora Release Engineering - 0.5.1-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild From 7f3df300a757e029d49245217694b309eb7b9927 Mon Sep 17 00:00:00 2001 From: Randy Barlow Date: Tue, 17 Sep 2019 16:06:11 -0400 Subject: [PATCH 11/21] Drop python2-webencodings (#1752405) Signed-off-by: Randy Barlow --- python-webencodings.spec | 29 ++++------------------------- 1 file changed, 4 insertions(+), 25 deletions(-) diff --git a/python-webencodings.spec b/python-webencodings.spec index e3ea1a6..b5a3ad1 100644 --- a/python-webencodings.spec +++ b/python-webencodings.spec @@ -4,7 +4,7 @@ Name: python-%{srcname} Version: 0.5.1 -Release: 9%{?dist} +Release: 10%{?dist} BuildArch: noarch License: BSD @@ -12,8 +12,6 @@ Summary: Character encoding for the web URL: https://github.com/gsnedders/python-%{srcname} Source0: %{url}/archive/v%{version}/%{srcname}-%{version}.tar.gz -BuildRequires: python2-devel -BuildRequires: python2-pytest BuildRequires: python3-devel BuildRequires: python3-pytest BuildRequires: python3-sphinx @@ -31,18 +29,6 @@ Summary: Documentation for python-webencodings Documentation for python-webencodings. -%package -n python2-%{srcname} -Summary: %{summary} - -%{?python_provide:%python_provide python2-%{srcname}} - -Requires: python2 - - -%description -n python2-%{srcname} -%{desc} - - %package -n python3-%{srcname} Summary: %{summary} @@ -60,7 +46,6 @@ Requires: python3 %build -%py2_build %py3_build PYTHONPATH=. sphinx-build-3 docs docs/_build @@ -71,12 +56,10 @@ rm -rf docs/_build/.doctrees %install -%py2_install %py3_install %check -py.test-2 py.test-3 @@ -85,13 +68,6 @@ py.test-3 %doc docs/_build -%files -n python2-%{srcname} -%license LICENSE -%doc README.rst -%{python2_sitelib}/%{srcname} -%{python2_sitelib}/*.egg-info - - %files -n python3-%{srcname} %license LICENSE %doc README.rst @@ -100,6 +76,9 @@ py.test-3 %changelog +* Tue Sep 17 2019 Randy Barlow - 0.5.1-10 +- Drop python2-webencodings (#1752405). + * Fri Aug 16 2019 Miro Hrončok - 0.5.1-9 - Rebuilt for Python 3.8 From 2e5c46b3342b892f66b71c50be21f32d4cb26f26 Mon Sep 17 00:00:00 2001 From: Randy Barlow Date: Wed, 18 Sep 2019 12:46:59 -0400 Subject: [PATCH 12/21] Drop old changelog entries Signed-off-by: Randy Barlow --- python-webencodings.spec | 9 --------- 1 file changed, 9 deletions(-) diff --git a/python-webencodings.spec b/python-webencodings.spec index b5a3ad1..79ad773 100644 --- a/python-webencodings.spec +++ b/python-webencodings.spec @@ -96,12 +96,3 @@ py.test-3 * Fri Feb 09 2018 Fedora Release Engineering - 0.5.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild - -* Thu Jul 27 2017 Fedora Release Engineering - 0.5.1-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild - -* Tue Jul 25 2017 Randy Barlow - 0.5.1-2 -- Set the PYTHONPATH when building docs so the library is found. - -* Tue Jul 25 2017 Randy Barlow - 0.5.1-1 -- Initial release From 420275092f960a5dd2a7aa32d7e3695bd2beb9ce Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 30 Jan 2020 16:10:38 +0000 Subject: [PATCH 13/21] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- python-webencodings.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-webencodings.spec b/python-webencodings.spec index 79ad773..3d06d12 100644 --- a/python-webencodings.spec +++ b/python-webencodings.spec @@ -4,7 +4,7 @@ Name: python-%{srcname} Version: 0.5.1 -Release: 10%{?dist} +Release: 11%{?dist} BuildArch: noarch License: BSD @@ -76,6 +76,9 @@ py.test-3 %changelog +* Thu Jan 30 2020 Fedora Release Engineering - 0.5.1-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Tue Sep 17 2019 Randy Barlow - 0.5.1-10 - Drop python2-webencodings (#1752405). From 69355a53ebe0c981894ee44f557a460de7d6f887 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Sat, 23 May 2020 08:42:17 +0200 Subject: [PATCH 14/21] Rebuilt for Python 3.9 --- python-webencodings.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-webencodings.spec b/python-webencodings.spec index 3d06d12..e424913 100644 --- a/python-webencodings.spec +++ b/python-webencodings.spec @@ -4,7 +4,7 @@ Name: python-%{srcname} Version: 0.5.1 -Release: 11%{?dist} +Release: 12%{?dist} BuildArch: noarch License: BSD @@ -76,6 +76,9 @@ py.test-3 %changelog +* Sat May 23 2020 Miro Hrončok - 0.5.1-12 +- Rebuilt for Python 3.9 + * Thu Jan 30 2020 Fedora Release Engineering - 0.5.1-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild From 0e1883972d0f298253debf1f6501da2e98f6e59f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 29 Jul 2020 04:36:34 +0000 Subject: [PATCH 15/21] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- python-webencodings.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-webencodings.spec b/python-webencodings.spec index e424913..e8f1b0e 100644 --- a/python-webencodings.spec +++ b/python-webencodings.spec @@ -4,7 +4,7 @@ Name: python-%{srcname} Version: 0.5.1 -Release: 12%{?dist} +Release: 13%{?dist} BuildArch: noarch License: BSD @@ -76,6 +76,9 @@ py.test-3 %changelog +* Wed Jul 29 2020 Fedora Release Engineering - 0.5.1-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Sat May 23 2020 Miro Hrončok - 0.5.1-12 - Rebuilt for Python 3.9 From 5e060f4d03e3bdfd75bbf38196253d264217799d Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 27 Jan 2021 14:10:11 +0000 Subject: [PATCH 16/21] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- python-webencodings.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-webencodings.spec b/python-webencodings.spec index e8f1b0e..464489d 100644 --- a/python-webencodings.spec +++ b/python-webencodings.spec @@ -4,7 +4,7 @@ Name: python-%{srcname} Version: 0.5.1 -Release: 13%{?dist} +Release: 14%{?dist} BuildArch: noarch License: BSD @@ -76,6 +76,9 @@ py.test-3 %changelog +* Wed Jan 27 2021 Fedora Release Engineering - 0.5.1-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Wed Jul 29 2020 Fedora Release Engineering - 0.5.1-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From e16d2dc492ba59db1774aae16137b0e1830faa2e Mon Sep 17 00:00:00 2001 From: Tomas Hrnciar Date: Mon, 19 Apr 2021 13:18:32 +0200 Subject: [PATCH 17/21] BuildRequire setuptools explicitly See https://fedoraproject.org/wiki/Changes/Reduce_dependencies_on_python3-setuptools --- python-webencodings.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/python-webencodings.spec b/python-webencodings.spec index 464489d..b9de915 100644 --- a/python-webencodings.spec +++ b/python-webencodings.spec @@ -13,6 +13,7 @@ URL: https://github.com/gsnedders/python-%{srcname} Source0: %{url}/archive/v%{version}/%{srcname}-%{version}.tar.gz BuildRequires: python3-devel +BuildRequires: python3-setuptools BuildRequires: python3-pytest BuildRequires: python3-sphinx From ff070e111f95f35693ef9c5fc661c24f1fe1789a Mon Sep 17 00:00:00 2001 From: Python Maint Date: Thu, 3 Jun 2021 12:11:28 +0200 Subject: [PATCH 18/21] Rebuilt for Python 3.10 --- python-webencodings.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-webencodings.spec b/python-webencodings.spec index b9de915..84d1074 100644 --- a/python-webencodings.spec +++ b/python-webencodings.spec @@ -4,7 +4,7 @@ Name: python-%{srcname} Version: 0.5.1 -Release: 14%{?dist} +Release: 15%{?dist} BuildArch: noarch License: BSD @@ -77,6 +77,9 @@ py.test-3 %changelog +* Thu Jun 03 2021 Python Maint - 0.5.1-15 +- Rebuilt for Python 3.10 + * Wed Jan 27 2021 Fedora Release Engineering - 0.5.1-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild From a9d6355df2d424cc2f68a68e05b137d867466ab1 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 23 Jul 2021 10:13:46 +0000 Subject: [PATCH 19/21] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- python-webencodings.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-webencodings.spec b/python-webencodings.spec index 84d1074..7cea8bd 100644 --- a/python-webencodings.spec +++ b/python-webencodings.spec @@ -4,7 +4,7 @@ Name: python-%{srcname} Version: 0.5.1 -Release: 15%{?dist} +Release: 16%{?dist} BuildArch: noarch License: BSD @@ -77,6 +77,9 @@ py.test-3 %changelog +* Fri Jul 23 2021 Fedora Release Engineering - 0.5.1-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Thu Jun 03 2021 Python Maint - 0.5.1-15 - Rebuilt for Python 3.10 From 4639f5b65474119cc6ae956ea13ab541afb84eac Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 21 Jan 2022 16:27:38 +0000 Subject: [PATCH 20/21] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- python-webencodings.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-webencodings.spec b/python-webencodings.spec index 7cea8bd..a0bd0cd 100644 --- a/python-webencodings.spec +++ b/python-webencodings.spec @@ -4,7 +4,7 @@ Name: python-%{srcname} Version: 0.5.1 -Release: 16%{?dist} +Release: 17%{?dist} BuildArch: noarch License: BSD @@ -77,6 +77,9 @@ py.test-3 %changelog +* Fri Jan 21 2022 Fedora Release Engineering - 0.5.1-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Fri Jul 23 2021 Fedora Release Engineering - 0.5.1-16 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild From 7f9456707db53126868341cdf1e658fb54e50643 Mon Sep 17 00:00:00 2001 From: MSVSphere Packaging Team Date: Tue, 31 Oct 2023 00:08:57 +0300 Subject: [PATCH 21/21] Remove unnecessary files --- sources | 1 - 1 file changed, 1 deletion(-) delete mode 100644 sources diff --git a/sources b/sources deleted file mode 100644 index fa9fa7a..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -SHA512 (webencodings-0.5.1.tar.gz) = c5cb34f35fb5bc7ffb88c19eb3262dedbf6231c0ee2871dccbc0f9497193d8209fc20703d451a2bb41a5ff913e63abf7481f7a8f9886c953724e9cf71c34cb74