From 0d169ad87fbbb43e85f80417253a7b6f7cca8469 Mon Sep 17 00:00:00 2001 From: Gwyn Ciesla Date: Wed, 3 Apr 2019 19:16:01 +0000 Subject: [PATCH 01/37] Added the README --- README.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..6810fdb --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# python-jaraco-packaging + +The python-jaraco-packaging package \ No newline at end of file From bf8d9dd1c2c683101a49f8de29a73c4b08edf9d2 Mon Sep 17 00:00:00 2001 From: Dan Radez Date: Wed, 3 Apr 2019 15:23:01 -0400 Subject: [PATCH 02/37] initial spec file --- .gitignore | 1 + python-jaraco-packaging.spec | 83 ++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 85 insertions(+) create mode 100644 .gitignore create mode 100644 python-jaraco-packaging.spec create mode 100644 sources diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2d2c638 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/jaraco.packaging-6.1.tar.gz diff --git a/python-jaraco-packaging.spec b/python-jaraco-packaging.spec new file mode 100644 index 0000000..badb53f --- /dev/null +++ b/python-jaraco-packaging.spec @@ -0,0 +1,83 @@ +# Created by pyp2rpm-3.2.2 +%global pypi_name jaraco.packaging +%global pkg_name jaraco-packaging +# This package is interdependant on rst-linker to build docs +# will build both with out docs and add docs in later +%global with_docs 0 + +Name: python-%{pkg_name} +Version: 6.1 +Release: 1%{?dist} +Summary: Tools to supplement packaging Python releases + +License: MIT +URL: https://github.com/jaraco/jaraco.packaging +Source0: https://files.pythonhosted.org/packages/source/j/%{pypi_name}/%{pypi_name}-%{version}.tar.gz +BuildArch: noarch + +Requires: python3-rst-linker +Requires: python3-six >= 1.4 +Requires: python3-setuptools + +BuildRequires: python3-devel +BuildRequires: python3-setuptools_scm >= 1.15.0 +BuildRequires: python3-setuptools +BuildRequires: python3-six >= 1.4 + +%if 0%{?with_docs} +BuildRequires: python3-sphinx +BuildRequires: python3-rst-linker +%endif + +%description + Tools for packaging.dependency_tree A dist-utils command for reporting the +dependency tree as resolved by setup-tools. Use after installing a package.show +A dist-utils command for reporting the attributes of a distribution, such as the +version or author name. + +%if 0%{?with_docs} +%package -n python-%{pkg_name}-doc +Summary: jaraco.packaging documentation +%description -n python-%{pkg_name}-doc +Documentation for jaraco.packaging +%endif + +%prep +%autosetup -n %{pypi_name}-%{version} +# Remove bundled egg-info +rm -rf %{pypi_name}.egg-info + +%build +%py3_build +%if 0%{?with_docs} +# generate html docs +# This package requires itself to build docs :/ +PYTHONPATH=./ sphinx-build docs html +# remove the sphinx-build leftovers +rm -rf html/.{doctrees,buildinfo} +%endif + +%install +%py3_install + +%check +%{__python3} setup.py test + +%files -n python-%{pkg_name} +%license LICENSE +%doc README.rst +%{_bindir}/upload-package +%{_bindir}/upload-package +%{_bindir}/dependency-tree +%{python3_sitelib}/jaraco +%{python3_sitelib}/%{pypi_name}-%{version}-py?.?.egg-info + +%if 0%{?with_docs} +%files -n python-%{pkg_name}-doc +%license LICENSE +%doc html +%endif + +%changelog +* Tue Apr 02 2019 Dan Radez - 6.1-1 +- Initial package. diff --git a/sources b/sources new file mode 100644 index 0000000..36ff3d3 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (jaraco.packaging-6.1.tar.gz) = a84c71bd880879f172e6527987e9ffa681da28803112a0195fb21153cb6cd1b3d5c00a6d21c562d7c5542349f335bea4a349fd22662f22dd7bf9bef7b6b0f7d8 From 0d50cbb78d344f176085c766e870443e784c38b8 Mon Sep 17 00:00:00 2001 From: Dan Radez Date: Fri, 5 Apr 2019 11:00:57 -0400 Subject: [PATCH 03/37] adding py3 subpackage --- python-jaraco-packaging.spec | 43 +++++++++++++++++++++--------------- 1 file changed, 25 insertions(+), 18 deletions(-) diff --git a/python-jaraco-packaging.spec b/python-jaraco-packaging.spec index badb53f..ee643da 100644 --- a/python-jaraco-packaging.spec +++ b/python-jaraco-packaging.spec @@ -3,11 +3,11 @@ %global pkg_name jaraco-packaging # This package is interdependant on rst-linker to build docs # will build both with out docs and add docs in later -%global with_docs 0 +%bcond_with docs Name: python-%{pkg_name} Version: 6.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Tools to supplement packaging Python releases License: MIT @@ -15,27 +15,32 @@ URL: https://github.com/jaraco/jaraco.packaging Source0: https://files.pythonhosted.org/packages/source/j/%{pypi_name}/%{pypi_name}-%{version}.tar.gz BuildArch: noarch -Requires: python3-rst-linker -Requires: python3-six >= 1.4 -Requires: python3-setuptools +%description + Tools for packaging.dependency_tree A dist-utils command for reporting the +dependency tree as resolved by setup-tools. Use after installing a package.show +A dist-utils command for reporting the attributes of a distribution, such as the +version or author name. +%package -n python3-%{pkg_name} +Summary: %{summary} +BuildRequires: python3-devel BuildRequires: python3-devel -BuildRequires: python3-setuptools_scm >= 1.15.0 BuildRequires: python3-setuptools +BuildRequires: python3-setuptools_scm >= 1.15.0 BuildRequires: python3-six >= 1.4 +%{?python_provide:%python_provide python3-%{pkg_name}} + +%description -n python3-%{pkg_name} +%{description} -%if 0%{?with_docs} +Requires: python3-rst-linker +Requires: python3-six >= 1.4 +Requires: python3-setuptools + +%if %{with docs} BuildRequires: python3-sphinx BuildRequires: python3-rst-linker -%endif - -%description - Tools for packaging.dependency_tree A dist-utils command for reporting the -dependency tree as resolved by setup-tools. Use after installing a package.show -A dist-utils command for reporting the attributes of a distribution, such as the -version or author name. -%if 0%{?with_docs} %package -n python-%{pkg_name}-doc Summary: jaraco.packaging documentation %description -n python-%{pkg_name}-doc @@ -49,7 +54,7 @@ rm -rf %{pypi_name}.egg-info %build %py3_build -%if 0%{?with_docs} +%if %{with docs} # generate html docs # This package requires itself to build docs :/ PYTHONPATH=./ sphinx-build docs html @@ -63,7 +68,7 @@ rm -rf html/.{doctrees,buildinfo} %check %{__python3} setup.py test -%files -n python-%{pkg_name} +%files -n python3-%{pkg_name} %license LICENSE %doc README.rst %{_bindir}/upload-package @@ -72,12 +77,14 @@ rm -rf html/.{doctrees,buildinfo} %{python3_sitelib}/jaraco %{python3_sitelib}/%{pypi_name}-%{version}-py?.?.egg-info -%if 0%{?with_docs} +%if %{with docs} %files -n python-%{pkg_name}-doc %license LICENSE %doc html %endif %changelog +* Fri Apr 05 2019 Dan Radez - 6.1-2 +- adding py3 subpackage. * Tue Apr 02 2019 Dan Radez - 6.1-1 - Initial package. From 28874d9f7af9b985bac7d122ff24cae4fb42e8cb Mon Sep 17 00:00:00 2001 From: Dan Radez Date: Fri, 5 Apr 2019 11:27:37 -0400 Subject: [PATCH 04/37] adding python3dist() --- python-jaraco-packaging.spec | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/python-jaraco-packaging.spec b/python-jaraco-packaging.spec index ee643da..1348127 100644 --- a/python-jaraco-packaging.spec +++ b/python-jaraco-packaging.spec @@ -24,22 +24,21 @@ version or author name. %package -n python3-%{pkg_name} Summary: %{summary} BuildRequires: python3-devel -BuildRequires: python3-devel -BuildRequires: python3-setuptools +BuildRequires: python3dist(setuptools) BuildRequires: python3-setuptools_scm >= 1.15.0 -BuildRequires: python3-six >= 1.4 +BuildRequires: python3dist(six) >= 1.4 %{?python_provide:%python_provide python3-%{pkg_name}} %description -n python3-%{pkg_name} %{description} -Requires: python3-rst-linker -Requires: python3-six >= 1.4 -Requires: python3-setuptools +Requires: python3dist(rst-linker) +Requires: python3dist(six) >= 1.4 +Requires: python3dist(setuptools) %if %{with docs} -BuildRequires: python3-sphinx -BuildRequires: python3-rst-linker +BuildRequires: python3dist(sphinx) +BuildRequires: python3dist(rst-linker) %package -n python-%{pkg_name}-doc Summary: jaraco.packaging documentation From cf764ec0831e23276891cf03fcda408f597b6fab Mon Sep 17 00:00:00 2001 From: Dan Radez Date: Fri, 5 Apr 2019 15:09:28 -0400 Subject: [PATCH 05/37] adding a python3-jaraco subpackage --- python-jaraco-packaging.spec | 24 ++++++++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/python-jaraco-packaging.spec b/python-jaraco-packaging.spec index 1348127..ba7f9ac 100644 --- a/python-jaraco-packaging.spec +++ b/python-jaraco-packaging.spec @@ -7,7 +7,7 @@ Name: python-%{pkg_name} Version: 6.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Tools to supplement packaging Python releases License: MIT @@ -21,9 +21,17 @@ dependency tree as resolved by setup-tools. Use after installing a package.show A dist-utils command for reporting the attributes of a distribution, such as the version or author name. +%package -n python3-jaraco +Summary: A Parent package for jaraco's parent dir and init file. +BuildRequires: python3-devel +%{?python_provide:%python_provide python3-jaraco} + +%description -n python3-jaraco +A Parent package for jaraco's parent dir and init file. + %package -n python3-%{pkg_name} Summary: %{summary} -BuildRequires: python3-devel +#BuildRequires: python3-devel BuildRequires: python3dist(setuptools) BuildRequires: python3-setuptools_scm >= 1.15.0 BuildRequires: python3dist(six) >= 1.4 @@ -33,6 +41,7 @@ BuildRequires: python3dist(six) >= 1.4 %{description} Requires: python3dist(rst-linker) +Requires: python3dist(jaraco) Requires: python3dist(six) >= 1.4 Requires: python3dist(setuptools) @@ -67,13 +76,18 @@ rm -rf html/.{doctrees,buildinfo} %check %{__python3} setup.py test +%files -n python3-jaraco +%license LICENSE +%doc README.rst +%{python3_sitelib}/jaraco +%exclude %{python3_sitelib}/jaraco/packaging + %files -n python3-%{pkg_name} %license LICENSE %doc README.rst %{_bindir}/upload-package -%{_bindir}/upload-package %{_bindir}/dependency-tree -%{python3_sitelib}/jaraco +%{python3_sitelib}/jaraco/packaging %{python3_sitelib}/%{pypi_name}-%{version}-py?.?.egg-info %if %{with docs} @@ -83,6 +97,8 @@ rm -rf html/.{doctrees,buildinfo} %endif %changelog +* Fri Apr 05 2019 Dan Radez - 6.1-3 +- adding python-jaraco subpackage. * Fri Apr 05 2019 Dan Radez - 6.1-2 - adding py3 subpackage. * Tue Apr 02 2019 Dan Radez - 6.1-1 From 4d0c91a546b4729a9021d780b497880cc97610bb Mon Sep 17 00:00:00 2001 From: Dan Radez Date: Fri, 5 Apr 2019 15:20:44 -0400 Subject: [PATCH 06/37] fixing packaging requires --- python-jaraco-packaging.spec | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/python-jaraco-packaging.spec b/python-jaraco-packaging.spec index ba7f9ac..807f2b4 100644 --- a/python-jaraco-packaging.spec +++ b/python-jaraco-packaging.spec @@ -7,7 +7,7 @@ Name: python-%{pkg_name} Version: 6.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Tools to supplement packaging Python releases License: MIT @@ -31,7 +31,11 @@ A Parent package for jaraco's parent dir and init file. %package -n python3-%{pkg_name} Summary: %{summary} -#BuildRequires: python3-devel +Requires: python3dist(jaraco) +Requires: python3dist(rst-linker) +Requires: python3dist(six) >= 1.4 +Requires: python3dist(setuptools) + BuildRequires: python3dist(setuptools) BuildRequires: python3-setuptools_scm >= 1.15.0 BuildRequires: python3dist(six) >= 1.4 @@ -40,11 +44,6 @@ BuildRequires: python3dist(six) >= 1.4 %description -n python3-%{pkg_name} %{description} -Requires: python3dist(rst-linker) -Requires: python3dist(jaraco) -Requires: python3dist(six) >= 1.4 -Requires: python3dist(setuptools) - %if %{with docs} BuildRequires: python3dist(sphinx) BuildRequires: python3dist(rst-linker) @@ -97,6 +96,8 @@ rm -rf html/.{doctrees,buildinfo} %endif %changelog +* Fri Apr 05 2019 Dan Radez - 6.1-4 +- fixing python-jaraco-packaging requires. * Fri Apr 05 2019 Dan Radez - 6.1-3 - adding python-jaraco subpackage. * Fri Apr 05 2019 Dan Radez - 6.1-2 From 9d3652479279ee71791526140d870bcefc8badc0 Mon Sep 17 00:00:00 2001 From: Dan Radez Date: Fri, 5 Apr 2019 16:16:33 -0400 Subject: [PATCH 07/37] fixing the requires again --- python-jaraco-packaging.spec | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/python-jaraco-packaging.spec b/python-jaraco-packaging.spec index 807f2b4..64d2d5b 100644 --- a/python-jaraco-packaging.spec +++ b/python-jaraco-packaging.spec @@ -7,7 +7,7 @@ Name: python-%{pkg_name} Version: 6.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Tools to supplement packaging Python releases License: MIT @@ -16,7 +16,7 @@ Source0: https://files.pythonhosted.org/packages/source/j/%{pypi_name}/%{ BuildArch: noarch %description - Tools for packaging.dependency_tree A dist-utils command for reporting the +Tools for packaging.dependency_tree A dist-utils command for reporting the dependency tree as resolved by setup-tools. Use after installing a package.show A dist-utils command for reporting the attributes of a distribution, such as the version or author name. @@ -31,7 +31,7 @@ A Parent package for jaraco's parent dir and init file. %package -n python3-%{pkg_name} Summary: %{summary} -Requires: python3dist(jaraco) +Requires: python3-jaraco Requires: python3dist(rst-linker) Requires: python3dist(six) >= 1.4 Requires: python3dist(setuptools) @@ -42,7 +42,11 @@ BuildRequires: python3dist(six) >= 1.4 %{?python_provide:%python_provide python3-%{pkg_name}} %description -n python3-%{pkg_name} -%{description} +Tools for packaging.dependency_tree A dist-utils command for reporting the +dependency tree as resolved by setup-tools. Use after installing a package.show +A dist-utils command for reporting the attributes of a distribution, such as the +version or author name. + %if %{with docs} BuildRequires: python3dist(sphinx) @@ -96,11 +100,17 @@ rm -rf html/.{doctrees,buildinfo} %endif %changelog +* Fri Apr 05 2019 Dan Radez - 6.1-5 +- fixing python-jaraco-packaging requires... again + * Fri Apr 05 2019 Dan Radez - 6.1-4 - fixing python-jaraco-packaging requires. + * Fri Apr 05 2019 Dan Radez - 6.1-3 - adding python-jaraco subpackage. + * Fri Apr 05 2019 Dan Radez - 6.1-2 - adding py3 subpackage. + * Tue Apr 02 2019 Dan Radez - 6.1-1 - Initial package. From 0492c864df9b2729bbc71aaa8089cf47cb4d56f9 Mon Sep 17 00:00:00 2001 From: Dan Radez Date: Mon, 8 Apr 2019 11:12:42 -0400 Subject: [PATCH 08/37] updaing deps in prep to enable docs build --- python-jaraco-packaging.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/python-jaraco-packaging.spec b/python-jaraco-packaging.spec index 64d2d5b..94ec51a 100644 --- a/python-jaraco-packaging.spec +++ b/python-jaraco-packaging.spec @@ -7,7 +7,7 @@ Name: python-%{pkg_name} Version: 6.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Tools to supplement packaging Python releases License: MIT @@ -50,7 +50,7 @@ version or author name. %if %{with docs} BuildRequires: python3dist(sphinx) -BuildRequires: python3dist(rst-linker) +BuildRequires: python3-rst-linker %package -n python-%{pkg_name}-doc Summary: jaraco.packaging documentation @@ -100,6 +100,9 @@ rm -rf html/.{doctrees,buildinfo} %endif %changelog +* Mon Apr 08 2019 Dan Radez - 6.1-6 +- Updating doc reqs in prep to enable doc build + * Fri Apr 05 2019 Dan Radez - 6.1-5 - fixing python-jaraco-packaging requires... again From 8d48089d3201bd799b41b4b09a7a33508d785d69 Mon Sep 17 00:00:00 2001 From: Dan Radez Date: Mon, 8 Apr 2019 22:33:50 -0400 Subject: [PATCH 09/37] fixing egg info --- python-jaraco-packaging.spec | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/python-jaraco-packaging.spec b/python-jaraco-packaging.spec index 94ec51a..b3f9156 100644 --- a/python-jaraco-packaging.spec +++ b/python-jaraco-packaging.spec @@ -7,7 +7,7 @@ Name: python-%{pkg_name} Version: 6.1 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Tools to supplement packaging Python releases License: MIT @@ -49,11 +49,12 @@ version or author name. %if %{with docs} -BuildRequires: python3dist(sphinx) -BuildRequires: python3-rst-linker - %package -n python-%{pkg_name}-doc Summary: jaraco.packaging documentation + +BuildRequires: python3dist(sphinx) +BuildRequires: python3dist(rst-linker) + %description -n python-%{pkg_name}-doc Documentation for jaraco.packaging %endif @@ -62,6 +63,8 @@ Documentation for jaraco.packaging %autosetup -n %{pypi_name}-%{version} # Remove bundled egg-info rm -rf %{pypi_name}.egg-info +# rename package in setup to - +sed -i 's/name = %{pypi_name}/name = %{pkg_name}/' setup.cfg %build %py3_build @@ -91,7 +94,7 @@ rm -rf html/.{doctrees,buildinfo} %{_bindir}/upload-package %{_bindir}/dependency-tree %{python3_sitelib}/jaraco/packaging -%{python3_sitelib}/%{pypi_name}-%{version}-py?.?.egg-info +%{python3_sitelib}/jaraco_packaging-%{version}-py?.?.egg-info %if %{with docs} %files -n python-%{pkg_name}-doc @@ -100,6 +103,9 @@ rm -rf html/.{doctrees,buildinfo} %endif %changelog +* Mon Apr 08 2019 Dan Radez - 6.1-7 +- fixing egg info + * Mon Apr 08 2019 Dan Radez - 6.1-6 - Updating doc reqs in prep to enable doc build From 1fc7fe8fa672dc1f0a86d21f11dba6546006d8eb Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 26 Jul 2019 14:06:38 +0000 Subject: [PATCH 10/37] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- python-jaraco-packaging.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-jaraco-packaging.spec b/python-jaraco-packaging.spec index b3f9156..1783d3c 100644 --- a/python-jaraco-packaging.spec +++ b/python-jaraco-packaging.spec @@ -7,7 +7,7 @@ Name: python-%{pkg_name} Version: 6.1 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Tools to supplement packaging Python releases License: MIT @@ -103,6 +103,9 @@ rm -rf html/.{doctrees,buildinfo} %endif %changelog +* Fri Jul 26 2019 Fedora Release Engineering - 6.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Mon Apr 08 2019 Dan Radez - 6.1-7 - fixing egg info From 092bc4c89ac8843aefd9a323e4215ed9591919a3 Mon Sep 17 00:00:00 2001 From: Dan Radez Date: Fri, 16 Aug 2019 15:49:29 -0400 Subject: [PATCH 11/37] updating to 6.2 --- .gitignore | 1 + python-jaraco-packaging.spec | 9 +++++++-- sources | 1 + 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 2d2c638..9d6b68a 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /jaraco.packaging-6.1.tar.gz +/jaraco.packaging-6.2.tar.gz diff --git a/python-jaraco-packaging.spec b/python-jaraco-packaging.spec index 1783d3c..ecf7110 100644 --- a/python-jaraco-packaging.spec +++ b/python-jaraco-packaging.spec @@ -6,8 +6,8 @@ %bcond_with docs Name: python-%{pkg_name} -Version: 6.1 -Release: 8%{?dist} +Version: 6.2 +Release: 1%{?dist} Summary: Tools to supplement packaging Python releases License: MIT @@ -35,10 +35,12 @@ Requires: python3-jaraco Requires: python3dist(rst-linker) Requires: python3dist(six) >= 1.4 Requires: python3dist(setuptools) +Requires: python3dist(importlib-metadata) >= 0.18 BuildRequires: python3dist(setuptools) BuildRequires: python3-setuptools_scm >= 1.15.0 BuildRequires: python3dist(six) >= 1.4 +BuildRequires: python3dist(importlib-metadata) >= 0.18 %{?python_provide:%python_provide python3-%{pkg_name}} %description -n python3-%{pkg_name} @@ -103,6 +105,9 @@ rm -rf html/.{doctrees,buildinfo} %endif %changelog +* Fri Aug 16 2019 Dan Radez - 6.2-1 +- updating to 6.2 + * Fri Jul 26 2019 Fedora Release Engineering - 6.1-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild diff --git a/sources b/sources index 36ff3d3..bfa70e8 100644 --- a/sources +++ b/sources @@ -1 +1,2 @@ SHA512 (jaraco.packaging-6.1.tar.gz) = a84c71bd880879f172e6527987e9ffa681da28803112a0195fb21153cb6cd1b3d5c00a6d21c562d7c5542349f335bea4a349fd22662f22dd7bf9bef7b6b0f7d8 +SHA512 (jaraco.packaging-6.2.tar.gz) = f8496a9dccb29dbac24927b40bc29d472b8c6bdb939bfcacf70196130ba9c961747a8b75c63574352a8bfeb2a512eb849dfba3344e942f1338ea1538e0767f33 From a374f7d7a12e2917f1554403da9260cd04cd24d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Mon, 19 Aug 2019 10:42:10 +0200 Subject: [PATCH 12/37] Rebuilt for Python 3.8 --- python-jaraco-packaging.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-jaraco-packaging.spec b/python-jaraco-packaging.spec index ecf7110..6e2ca1c 100644 --- a/python-jaraco-packaging.spec +++ b/python-jaraco-packaging.spec @@ -7,7 +7,7 @@ Name: python-%{pkg_name} Version: 6.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Tools to supplement packaging Python releases License: MIT @@ -105,6 +105,9 @@ rm -rf html/.{doctrees,buildinfo} %endif %changelog +* Mon Aug 19 2019 Miro Hrončok - 6.2-2 +- Rebuilt for Python 3.8 + * Fri Aug 16 2019 Dan Radez - 6.2-1 - updating to 6.2 From aca64e70c6798bd50024762d4734e147e07dece7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Tue, 20 Aug 2019 00:25:18 +0200 Subject: [PATCH 13/37] Rebuilt for Python 3.8 --- python-jaraco-packaging.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-jaraco-packaging.spec b/python-jaraco-packaging.spec index 6e2ca1c..6eb87e0 100644 --- a/python-jaraco-packaging.spec +++ b/python-jaraco-packaging.spec @@ -7,7 +7,7 @@ Name: python-%{pkg_name} Version: 6.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Tools to supplement packaging Python releases License: MIT @@ -105,6 +105,9 @@ rm -rf html/.{doctrees,buildinfo} %endif %changelog +* Mon Aug 19 2019 Miro Hrončok - 6.2-3 +- Rebuilt for Python 3.8 + * Mon Aug 19 2019 Miro Hrončok - 6.2-2 - Rebuilt for Python 3.8 From 6d558b7da49dadf91b1433f258cf687768c80919 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Tue, 20 Aug 2019 11:05:42 +0200 Subject: [PATCH 14/37] Don't require importlib-metadata on Python 3.8+ --- python-jaraco-packaging.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/python-jaraco-packaging.spec b/python-jaraco-packaging.spec index 6eb87e0..a5247c0 100644 --- a/python-jaraco-packaging.spec +++ b/python-jaraco-packaging.spec @@ -35,12 +35,16 @@ Requires: python3-jaraco Requires: python3dist(rst-linker) Requires: python3dist(six) >= 1.4 Requires: python3dist(setuptools) -Requires: python3dist(importlib-metadata) >= 0.18 BuildRequires: python3dist(setuptools) BuildRequires: python3-setuptools_scm >= 1.15.0 BuildRequires: python3dist(six) >= 1.4 + +%if 0%{python3_version_nodots} < 38 +Requires: python3dist(importlib-metadata) >= 0.18 BuildRequires: python3dist(importlib-metadata) >= 0.18 +%endif + %{?python_provide:%python_provide python3-%{pkg_name}} %description -n python3-%{pkg_name} From de6248436bca5c4641dbbd1469cf21b9d4934461 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Tue, 20 Aug 2019 11:08:50 +0200 Subject: [PATCH 15/37] Don't fail when %python3_version_nodots is undefined --- python-jaraco-packaging.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python-jaraco-packaging.spec b/python-jaraco-packaging.spec index a5247c0..10f9809 100644 --- a/python-jaraco-packaging.spec +++ b/python-jaraco-packaging.spec @@ -40,7 +40,7 @@ BuildRequires: python3dist(setuptools) BuildRequires: python3-setuptools_scm >= 1.15.0 BuildRequires: python3dist(six) >= 1.4 -%if 0%{python3_version_nodots} < 38 +%if 0%{?python3_version_nodots} < 38 Requires: python3dist(importlib-metadata) >= 0.18 BuildRequires: python3dist(importlib-metadata) >= 0.18 %endif From decf9b0d55320f300fc8d280c9da88ccb8097836 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Tue, 20 Aug 2019 11:19:42 +0200 Subject: [PATCH 16/37] Switch conditional BR to a rich BR ...to avoid problems when the SRPM is built without Python macros. --- python-jaraco-packaging.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python-jaraco-packaging.spec b/python-jaraco-packaging.spec index 10f9809..feda9f2 100644 --- a/python-jaraco-packaging.spec +++ b/python-jaraco-packaging.spec @@ -42,8 +42,8 @@ BuildRequires: python3dist(six) >= 1.4 %if 0%{?python3_version_nodots} < 38 Requires: python3dist(importlib-metadata) >= 0.18 -BuildRequires: python3dist(importlib-metadata) >= 0.18 %endif +BuildRequires: (python3dist(importlib-metadata) >= 0.18 if python3 < 3.8) %{?python_provide:%python_provide python3-%{pkg_name}} From de3dc5538093e1680a49073a8fda4b9d50f513cf Mon Sep 17 00:00:00 2001 From: Dan Radez Date: Tue, 20 Aug 2019 10:39:05 -0400 Subject: [PATCH 17/37] remove the sed . to _ --- python-jaraco-packaging.spec | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/python-jaraco-packaging.spec b/python-jaraco-packaging.spec index feda9f2..6ff585d 100644 --- a/python-jaraco-packaging.spec +++ b/python-jaraco-packaging.spec @@ -7,7 +7,7 @@ Name: python-%{pkg_name} Version: 6.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Tools to supplement packaging Python releases License: MIT @@ -69,8 +69,6 @@ Documentation for jaraco.packaging %autosetup -n %{pypi_name}-%{version} # Remove bundled egg-info rm -rf %{pypi_name}.egg-info -# rename package in setup to - -sed -i 's/name = %{pypi_name}/name = %{pkg_name}/' setup.cfg %build %py3_build @@ -100,7 +98,7 @@ rm -rf html/.{doctrees,buildinfo} %{_bindir}/upload-package %{_bindir}/dependency-tree %{python3_sitelib}/jaraco/packaging -%{python3_sitelib}/jaraco_packaging-%{version}-py?.?.egg-info +%{python3_sitelib}/jaraco.packaging-%{version}-py?.?.egg-info %if %{with docs} %files -n python-%{pkg_name}-doc @@ -109,6 +107,9 @@ rm -rf html/.{doctrees,buildinfo} %endif %changelog +* Tue Aug 20 2019 Dan Radez - 6.2-4 +- removing the sed . to _ it's confusing and not needed + * Mon Aug 19 2019 Miro Hrončok - 6.2-3 - Rebuilt for Python 3.8 From 545c245b3dd0c36d2fcb3efb67fa688a05b35680 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Tue, 20 Aug 2019 16:58:44 +0200 Subject: [PATCH 18/37] Fix dependency on rst.linker --- python-jaraco-packaging.spec | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/python-jaraco-packaging.spec b/python-jaraco-packaging.spec index 6ff585d..2ed9f76 100644 --- a/python-jaraco-packaging.spec +++ b/python-jaraco-packaging.spec @@ -7,7 +7,7 @@ Name: python-%{pkg_name} Version: 6.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Tools to supplement packaging Python releases License: MIT @@ -32,7 +32,7 @@ A Parent package for jaraco's parent dir and init file. %package -n python3-%{pkg_name} Summary: %{summary} Requires: python3-jaraco -Requires: python3dist(rst-linker) +Requires: python3dist(rst.linker) Requires: python3dist(six) >= 1.4 Requires: python3dist(setuptools) @@ -59,7 +59,7 @@ version or author name. Summary: jaraco.packaging documentation BuildRequires: python3dist(sphinx) -BuildRequires: python3dist(rst-linker) +BuildRequires: python3dist(rst.linker) %description -n python-%{pkg_name}-doc Documentation for jaraco.packaging @@ -107,6 +107,9 @@ rm -rf html/.{doctrees,buildinfo} %endif %changelog +* Tue Aug 20 2019 Miro Hrončok - 6.2-5 +- Fix dependency on rst.linker + * Tue Aug 20 2019 Dan Radez - 6.2-4 - removing the sed . to _ it's confusing and not needed From 726561349b034431fa3407be870555578b4d1009 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Thu, 3 Oct 2019 14:15:50 +0200 Subject: [PATCH 19/37] Rebuilt for Python 3.8.0rc1 (#1748018) --- python-jaraco-packaging.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-jaraco-packaging.spec b/python-jaraco-packaging.spec index 2ed9f76..c37bf1d 100644 --- a/python-jaraco-packaging.spec +++ b/python-jaraco-packaging.spec @@ -7,7 +7,7 @@ Name: python-%{pkg_name} Version: 6.2 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Tools to supplement packaging Python releases License: MIT @@ -107,6 +107,9 @@ rm -rf html/.{doctrees,buildinfo} %endif %changelog +* Thu Oct 03 2019 Miro Hrončok - 6.2-6 +- Rebuilt for Python 3.8.0rc1 (#1748018) + * Tue Aug 20 2019 Miro Hrončok - 6.2-5 - Fix dependency on rst.linker From 5fdf53fe69c2e87e8d058ef684a2b632dd43d24e Mon Sep 17 00:00:00 2001 From: Alfredo Deza Date: Fri, 15 Nov 2019 20:37:38 +0000 Subject: [PATCH 20/37] add build requirement zipp --- python-jaraco-packaging.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/python-jaraco-packaging.spec b/python-jaraco-packaging.spec index c37bf1d..f36af90 100644 --- a/python-jaraco-packaging.spec +++ b/python-jaraco-packaging.spec @@ -39,6 +39,7 @@ Requires: python3dist(setuptools) BuildRequires: python3dist(setuptools) BuildRequires: python3-setuptools_scm >= 1.15.0 BuildRequires: python3dist(six) >= 1.4 +BuildRequires: python3-zipp >= 0.5 %if 0%{?python3_version_nodots} < 38 Requires: python3dist(importlib-metadata) >= 0.18 From 1a8faf563d3468a370cce929c344860e2c11235e Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 30 Jan 2020 12:51:32 +0000 Subject: [PATCH 21/37] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- python-jaraco-packaging.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-jaraco-packaging.spec b/python-jaraco-packaging.spec index f36af90..41f23f7 100644 --- a/python-jaraco-packaging.spec +++ b/python-jaraco-packaging.spec @@ -7,7 +7,7 @@ Name: python-%{pkg_name} Version: 6.2 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Tools to supplement packaging Python releases License: MIT @@ -108,6 +108,9 @@ rm -rf html/.{doctrees,buildinfo} %endif %changelog +* Thu Jan 30 2020 Fedora Release Engineering - 6.2-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Thu Oct 03 2019 Miro Hrončok - 6.2-6 - Rebuilt for Python 3.8.0rc1 (#1748018) From c3bd068c57a72ecc2a69f3f4bea279adf9fef211 Mon Sep 17 00:00:00 2001 From: Dan Radez Date: Fri, 8 May 2020 09:33:36 -0400 Subject: [PATCH 22/37] updating to 8.1.0 --- python-jaraco-packaging.spec | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/python-jaraco-packaging.spec b/python-jaraco-packaging.spec index 41f23f7..4c9c158 100644 --- a/python-jaraco-packaging.spec +++ b/python-jaraco-packaging.spec @@ -6,8 +6,8 @@ %bcond_with docs Name: python-%{pkg_name} -Version: 6.2 -Release: 7%{?dist} +Version: 8.1.0 +Release: 1%{?dist} Summary: Tools to supplement packaging Python releases License: MIT @@ -39,7 +39,7 @@ Requires: python3dist(setuptools) BuildRequires: python3dist(setuptools) BuildRequires: python3-setuptools_scm >= 1.15.0 BuildRequires: python3dist(six) >= 1.4 -BuildRequires: python3-zipp >= 0.5 +BuildRequires: python3dist(toml) %if 0%{?python3_version_nodots} < 38 Requires: python3dist(importlib-metadata) >= 0.18 @@ -96,7 +96,6 @@ rm -rf html/.{doctrees,buildinfo} %files -n python3-%{pkg_name} %license LICENSE %doc README.rst -%{_bindir}/upload-package %{_bindir}/dependency-tree %{python3_sitelib}/jaraco/packaging %{python3_sitelib}/jaraco.packaging-%{version}-py?.?.egg-info @@ -108,6 +107,9 @@ rm -rf html/.{doctrees,buildinfo} %endif %changelog +* Fri May 08 2020 Dan Radez - 8.1.0-1 +- Update to 8.1 + * Thu Jan 30 2020 Fedora Release Engineering - 6.2-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild From 5b0f2fa5921aedd03db1c6af8dd09d97e9e9eadb Mon Sep 17 00:00:00 2001 From: Dan Radez Date: Fri, 8 May 2020 09:33:36 -0400 Subject: [PATCH 23/37] updating to 8.1.0 --- .gitignore | 1 + sources | 1 + 2 files changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 9d6b68a..e39400e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /jaraco.packaging-6.1.tar.gz /jaraco.packaging-6.2.tar.gz +/jaraco.packaging-8.1.0.tar.gz diff --git a/sources b/sources index bfa70e8..b135397 100644 --- a/sources +++ b/sources @@ -1,2 +1,3 @@ SHA512 (jaraco.packaging-6.1.tar.gz) = a84c71bd880879f172e6527987e9ffa681da28803112a0195fb21153cb6cd1b3d5c00a6d21c562d7c5542349f335bea4a349fd22662f22dd7bf9bef7b6b0f7d8 SHA512 (jaraco.packaging-6.2.tar.gz) = f8496a9dccb29dbac24927b40bc29d472b8c6bdb939bfcacf70196130ba9c961747a8b75c63574352a8bfeb2a512eb849dfba3344e942f1338ea1538e0767f33 +SHA512 (jaraco.packaging-8.1.0.tar.gz) = 99996765cb047f2f0416d6afc4ff6ee0d84d03da0e07c7a7121518fbaf668f587c044f567c1d66a455372897ec1634ba5ee490552ac92064ca072e20b8f60a3b From 379e1c6a33bef7626dabc66eb5a492a7a6bf25e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Tue, 26 May 2020 03:20:49 +0200 Subject: [PATCH 24/37] Rebuilt for Python 3.9 --- python-jaraco-packaging.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-jaraco-packaging.spec b/python-jaraco-packaging.spec index 4c9c158..05cd8fb 100644 --- a/python-jaraco-packaging.spec +++ b/python-jaraco-packaging.spec @@ -7,7 +7,7 @@ Name: python-%{pkg_name} Version: 8.1.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Tools to supplement packaging Python releases License: MIT @@ -107,6 +107,9 @@ rm -rf html/.{doctrees,buildinfo} %endif %changelog +* Tue May 26 2020 Miro Hrončok - 8.1.0-2 +- Rebuilt for Python 3.9 + * Fri May 08 2020 Dan Radez - 8.1.0-1 - Update to 8.1 From d351134b99fd043da3311facb9bfc1fce8280b44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Mon, 13 Jul 2020 21:04:33 +0200 Subject: [PATCH 25/37] Replace Python version glob with macro (needed for Python 3.10+) See https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org/thread/PQIGCQCRNBYNXBX2ICWEM3PLDLNOG2ZT/ Co-authored-by: Tomas Hrnciar --- python-jaraco-packaging.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python-jaraco-packaging.spec b/python-jaraco-packaging.spec index 05cd8fb..6e44439 100644 --- a/python-jaraco-packaging.spec +++ b/python-jaraco-packaging.spec @@ -98,7 +98,7 @@ rm -rf html/.{doctrees,buildinfo} %doc README.rst %{_bindir}/dependency-tree %{python3_sitelib}/jaraco/packaging -%{python3_sitelib}/jaraco.packaging-%{version}-py?.?.egg-info +%{python3_sitelib}/jaraco.packaging-%{version}-py%{python3_version}.egg-info %if %{with docs} %files -n python-%{pkg_name}-doc From 8dcafd2b3d6deae60fae38ac951f3283f4c8c599 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 29 Jul 2020 01:40:16 +0000 Subject: [PATCH 26/37] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- python-jaraco-packaging.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-jaraco-packaging.spec b/python-jaraco-packaging.spec index 6e44439..fa2980a 100644 --- a/python-jaraco-packaging.spec +++ b/python-jaraco-packaging.spec @@ -7,7 +7,7 @@ Name: python-%{pkg_name} Version: 8.1.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Tools to supplement packaging Python releases License: MIT @@ -107,6 +107,9 @@ rm -rf html/.{doctrees,buildinfo} %endif %changelog +* Wed Jul 29 2020 Fedora Release Engineering - 8.1.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Tue May 26 2020 Miro Hrončok - 8.1.0-2 - Rebuilt for Python 3.9 From 79cac8a697ce58ef40270dfa2dad26670804ae30 Mon Sep 17 00:00:00 2001 From: Dan Radez Date: Wed, 9 Dec 2020 11:42:10 -0500 Subject: [PATCH 27/37] update to 8.1.1 --- python-jaraco-packaging.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/python-jaraco-packaging.spec b/python-jaraco-packaging.spec index fa2980a..56f3f60 100644 --- a/python-jaraco-packaging.spec +++ b/python-jaraco-packaging.spec @@ -6,8 +6,8 @@ %bcond_with docs Name: python-%{pkg_name} -Version: 8.1.0 -Release: 3%{?dist} +Version: 8.1.1 +Release: 1%{?dist} Summary: Tools to supplement packaging Python releases License: MIT @@ -107,6 +107,9 @@ rm -rf html/.{doctrees,buildinfo} %endif %changelog +* Wed Dec 09 2020 Dan Radez - 8.1.1-1 +- Update to 8.1.1 + * Wed Jul 29 2020 Fedora Release Engineering - 8.1.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From 54ec7768032e82689fcb77c55f9ab8cd5237c31f Mon Sep 17 00:00:00 2001 From: Dan Radez Date: Wed, 9 Dec 2020 11:54:28 -0500 Subject: [PATCH 28/37] adding 8.1.1 source --- .gitignore | 1 + sources | 1 + 2 files changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index e39400e..188c0b5 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /jaraco.packaging-6.1.tar.gz /jaraco.packaging-6.2.tar.gz /jaraco.packaging-8.1.0.tar.gz +/jaraco.packaging-8.1.1.tar.gz diff --git a/sources b/sources index b135397..f2a73ec 100644 --- a/sources +++ b/sources @@ -1,3 +1,4 @@ SHA512 (jaraco.packaging-6.1.tar.gz) = a84c71bd880879f172e6527987e9ffa681da28803112a0195fb21153cb6cd1b3d5c00a6d21c562d7c5542349f335bea4a349fd22662f22dd7bf9bef7b6b0f7d8 SHA512 (jaraco.packaging-6.2.tar.gz) = f8496a9dccb29dbac24927b40bc29d472b8c6bdb939bfcacf70196130ba9c961747a8b75c63574352a8bfeb2a512eb849dfba3344e942f1338ea1538e0767f33 SHA512 (jaraco.packaging-8.1.0.tar.gz) = 99996765cb047f2f0416d6afc4ff6ee0d84d03da0e07c7a7121518fbaf668f587c044f567c1d66a455372897ec1634ba5ee490552ac92064ca072e20b8f60a3b +SHA512 (jaraco.packaging-8.1.1.tar.gz) = c0724e8694c3019bf3be24d99c7cde6dca65851e288ae027eb0b0fdfde9e1260804db3f8690b3bf69abd1e1e50733178c0387a859b0d634e8096dc49537f5877 From c690cf75fce3cd86c69524b1905992ee7db596cf Mon Sep 17 00:00:00 2001 From: Dan Radez Date: Tue, 5 Jan 2021 09:12:38 -0500 Subject: [PATCH 29/37] update to 8.2.0 --- .gitignore | 1 + python-jaraco-packaging.spec | 5 ++++- sources | 5 +---- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 188c0b5..10eff8e 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ /jaraco.packaging-6.2.tar.gz /jaraco.packaging-8.1.0.tar.gz /jaraco.packaging-8.1.1.tar.gz +/jaraco.packaging-8.2.0.tar.gz diff --git a/python-jaraco-packaging.spec b/python-jaraco-packaging.spec index 56f3f60..1e47492 100644 --- a/python-jaraco-packaging.spec +++ b/python-jaraco-packaging.spec @@ -6,7 +6,7 @@ %bcond_with docs Name: python-%{pkg_name} -Version: 8.1.1 +Version: 8.2.0 Release: 1%{?dist} Summary: Tools to supplement packaging Python releases @@ -107,6 +107,9 @@ rm -rf html/.{doctrees,buildinfo} %endif %changelog +* Tue Jan 05 2021 Dan Radez - 8.2.0-1 +- Update to 8.2.0 + * Wed Dec 09 2020 Dan Radez - 8.1.1-1 - Update to 8.1.1 diff --git a/sources b/sources index f2a73ec..7e618f9 100644 --- a/sources +++ b/sources @@ -1,4 +1 @@ -SHA512 (jaraco.packaging-6.1.tar.gz) = a84c71bd880879f172e6527987e9ffa681da28803112a0195fb21153cb6cd1b3d5c00a6d21c562d7c5542349f335bea4a349fd22662f22dd7bf9bef7b6b0f7d8 -SHA512 (jaraco.packaging-6.2.tar.gz) = f8496a9dccb29dbac24927b40bc29d472b8c6bdb939bfcacf70196130ba9c961747a8b75c63574352a8bfeb2a512eb849dfba3344e942f1338ea1538e0767f33 -SHA512 (jaraco.packaging-8.1.0.tar.gz) = 99996765cb047f2f0416d6afc4ff6ee0d84d03da0e07c7a7121518fbaf668f587c044f567c1d66a455372897ec1634ba5ee490552ac92064ca072e20b8f60a3b -SHA512 (jaraco.packaging-8.1.1.tar.gz) = c0724e8694c3019bf3be24d99c7cde6dca65851e288ae027eb0b0fdfde9e1260804db3f8690b3bf69abd1e1e50733178c0387a859b0d634e8096dc49537f5877 +SHA512 (jaraco.packaging-8.2.0.tar.gz) = 469eecdc0648a0262e901462c3447450b1e3ca229ffd3747ebfedc7f80e84ff293680ff84bce0d83ee356bfa35fd0db64c7b0d61e02bad191bcdb5713c770789 From 4d3e23938044a56c41d4716c889bb792555e83e9 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 27 Jan 2021 11:15:41 +0000 Subject: [PATCH 30/37] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- python-jaraco-packaging.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-jaraco-packaging.spec b/python-jaraco-packaging.spec index 1e47492..6b41e41 100644 --- a/python-jaraco-packaging.spec +++ b/python-jaraco-packaging.spec @@ -7,7 +7,7 @@ Name: python-%{pkg_name} Version: 8.2.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Tools to supplement packaging Python releases License: MIT @@ -107,6 +107,9 @@ rm -rf html/.{doctrees,buildinfo} %endif %changelog +* Wed Jan 27 2021 Fedora Release Engineering - 8.2.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Tue Jan 05 2021 Dan Radez - 8.2.0-1 - Update to 8.2.0 From cb8224fbdfbc441e3104b5f23bdb68e220b27846 Mon Sep 17 00:00:00 2001 From: Dan Radez Date: Fri, 30 Apr 2021 09:49:26 -0400 Subject: [PATCH 31/37] update to 8.2.1 --- .gitignore | 1 + python-jaraco-packaging.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 10eff8e..2035673 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ /jaraco.packaging-8.1.0.tar.gz /jaraco.packaging-8.1.1.tar.gz /jaraco.packaging-8.2.0.tar.gz +/jaraco.packaging-8.2.1.tar.gz diff --git a/python-jaraco-packaging.spec b/python-jaraco-packaging.spec index 6b41e41..2506f5a 100644 --- a/python-jaraco-packaging.spec +++ b/python-jaraco-packaging.spec @@ -6,8 +6,8 @@ %bcond_with docs Name: python-%{pkg_name} -Version: 8.2.0 -Release: 2%{?dist} +Version: 8.2.1 +Release: 1%{?dist} Summary: Tools to supplement packaging Python releases License: MIT @@ -107,6 +107,9 @@ rm -rf html/.{doctrees,buildinfo} %endif %changelog +* Fri Apr 30 2021 Dan Radez - 8.2.1-1 +- Update to 8.2.1 + * Wed Jan 27 2021 Fedora Release Engineering - 8.2.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild diff --git a/sources b/sources index 7e618f9..5db3a95 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (jaraco.packaging-8.2.0.tar.gz) = 469eecdc0648a0262e901462c3447450b1e3ca229ffd3747ebfedc7f80e84ff293680ff84bce0d83ee356bfa35fd0db64c7b0d61e02bad191bcdb5713c770789 +SHA512 (jaraco.packaging-8.2.1.tar.gz) = 3235756833bb4b0aff8dc832adb6e269bda622c5458493a302c6d487547ce224865aa367773f42bd456553c69cf451944d9b50d148761a40a775f59a398ec02c From fe574223f66b2dad9fb8169585255aaf47e50be7 Mon Sep 17 00:00:00 2001 From: Python Maint Date: Fri, 4 Jun 2021 11:23:14 +0200 Subject: [PATCH 32/37] Rebuilt for Python 3.10 --- python-jaraco-packaging.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-jaraco-packaging.spec b/python-jaraco-packaging.spec index 2506f5a..8257d7e 100644 --- a/python-jaraco-packaging.spec +++ b/python-jaraco-packaging.spec @@ -7,7 +7,7 @@ Name: python-%{pkg_name} Version: 8.2.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Tools to supplement packaging Python releases License: MIT @@ -107,6 +107,9 @@ rm -rf html/.{doctrees,buildinfo} %endif %changelog +* Fri Jun 04 2021 Python Maint - 8.2.1-2 +- Rebuilt for Python 3.10 + * Fri Apr 30 2021 Dan Radez - 8.2.1-1 - Update to 8.2.1 From bb92616ec65a979a608fa0cf2773a44867c873e5 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 23 Jul 2021 06:59:42 +0000 Subject: [PATCH 33/37] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- python-jaraco-packaging.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-jaraco-packaging.spec b/python-jaraco-packaging.spec index 8257d7e..3d5327f 100644 --- a/python-jaraco-packaging.spec +++ b/python-jaraco-packaging.spec @@ -7,7 +7,7 @@ Name: python-%{pkg_name} Version: 8.2.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Tools to supplement packaging Python releases License: MIT @@ -107,6 +107,9 @@ rm -rf html/.{doctrees,buildinfo} %endif %changelog +* Fri Jul 23 2021 Fedora Release Engineering - 8.2.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Fri Jun 04 2021 Python Maint - 8.2.1-2 - Rebuilt for Python 3.10 From b4da165ac5ea158856570fa1dc39e9c54902b0ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Mon, 20 Dec 2021 19:46:33 +0100 Subject: [PATCH 34/37] Use PEP 503 names for BuildRequires Since Fedora 33, we generate both python3dist(foo.bar) and python3dist(foo-bar) provides, but we'd like to follow PEP 503 and use only the names with dash. By using the dashes, this is not compatible with the provides generated in EPEL 8, compatibility can be achieved with the %py3_dist macro. --- python-jaraco-packaging.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python-jaraco-packaging.spec b/python-jaraco-packaging.spec index 3d5327f..9274a53 100644 --- a/python-jaraco-packaging.spec +++ b/python-jaraco-packaging.spec @@ -32,7 +32,7 @@ A Parent package for jaraco's parent dir and init file. %package -n python3-%{pkg_name} Summary: %{summary} Requires: python3-jaraco -Requires: python3dist(rst.linker) +Requires: python3dist(rst-linker) Requires: python3dist(six) >= 1.4 Requires: python3dist(setuptools) @@ -60,7 +60,7 @@ version or author name. Summary: jaraco.packaging documentation BuildRequires: python3dist(sphinx) -BuildRequires: python3dist(rst.linker) +BuildRequires: python3dist(rst-linker) %description -n python-%{pkg_name}-doc Documentation for jaraco.packaging From 19dd6f06199fac0a3cacd132e4f92f0e80e6d4aa Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 21 Jan 2022 12:55:05 +0000 Subject: [PATCH 35/37] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- python-jaraco-packaging.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-jaraco-packaging.spec b/python-jaraco-packaging.spec index 9274a53..73da790 100644 --- a/python-jaraco-packaging.spec +++ b/python-jaraco-packaging.spec @@ -7,7 +7,7 @@ Name: python-%{pkg_name} Version: 8.2.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Tools to supplement packaging Python releases License: MIT @@ -107,6 +107,9 @@ rm -rf html/.{doctrees,buildinfo} %endif %changelog +* Fri Jan 21 2022 Fedora Release Engineering - 8.2.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Fri Jul 23 2021 Fedora Release Engineering - 8.2.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild From 554c52ab7a64f4487a784e6854ba636b0404ccff Mon Sep 17 00:00:00 2001 From: Dan Radez Date: Tue, 8 Feb 2022 14:07:31 -0500 Subject: [PATCH 36/37] dont remove egginfo --- python-jaraco-packaging.spec | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/python-jaraco-packaging.spec b/python-jaraco-packaging.spec index 73da790..7991db3 100644 --- a/python-jaraco-packaging.spec +++ b/python-jaraco-packaging.spec @@ -7,7 +7,7 @@ Name: python-%{pkg_name} Version: 8.2.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Tools to supplement packaging Python releases License: MIT @@ -68,8 +68,6 @@ Documentation for jaraco.packaging %prep %autosetup -n %{pypi_name}-%{version} -# Remove bundled egg-info -rm -rf %{pypi_name}.egg-info %build %py3_build @@ -107,6 +105,9 @@ rm -rf html/.{doctrees,buildinfo} %endif %changelog +* Tue Feb 08 2022 Dan Radez - 8.2.1-5 +- Don't remove egginfo + * Fri Jan 21 2022 Fedora Release Engineering - 8.2.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild From 0b40dba6e16a9ea91cb9f8672cac099db9588835 Mon Sep 17 00:00:00 2001 From: MSVSphere Packaging Team Date: Mon, 30 Oct 2023 23:57:08 +0300 Subject: [PATCH 37/37] Remove unnecessary files --- README.md | 3 --- sources | 1 - 2 files changed, 4 deletions(-) delete mode 100644 README.md delete mode 100644 sources diff --git a/README.md b/README.md deleted file mode 100644 index 6810fdb..0000000 --- a/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# python-jaraco-packaging - -The python-jaraco-packaging package \ No newline at end of file diff --git a/sources b/sources deleted file mode 100644 index 5db3a95..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -SHA512 (jaraco.packaging-8.2.1.tar.gz) = 3235756833bb4b0aff8dc832adb6e269bda622c5458493a302c6d487547ce224865aa367773f42bd456553c69cf451944d9b50d148761a40a775f59a398ec02c