From 2c20b2aff0fccedcd4099391ad4d928caa34385c Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Sun, 7 Apr 2019 08:43:14 +0000 Subject: [PATCH 01/28] 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..9bfdbfd --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# python-jaraco-functools + +The python-jaraco-functools package \ No newline at end of file From 9579459872b2a8033511f88307278977c5c47dd3 Mon Sep 17 00:00:00 2001 From: Dan Radez Date: Mon, 8 Apr 2019 10:06:22 -0400 Subject: [PATCH 02/28] initial spec --- .gitignore | 1 + python-jaraco-functools.spec | 89 ++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 91 insertions(+) create mode 100644 .gitignore create mode 100644 python-jaraco-functools.spec create mode 100644 sources diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2eb7448 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/jaraco.functools-2.0.tar.gz diff --git a/python-jaraco-functools.spec b/python-jaraco-functools.spec new file mode 100644 index 0000000..462c7e0 --- /dev/null +++ b/python-jaraco-functools.spec @@ -0,0 +1,89 @@ +# Created by pyp2rpm-3.3.2 +%global pypi_name jaraco-functools +# Fedora doesn't have all the docs deps yet +%bcond_with docs + +Name: python-%{pypi_name} +Version: 2.0 +Release: 1%{?dist} +Summary: Functools like those found in stdlib + +License: MIT +URL: https://github.com/jaraco/jaraco.functools +Source0: %{pypi_source jaraco.functools} +BuildArch: noarch + +%description +Functools like those found in stdlib + +%package -n python3-%{pypi_name} +Summary: %{summary} +Requires: python3-jaraco + +BuildRequires: python3-devel +BuildConflicts: python3dist(pytest) = 3.7.3 +BuildRequires: python3dist(jaraco.classes) +BuildRequires: python3dist(more-itertools) +BuildRequires: python3dist(pytest) >= 3.5 +BuildRequires: python3dist(pytest-flake8) +BuildRequires: python3dist(setuptools) +BuildRequires: python3dist(setuptools-scm) >= 1.15.0 +BuildRequires: python3dist(six) +%{?python_provide:%python_provide python3-%{pypi_name}} + +%description -n python3-%{pypi_name} +Functools like those found in stdlib + +%if %{with docs} +BuildRequires: python3dist(jaraco.packaging) >= 3.2 +BuildRequires: python3dist(rst.linker) >= 1.9 +BuildRequires: python3dist(sphinx) +%package -n python-%{pypi_name}-doc +Summary: jaraco-functools documentation +%description -n python-%{pypi_name}-doc +Documentation for jaraco-functools +%endif + +%prep +%autosetup -n jaraco.functools-%{version} +# Remove bundled egg-info +rm -rf %{pypi_name}.egg-info + +%build +%py3_build + +%if %{with docs} +# generate html docs +PYTHONPATH=${PWD} sphinx-build-3 docs html +# remove the sphinx-build leftovers +rm -rf html/.{doctrees,buildinfo} +%endif + +%install +%py3_install + +%check +# disabled for right now, need a newer version of pytest-flake8 +# https://src.fedoraproject.org/rpms/python-pytest-flake8/pull-request/2 +# AttributeError: 'Application' object has no attribute 'make_notifier' +# LANG=C.utf-8 %%{__python3} -m pytest --ignore=build + +%files -n python3-%{pypi_name} +%license LICENSE +%doc README.rst +# These excludes are provided by python3-jaraco +%exclude %{python3_sitelib}/jaraco/__init__* +%exclude %{python3_sitelib}/jaraco/__pycache__/__init__* +%{python3_sitelib}/jaraco/functools* +%{python3_sitelib}/jaraco/__pycache__/functools* +%{python3_sitelib}/jaraco.functools-%{version}-py?.?.egg-info + +%if %{with docs} +%files -n python-%{pypi_name}-doc +%doc html +%license LICENSE +%endif + +%changelog +* Wed Apr 03 2019 Dan Radez - 2.0-1 +- Initial package. diff --git a/sources b/sources new file mode 100644 index 0000000..3a05fbe --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (jaraco.functools-2.0.tar.gz) = dce30c08f0e9f3c7b682c78fc3a46a26d9972706f4c8449a12ba11aa5ed130c6d9ca405213fd93b6b4110ef9cea549e5fa925c96bfaf18681cd6957d8ba0889f From 387d495bcc3886acd19c5aafe3727a4a02b5850b Mon Sep 17 00:00:00 2001 From: Dan Radez Date: Mon, 8 Apr 2019 20:45:35 -0400 Subject: [PATCH 03/28] dep name fix --- python-jaraco-functools.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python-jaraco-functools.spec b/python-jaraco-functools.spec index 462c7e0..5bf8970 100644 --- a/python-jaraco-functools.spec +++ b/python-jaraco-functools.spec @@ -22,7 +22,7 @@ Requires: python3-jaraco BuildRequires: python3-devel BuildConflicts: python3dist(pytest) = 3.7.3 -BuildRequires: python3dist(jaraco.classes) +BuildRequires: python3dist(jaraco-classes) BuildRequires: python3dist(more-itertools) BuildRequires: python3dist(pytest) >= 3.5 BuildRequires: python3dist(pytest-flake8) From 63b694b656fe388a748c928e2d32fbd1c6d1d151 Mon Sep 17 00:00:00 2001 From: Dan Radez Date: Mon, 8 Apr 2019 22:39:11 -0400 Subject: [PATCH 04/28] fixed egg info --- python-jaraco-functools.spec | 37 ++++++++++++++++++++---------------- 1 file changed, 21 insertions(+), 16 deletions(-) diff --git a/python-jaraco-functools.spec b/python-jaraco-functools.spec index 5bf8970..2874e70 100644 --- a/python-jaraco-functools.spec +++ b/python-jaraco-functools.spec @@ -1,22 +1,23 @@ # Created by pyp2rpm-3.3.2 -%global pypi_name jaraco-functools +%global pypi_name jaraco.functools +%global pkg_name jaraco-functools # Fedora doesn't have all the docs deps yet %bcond_with docs -Name: python-%{pypi_name} +Name: python-%{pkg_name} Version: 2.0 Release: 1%{?dist} Summary: Functools like those found in stdlib License: MIT URL: https://github.com/jaraco/jaraco.functools -Source0: %{pypi_source jaraco.functools} +Source0: %{pypi_source %{pypi_name}} BuildArch: noarch %description Functools like those found in stdlib -%package -n python3-%{pypi_name} +%package -n python3-%{pkg_name} Summary: %{summary} Requires: python3-jaraco @@ -29,32 +30,36 @@ BuildRequires: python3dist(pytest-flake8) BuildRequires: python3dist(setuptools) BuildRequires: python3dist(setuptools-scm) >= 1.15.0 BuildRequires: python3dist(six) -%{?python_provide:%python_provide python3-%{pypi_name}} +%{?python_provide:%python_provide python3-%{pkg_name}} -%description -n python3-%{pypi_name} +%description -n python3-%{pkg_name} Functools like those found in stdlib %if %{with docs} -BuildRequires: python3dist(jaraco.packaging) >= 3.2 -BuildRequires: python3dist(rst.linker) >= 1.9 -BuildRequires: python3dist(sphinx) -%package -n python-%{pypi_name}-doc +%package -n python-%{pkg_name}-doc Summary: jaraco-functools documentation -%description -n python-%{pypi_name}-doc + +BuildRequires: python3dist(jaraco-packaging) >= 3.2 +BuildRequires: python3dist(rst-linker) >= 1.9 +BuildRequires: python3dist(sphinx) + +%description -n python-%{pkg_name}-doc Documentation for jaraco-functools %endif %prep %autosetup -n jaraco.functools-%{version} # Remove bundled egg-info -rm -rf %{pypi_name}.egg-info +rm -rf jaraco.functools.egg-info +# rename package with a - +sed -i 's/%{pypi_name}/%{pkg_name}/' setup.cfg %build %py3_build %if %{with docs} # generate html docs -PYTHONPATH=${PWD} sphinx-build-3 docs html +PYTHONPATH=${PWD} sphinx-build docs html # remove the sphinx-build leftovers rm -rf html/.{doctrees,buildinfo} %endif @@ -68,7 +73,7 @@ rm -rf html/.{doctrees,buildinfo} # AttributeError: 'Application' object has no attribute 'make_notifier' # LANG=C.utf-8 %%{__python3} -m pytest --ignore=build -%files -n python3-%{pypi_name} +%files -n python3-%{pkg_name} %license LICENSE %doc README.rst # These excludes are provided by python3-jaraco @@ -76,10 +81,10 @@ rm -rf html/.{doctrees,buildinfo} %exclude %{python3_sitelib}/jaraco/__pycache__/__init__* %{python3_sitelib}/jaraco/functools* %{python3_sitelib}/jaraco/__pycache__/functools* -%{python3_sitelib}/jaraco.functools-%{version}-py?.?.egg-info +%{python3_sitelib}/jaraco_functools-%{version}-py?.?.egg-info %if %{with docs} -%files -n python-%{pypi_name}-doc +%files -n python-%{pkg_name}-doc %doc html %license LICENSE %endif From 560f622f2c5814a1ff2ac1f72c44db916919f8a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Thu, 4 Jul 2019 16:21:50 +0200 Subject: [PATCH 05/28] Remove .0 from (Build)Requires See https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org/message/NLMEX6MY7DQLWTD2PMX4WGC3L3ER4HFS/ --- python-jaraco-functools.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python-jaraco-functools.spec b/python-jaraco-functools.spec index 2874e70..59fa54d 100644 --- a/python-jaraco-functools.spec +++ b/python-jaraco-functools.spec @@ -28,7 +28,7 @@ BuildRequires: python3dist(more-itertools) BuildRequires: python3dist(pytest) >= 3.5 BuildRequires: python3dist(pytest-flake8) BuildRequires: python3dist(setuptools) -BuildRequires: python3dist(setuptools-scm) >= 1.15.0 +BuildRequires: python3dist(setuptools-scm) >= 1.15 BuildRequires: python3dist(six) %{?python_provide:%python_provide python3-%{pkg_name}} From b3237ead6a74bba2d4ac93835c264ca2f6dbfd4e Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 26 Jul 2019 14:06:26 +0000 Subject: [PATCH 06/28] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- python-jaraco-functools.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-jaraco-functools.spec b/python-jaraco-functools.spec index 59fa54d..8a122f8 100644 --- a/python-jaraco-functools.spec +++ b/python-jaraco-functools.spec @@ -6,7 +6,7 @@ Name: python-%{pkg_name} Version: 2.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Functools like those found in stdlib License: MIT @@ -90,5 +90,8 @@ rm -rf html/.{doctrees,buildinfo} %endif %changelog +* Fri Jul 26 2019 Fedora Release Engineering - 2.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Wed Apr 03 2019 Dan Radez - 2.0-1 - Initial package. From 3f9af08f59c8ef930c5ee34c89506b04786e2cb2 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 07/28] Rebuilt for Python 3.8 --- python-jaraco-functools.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-jaraco-functools.spec b/python-jaraco-functools.spec index 8a122f8..b794c1f 100644 --- a/python-jaraco-functools.spec +++ b/python-jaraco-functools.spec @@ -6,7 +6,7 @@ Name: python-%{pkg_name} Version: 2.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Functools like those found in stdlib License: MIT @@ -90,6 +90,9 @@ rm -rf html/.{doctrees,buildinfo} %endif %changelog +* Mon Aug 19 2019 Miro Hrončok - 2.0-3 +- Rebuilt for Python 3.8 + * Fri Jul 26 2019 Fedora Release Engineering - 2.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild From 9e0802bb3d2f12b76c17ebc37becdb9457aeef09 Mon Sep 17 00:00:00 2001 From: Dan Radez Date: Tue, 20 Aug 2019 11:09:37 -0400 Subject: [PATCH 08/28] remove sed . to _ --- python-jaraco-functools.spec | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/python-jaraco-functools.spec b/python-jaraco-functools.spec index b794c1f..fadc948 100644 --- a/python-jaraco-functools.spec +++ b/python-jaraco-functools.spec @@ -39,8 +39,8 @@ Functools like those found in stdlib %package -n python-%{pkg_name}-doc Summary: jaraco-functools documentation -BuildRequires: python3dist(jaraco-packaging) >= 3.2 -BuildRequires: python3dist(rst-linker) >= 1.9 +BuildRequires: python3dist(jaraco.packaging) >= 3.2 +BuildRequires: python3dist(rst.linker) >= 1.9 BuildRequires: python3dist(sphinx) %description -n python-%{pkg_name}-doc @@ -51,8 +51,6 @@ Documentation for jaraco-functools %autosetup -n jaraco.functools-%{version} # Remove bundled egg-info rm -rf jaraco.functools.egg-info -# rename package with a - -sed -i 's/%{pypi_name}/%{pkg_name}/' setup.cfg %build %py3_build @@ -77,11 +75,11 @@ rm -rf html/.{doctrees,buildinfo} %license LICENSE %doc README.rst # These excludes are provided by python3-jaraco -%exclude %{python3_sitelib}/jaraco/__init__* -%exclude %{python3_sitelib}/jaraco/__pycache__/__init__* +#%exclude %{python3_sitelib}/jaraco/__init__* +#%exclude %{python3_sitelib}/jaraco/__pycache__/__init__* %{python3_sitelib}/jaraco/functools* -%{python3_sitelib}/jaraco/__pycache__/functools* -%{python3_sitelib}/jaraco_functools-%{version}-py?.?.egg-info +#%{python3_sitelib}/jaraco/__pycache__/functools* +%{python3_sitelib}/jaraco.functools-%{version}-py?.?.egg-info %if %{with docs} %files -n python-%{pkg_name}-doc From dff48d6c6da6c19c3ee29027c869a02b03d71ee1 Mon Sep 17 00:00:00 2001 From: Dan Radez Date: Fri, 27 Sep 2019 10:09:12 -0400 Subject: [PATCH 09/28] rebuilding to resolve deps --- python-jaraco-functools.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-jaraco-functools.spec b/python-jaraco-functools.spec index fadc948..6546e4a 100644 --- a/python-jaraco-functools.spec +++ b/python-jaraco-functools.spec @@ -6,7 +6,7 @@ Name: python-%{pkg_name} Version: 2.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Functools like those found in stdlib License: MIT @@ -88,6 +88,9 @@ rm -rf html/.{doctrees,buildinfo} %endif %changelog +* Fri Sep 27 2019 Dan Radez - 2.0-4 +- Rebuilding to resolve dep issues + * Mon Aug 19 2019 Miro Hrončok - 2.0-3 - Rebuilt for Python 3.8 From aec5be89925690d5acde109d64c40a32e5995b58 Mon Sep 17 00:00:00 2001 From: Dan Radez Date: Fri, 27 Sep 2019 10:15:46 -0400 Subject: [PATCH 10/28] need the excludes that were commented out --- python-jaraco-functools.spec | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/python-jaraco-functools.spec b/python-jaraco-functools.spec index 6546e4a..a2e5a63 100644 --- a/python-jaraco-functools.spec +++ b/python-jaraco-functools.spec @@ -75,10 +75,10 @@ rm -rf html/.{doctrees,buildinfo} %license LICENSE %doc README.rst # These excludes are provided by python3-jaraco -#%exclude %{python3_sitelib}/jaraco/__init__* -#%exclude %{python3_sitelib}/jaraco/__pycache__/__init__* +%exclude %{python3_sitelib}/jaraco/__init__* +%exclude %{python3_sitelib}/jaraco/__pycache__/__init__* %{python3_sitelib}/jaraco/functools* -#%{python3_sitelib}/jaraco/__pycache__/functools* +%{python3_sitelib}/jaraco/__pycache__/functools* %{python3_sitelib}/jaraco.functools-%{version}-py?.?.egg-info %if %{with docs} From 20e3e66f7b990854ed0a85b6a4f3de87cbd9aac0 Mon Sep 17 00:00:00 2001 From: Alfredo Deza Date: Fri, 15 Nov 2019 17:50:26 +0000 Subject: [PATCH 11/28] python3dist doesn't expand for jaraco-classes;drop flake8 --- python-jaraco-functools.spec | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/python-jaraco-functools.spec b/python-jaraco-functools.spec index a2e5a63..9b81e3f 100644 --- a/python-jaraco-functools.spec +++ b/python-jaraco-functools.spec @@ -23,10 +23,9 @@ Requires: python3-jaraco BuildRequires: python3-devel BuildConflicts: python3dist(pytest) = 3.7.3 -BuildRequires: python3dist(jaraco-classes) +BuildRequires: python3-jaraco-classes BuildRequires: python3dist(more-itertools) -BuildRequires: python3dist(pytest) >= 3.5 -BuildRequires: python3dist(pytest-flake8) +BuildRequires: python3dist(pytest) >= 3.4 BuildRequires: python3dist(setuptools) BuildRequires: python3dist(setuptools-scm) >= 1.15 BuildRequires: python3dist(six) From 8d154efc5dbb029467317607e7187ed0ee15a559 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 30 Jan 2020 12:51:21 +0000 Subject: [PATCH 12/28] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- python-jaraco-functools.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-jaraco-functools.spec b/python-jaraco-functools.spec index 9b81e3f..e18b527 100644 --- a/python-jaraco-functools.spec +++ b/python-jaraco-functools.spec @@ -6,7 +6,7 @@ Name: python-%{pkg_name} Version: 2.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Functools like those found in stdlib License: MIT @@ -87,6 +87,9 @@ rm -rf html/.{doctrees,buildinfo} %endif %changelog +* Thu Jan 30 2020 Fedora Release Engineering - 2.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Fri Sep 27 2019 Dan Radez - 2.0-4 - Rebuilding to resolve dep issues From 405ca879d5b804e7d263bfacface61b0ded00375 Mon Sep 17 00:00:00 2001 From: Dan Radez Date: Wed, 12 Feb 2020 12:33:48 -0500 Subject: [PATCH 13/28] updating to 3.0.0 --- .gitignore | 1 + python-jaraco-functools.spec | 7 +++++-- sources | 1 + 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 2eb7448..3607fe5 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /jaraco.functools-2.0.tar.gz +/jaraco.functools-3.0.0.tar.gz diff --git a/python-jaraco-functools.spec b/python-jaraco-functools.spec index e18b527..1426803 100644 --- a/python-jaraco-functools.spec +++ b/python-jaraco-functools.spec @@ -5,8 +5,8 @@ %bcond_with docs Name: python-%{pkg_name} -Version: 2.0 -Release: 5%{?dist} +Version: 3.0.0 +Release: 1%{?dist} Summary: Functools like those found in stdlib License: MIT @@ -87,6 +87,9 @@ rm -rf html/.{doctrees,buildinfo} %endif %changelog +* Wed Feb 12 2020 Dan Radez - 3.0.0-1 +- updating to 3.0.0-1 + * Thu Jan 30 2020 Fedora Release Engineering - 2.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild diff --git a/sources b/sources index 3a05fbe..973485a 100644 --- a/sources +++ b/sources @@ -1 +1,2 @@ SHA512 (jaraco.functools-2.0.tar.gz) = dce30c08f0e9f3c7b682c78fc3a46a26d9972706f4c8449a12ba11aa5ed130c6d9ca405213fd93b6b4110ef9cea549e5fa925c96bfaf18681cd6957d8ba0889f +SHA512 (jaraco.functools-3.0.0.tar.gz) = f1ec725e132477f7361f7d0a77f72b69603499c24df25c9e8e0cc9a6d34a4bd4bb10fde60dc324b8176c46035e2babde04de90fcb0aa82273bc2f8559b8b31f5 From b21b07cf5ffe56b20471e6efa3d767f3e7226c1a Mon Sep 17 00:00:00 2001 From: Dan Radez Date: Wed, 12 Feb 2020 12:33:48 -0500 Subject: [PATCH 14/28] updating to 3.0.0 --- .gitignore | 2 +- python-jaraco-functools.spec | 8 +++++++- sources | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 3607fe5..c4b3b83 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,2 @@ -/jaraco.functools-2.0.tar.gz /jaraco.functools-3.0.0.tar.gz +/jaraco.functools-3.0.1.tar.gz diff --git a/python-jaraco-functools.spec b/python-jaraco-functools.spec index 1426803..8f823ca 100644 --- a/python-jaraco-functools.spec +++ b/python-jaraco-functools.spec @@ -5,7 +5,7 @@ %bcond_with docs Name: python-%{pkg_name} -Version: 3.0.0 +Version: 3.0.1 Release: 1%{?dist} Summary: Functools like those found in stdlib @@ -20,6 +20,7 @@ Functools like those found in stdlib %package -n python3-%{pkg_name} Summary: %{summary} Requires: python3-jaraco +Requires: python3dist(toml) BuildRequires: python3-devel BuildConflicts: python3dist(pytest) = 3.7.3 @@ -29,6 +30,7 @@ BuildRequires: python3dist(pytest) >= 3.4 BuildRequires: python3dist(setuptools) BuildRequires: python3dist(setuptools-scm) >= 1.15 BuildRequires: python3dist(six) +BuildRequires: python3dist(toml) %{?python_provide:%python_provide python3-%{pkg_name}} %description -n python3-%{pkg_name} @@ -87,6 +89,10 @@ rm -rf html/.{doctrees,buildinfo} %endif %changelog +* Fri May 08 2020 Dan Radez - 3.0.1-1 +- updating to 3.0.1-1 +- added toml dep + * Wed Feb 12 2020 Dan Radez - 3.0.0-1 - updating to 3.0.0-1 diff --git a/sources b/sources index 973485a..7df1c3b 100644 --- a/sources +++ b/sources @@ -1,2 +1,2 @@ -SHA512 (jaraco.functools-2.0.tar.gz) = dce30c08f0e9f3c7b682c78fc3a46a26d9972706f4c8449a12ba11aa5ed130c6d9ca405213fd93b6b4110ef9cea549e5fa925c96bfaf18681cd6957d8ba0889f SHA512 (jaraco.functools-3.0.0.tar.gz) = f1ec725e132477f7361f7d0a77f72b69603499c24df25c9e8e0cc9a6d34a4bd4bb10fde60dc324b8176c46035e2babde04de90fcb0aa82273bc2f8559b8b31f5 +SHA512 (jaraco.functools-3.0.1.tar.gz) = 96696839d3405e571bd0120443c5494f13d737b7e0fd9324a7a003c88ff45bdaa89a717c81b9c5ecb4eded9781ba2c05f4735e5cf24c1d1c162fc3d55d38eedb From fadc66ed51abbc509fd3b644479ff81aa5bd74d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Tue, 26 May 2020 03:20:48 +0200 Subject: [PATCH 15/28] Rebuilt for Python 3.9 --- python-jaraco-functools.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-jaraco-functools.spec b/python-jaraco-functools.spec index 8f823ca..3ac75f9 100644 --- a/python-jaraco-functools.spec +++ b/python-jaraco-functools.spec @@ -6,7 +6,7 @@ Name: python-%{pkg_name} Version: 3.0.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Functools like those found in stdlib License: MIT @@ -89,6 +89,9 @@ rm -rf html/.{doctrees,buildinfo} %endif %changelog +* Tue May 26 2020 Miro Hrončok - 3.0.1-2 +- Rebuilt for Python 3.9 + * Fri May 08 2020 Dan Radez - 3.0.1-1 - updating to 3.0.1-1 - added toml dep From 9f2f5ca1e130e95ac9b806fdd8056e213071b31d 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 16/28] 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-functools.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python-jaraco-functools.spec b/python-jaraco-functools.spec index 3ac75f9..9aa87f9 100644 --- a/python-jaraco-functools.spec +++ b/python-jaraco-functools.spec @@ -80,7 +80,7 @@ rm -rf html/.{doctrees,buildinfo} %exclude %{python3_sitelib}/jaraco/__pycache__/__init__* %{python3_sitelib}/jaraco/functools* %{python3_sitelib}/jaraco/__pycache__/functools* -%{python3_sitelib}/jaraco.functools-%{version}-py?.?.egg-info +%{python3_sitelib}/jaraco.functools-%{version}-py%{python3_version}.egg-info %if %{with docs} %files -n python-%{pkg_name}-doc From f1069e71c0846dba2624bec11a42ca793969fdd9 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 29 Jul 2020 01:40:08 +0000 Subject: [PATCH 17/28] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- python-jaraco-functools.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-jaraco-functools.spec b/python-jaraco-functools.spec index 9aa87f9..2b42cc5 100644 --- a/python-jaraco-functools.spec +++ b/python-jaraco-functools.spec @@ -6,7 +6,7 @@ Name: python-%{pkg_name} Version: 3.0.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Functools like those found in stdlib License: MIT @@ -89,6 +89,9 @@ rm -rf html/.{doctrees,buildinfo} %endif %changelog +* Wed Jul 29 2020 Fedora Release Engineering - 3.0.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Tue May 26 2020 Miro Hrončok - 3.0.1-2 - Rebuilt for Python 3.9 From ad537030f55f9d8eeaa97ff516ac413e1702ae20 Mon Sep 17 00:00:00 2001 From: Dan Radez Date: Tue, 5 Jan 2021 09:23:42 -0500 Subject: [PATCH 18/28] updating to 3.1.0 --- .gitignore | 1 + python-jaraco-functools.spec | 7 +++++-- sources | 3 +-- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index c4b3b83..e03c3fd 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /jaraco.functools-3.0.0.tar.gz /jaraco.functools-3.0.1.tar.gz +/jaraco.functools-3.1.0.tar.gz diff --git a/python-jaraco-functools.spec b/python-jaraco-functools.spec index 2b42cc5..7fb7017 100644 --- a/python-jaraco-functools.spec +++ b/python-jaraco-functools.spec @@ -5,8 +5,8 @@ %bcond_with docs Name: python-%{pkg_name} -Version: 3.0.1 -Release: 3%{?dist} +Version: 3.1.0 +Release: 1%{?dist} Summary: Functools like those found in stdlib License: MIT @@ -89,6 +89,9 @@ rm -rf html/.{doctrees,buildinfo} %endif %changelog +* Tue Jan 05 2021 Dan Radez - 3.1.0-1 +- updating to 3.1.0 + * Wed Jul 29 2020 Fedora Release Engineering - 3.0.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild diff --git a/sources b/sources index 7df1c3b..8ca782e 100644 --- a/sources +++ b/sources @@ -1,2 +1 @@ -SHA512 (jaraco.functools-3.0.0.tar.gz) = f1ec725e132477f7361f7d0a77f72b69603499c24df25c9e8e0cc9a6d34a4bd4bb10fde60dc324b8176c46035e2babde04de90fcb0aa82273bc2f8559b8b31f5 -SHA512 (jaraco.functools-3.0.1.tar.gz) = 96696839d3405e571bd0120443c5494f13d737b7e0fd9324a7a003c88ff45bdaa89a717c81b9c5ecb4eded9781ba2c05f4735e5cf24c1d1c162fc3d55d38eedb +SHA512 (jaraco.functools-3.1.0.tar.gz) = 81a56d3325106e65889f90137d2f3ab57198e2b5905dbe067a056057dee98ca8a715fc46384f9ab15a081d5d7fd309d69ffb77be9c2b24a9a8eda817fbc0b1e3 From c01c6a2f27ff43ecb667e4b70bc728fcf41253c2 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 27 Jan 2021 11:15:32 +0000 Subject: [PATCH 19/28] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- python-jaraco-functools.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-jaraco-functools.spec b/python-jaraco-functools.spec index 7fb7017..5392452 100644 --- a/python-jaraco-functools.spec +++ b/python-jaraco-functools.spec @@ -6,7 +6,7 @@ Name: python-%{pkg_name} Version: 3.1.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Functools like those found in stdlib License: MIT @@ -89,6 +89,9 @@ rm -rf html/.{doctrees,buildinfo} %endif %changelog +* Wed Jan 27 2021 Fedora Release Engineering - 3.1.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Tue Jan 05 2021 Dan Radez - 3.1.0-1 - updating to 3.1.0 From 2a95acbd10441bea2d6607f3825034e709a75f1e Mon Sep 17 00:00:00 2001 From: Dan Radez Date: Tue, 23 Feb 2021 09:59:38 -0500 Subject: [PATCH 20/28] updateing to 3.2.1 --- .gitignore | 1 + python-jaraco-functools.spec | 7 +++++-- sources | 1 + 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index e03c3fd..b68cd37 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /jaraco.functools-3.0.0.tar.gz /jaraco.functools-3.0.1.tar.gz /jaraco.functools-3.1.0.tar.gz +/jaraco.functools-3.2.1.tar.gz diff --git a/python-jaraco-functools.spec b/python-jaraco-functools.spec index 5392452..f250097 100644 --- a/python-jaraco-functools.spec +++ b/python-jaraco-functools.spec @@ -5,8 +5,8 @@ %bcond_with docs Name: python-%{pkg_name} -Version: 3.1.0 -Release: 2%{?dist} +Version: 3.2.1 +Release: 1%{?dist} Summary: Functools like those found in stdlib License: MIT @@ -89,6 +89,9 @@ rm -rf html/.{doctrees,buildinfo} %endif %changelog +* Tue Feb 23 2021 Dan Radez - 3.2.1-1 +- updating to 3.2.1 + * Wed Jan 27 2021 Fedora Release Engineering - 3.1.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild diff --git a/sources b/sources index 8ca782e..be7f8f8 100644 --- a/sources +++ b/sources @@ -1 +1,2 @@ SHA512 (jaraco.functools-3.1.0.tar.gz) = 81a56d3325106e65889f90137d2f3ab57198e2b5905dbe067a056057dee98ca8a715fc46384f9ab15a081d5d7fd309d69ffb77be9c2b24a9a8eda817fbc0b1e3 +SHA512 (jaraco.functools-3.2.1.tar.gz) = 279dbb9307f864e3616f9b91ce5d55068df166a30695c0f81bcfae0bc2a1e0df5fdccd157210df3dd73ad73a6a955c1344ec441f925a651cd13a7f460e7a88e1 From 41ab0f20851bb3218d7db572cc7851d7fc76befc Mon Sep 17 00:00:00 2001 From: Dan Radez Date: Fri, 30 Apr 2021 09:35:07 -0400 Subject: [PATCH 21/28] updating to 3.3.0 --- .gitignore | 1 + python-jaraco-functools.spec | 5 ++++- sources | 3 +-- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index b68cd37..ea21169 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ /jaraco.functools-3.0.1.tar.gz /jaraco.functools-3.1.0.tar.gz /jaraco.functools-3.2.1.tar.gz +/jaraco.functools-3.3.0.tar.gz diff --git a/python-jaraco-functools.spec b/python-jaraco-functools.spec index f250097..d00c341 100644 --- a/python-jaraco-functools.spec +++ b/python-jaraco-functools.spec @@ -5,7 +5,7 @@ %bcond_with docs Name: python-%{pkg_name} -Version: 3.2.1 +Version: 3.3.0 Release: 1%{?dist} Summary: Functools like those found in stdlib @@ -89,6 +89,9 @@ rm -rf html/.{doctrees,buildinfo} %endif %changelog +* Fri Apr 30 2021 Dan Radez - 3.3.0-1 +- updating to 3.3.0 + * Tue Feb 23 2021 Dan Radez - 3.2.1-1 - updating to 3.2.1 diff --git a/sources b/sources index be7f8f8..2080ecb 100644 --- a/sources +++ b/sources @@ -1,2 +1 @@ -SHA512 (jaraco.functools-3.1.0.tar.gz) = 81a56d3325106e65889f90137d2f3ab57198e2b5905dbe067a056057dee98ca8a715fc46384f9ab15a081d5d7fd309d69ffb77be9c2b24a9a8eda817fbc0b1e3 -SHA512 (jaraco.functools-3.2.1.tar.gz) = 279dbb9307f864e3616f9b91ce5d55068df166a30695c0f81bcfae0bc2a1e0df5fdccd157210df3dd73ad73a6a955c1344ec441f925a651cd13a7f460e7a88e1 +SHA512 (jaraco.functools-3.3.0.tar.gz) = fc7c5a11a3411692066f4437d76ace7e8a00af2152256ea9f730254b577e74163342298d5b33d472c744cbad5dd316b56345d05aa93ef6f82bc92d6aadb2f2ec From 4c484a190ac5e0a6392d3bcc924ee667eaf79ad9 Mon Sep 17 00:00:00 2001 From: Python Maint Date: Fri, 4 Jun 2021 14:45:55 +0200 Subject: [PATCH 22/28] Rebuilt for Python 3.10 --- python-jaraco-functools.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-jaraco-functools.spec b/python-jaraco-functools.spec index d00c341..5993608 100644 --- a/python-jaraco-functools.spec +++ b/python-jaraco-functools.spec @@ -6,7 +6,7 @@ Name: python-%{pkg_name} Version: 3.3.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Functools like those found in stdlib License: MIT @@ -89,6 +89,9 @@ rm -rf html/.{doctrees,buildinfo} %endif %changelog +* Fri Jun 04 2021 Python Maint - 3.3.0-2 +- Rebuilt for Python 3.10 + * Fri Apr 30 2021 Dan Radez - 3.3.0-1 - updating to 3.3.0 From df638c4f3ebe5eacd78e0c50f456888148e00204 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 23 Jul 2021 06:59:33 +0000 Subject: [PATCH 23/28] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- python-jaraco-functools.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-jaraco-functools.spec b/python-jaraco-functools.spec index 5993608..960a50f 100644 --- a/python-jaraco-functools.spec +++ b/python-jaraco-functools.spec @@ -6,7 +6,7 @@ Name: python-%{pkg_name} Version: 3.3.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Functools like those found in stdlib License: MIT @@ -89,6 +89,9 @@ rm -rf html/.{doctrees,buildinfo} %endif %changelog +* Fri Jul 23 2021 Fedora Release Engineering - 3.3.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Fri Jun 04 2021 Python Maint - 3.3.0-2 - Rebuilt for Python 3.10 From 30cfbebee76b53bb64cb4784c334466146e39994 Mon Sep 17 00:00:00 2001 From: Dan Radez Date: Mon, 6 Dec 2021 10:19:02 -0500 Subject: [PATCH 24/28] updating to 3.4.0 --- .gitignore | 1 + python-jaraco-functools.spec | 7 +++++-- sources | 1 + 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index ea21169..e1bd03b 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ /jaraco.functools-3.1.0.tar.gz /jaraco.functools-3.2.1.tar.gz /jaraco.functools-3.3.0.tar.gz +/jaraco.functools-3.4.0.tar.gz diff --git a/python-jaraco-functools.spec b/python-jaraco-functools.spec index 960a50f..bb40364 100644 --- a/python-jaraco-functools.spec +++ b/python-jaraco-functools.spec @@ -5,8 +5,8 @@ %bcond_with docs Name: python-%{pkg_name} -Version: 3.3.0 -Release: 3%{?dist} +Version: 3.4.0 +Release: 1%{?dist} Summary: Functools like those found in stdlib License: MIT @@ -89,6 +89,9 @@ rm -rf html/.{doctrees,buildinfo} %endif %changelog +* Mon Dec 06 2021 Dan Radez - 3.4.0-1 +- updating to 3.4.0 + * Fri Jul 23 2021 Fedora Release Engineering - 3.3.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild diff --git a/sources b/sources index 2080ecb..417db35 100644 --- a/sources +++ b/sources @@ -1 +1,2 @@ SHA512 (jaraco.functools-3.3.0.tar.gz) = fc7c5a11a3411692066f4437d76ace7e8a00af2152256ea9f730254b577e74163342298d5b33d472c744cbad5dd316b56345d05aa93ef6f82bc92d6aadb2f2ec +SHA512 (jaraco.functools-3.4.0.tar.gz) = ae15014e566b7f18e456d9da2d02b9508b9c5a00e24f24316c44ab65ad655b97942af0094c33d3be777cc5e743b975cde6e15e72f9a003365f9a0efaae4f6dac From edf76ebee00012d5d0d87298b63a0457297f7ecb 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 25/28] 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-functools.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python-jaraco-functools.spec b/python-jaraco-functools.spec index bb40364..cb64303 100644 --- a/python-jaraco-functools.spec +++ b/python-jaraco-functools.spec @@ -40,8 +40,8 @@ Functools like those found in stdlib %package -n python-%{pkg_name}-doc Summary: jaraco-functools documentation -BuildRequires: python3dist(jaraco.packaging) >= 3.2 -BuildRequires: python3dist(rst.linker) >= 1.9 +BuildRequires: python3dist(jaraco-packaging) >= 3.2 +BuildRequires: python3dist(rst-linker) >= 1.9 BuildRequires: python3dist(sphinx) %description -n python-%{pkg_name}-doc From 395972d16c2e1e7759e3e20a246157cf65f00231 Mon Sep 17 00:00:00 2001 From: Dan Radez Date: Tue, 4 Jan 2022 09:41:25 -0500 Subject: [PATCH 26/28] Update to 3.5.0 and reenable checks --- .gitignore | 7 +------ python-jaraco-functools.spec | 11 ++++++----- sources | 3 +-- 3 files changed, 8 insertions(+), 13 deletions(-) diff --git a/.gitignore b/.gitignore index e1bd03b..65e05c5 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1 @@ -/jaraco.functools-3.0.0.tar.gz -/jaraco.functools-3.0.1.tar.gz -/jaraco.functools-3.1.0.tar.gz -/jaraco.functools-3.2.1.tar.gz -/jaraco.functools-3.3.0.tar.gz -/jaraco.functools-3.4.0.tar.gz +/jaraco.functools-3.5.0.tar.gz diff --git a/python-jaraco-functools.spec b/python-jaraco-functools.spec index cb64303..6644aa0 100644 --- a/python-jaraco-functools.spec +++ b/python-jaraco-functools.spec @@ -5,7 +5,7 @@ %bcond_with docs Name: python-%{pkg_name} -Version: 3.4.0 +Version: 3.5.0 Release: 1%{?dist} Summary: Functools like those found in stdlib @@ -67,10 +67,7 @@ rm -rf html/.{doctrees,buildinfo} %py3_install %check -# disabled for right now, need a newer version of pytest-flake8 -# https://src.fedoraproject.org/rpms/python-pytest-flake8/pull-request/2 -# AttributeError: 'Application' object has no attribute 'make_notifier' -# LANG=C.utf-8 %%{__python3} -m pytest --ignore=build +LANG=C.utf-8 %{__python3} -m pytest --ignore=build %files -n python3-%{pkg_name} %license LICENSE @@ -89,6 +86,10 @@ rm -rf html/.{doctrees,buildinfo} %endif %changelog +* Tue Jan 04 2022 Dan Radez - 3.5.0-1 +- updating to 3.5.0 +- Reenabled checks! Yay \o/ + * Mon Dec 06 2021 Dan Radez - 3.4.0-1 - updating to 3.4.0 diff --git a/sources b/sources index 417db35..211c736 100644 --- a/sources +++ b/sources @@ -1,2 +1 @@ -SHA512 (jaraco.functools-3.3.0.tar.gz) = fc7c5a11a3411692066f4437d76ace7e8a00af2152256ea9f730254b577e74163342298d5b33d472c744cbad5dd316b56345d05aa93ef6f82bc92d6aadb2f2ec -SHA512 (jaraco.functools-3.4.0.tar.gz) = ae15014e566b7f18e456d9da2d02b9508b9c5a00e24f24316c44ab65ad655b97942af0094c33d3be777cc5e743b975cde6e15e72f9a003365f9a0efaae4f6dac +SHA512 (jaraco.functools-3.5.0.tar.gz) = 7257f41506f90ca2fda1bd12fed58fa4d4ff5738547f8cdae8ccad1901e0c818afb701dd8e9050fc77ca1271bc2466d5a542990138bc3db2cf9b04d12850844c From abbfc14487c87c1a0d9584da82bbe8b1801666d8 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 21 Jan 2022 12:54:56 +0000 Subject: [PATCH 27/28] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- python-jaraco-functools.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-jaraco-functools.spec b/python-jaraco-functools.spec index 6644aa0..4a5096e 100644 --- a/python-jaraco-functools.spec +++ b/python-jaraco-functools.spec @@ -6,7 +6,7 @@ Name: python-%{pkg_name} Version: 3.5.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Functools like those found in stdlib License: MIT @@ -86,6 +86,9 @@ LANG=C.utf-8 %{__python3} -m pytest --ignore=build %endif %changelog +* Fri Jan 21 2022 Fedora Release Engineering - 3.5.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Tue Jan 04 2022 Dan Radez - 3.5.0-1 - updating to 3.5.0 - Reenabled checks! Yay \o/ From 587e7788566d3624d4488c28f78a88216f14277f Mon Sep 17 00:00:00 2001 From: MSVSphere Packaging Team Date: Mon, 30 Oct 2023 23:56:48 +0300 Subject: [PATCH 28/28] 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 9bfdbfd..0000000 --- a/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# python-jaraco-functools - -The python-jaraco-functools package \ No newline at end of file diff --git a/sources b/sources deleted file mode 100644 index 211c736..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -SHA512 (jaraco.functools-3.5.0.tar.gz) = 7257f41506f90ca2fda1bd12fed58fa4d4ff5738547f8cdae8ccad1901e0c818afb701dd8e9050fc77ca1271bc2466d5a542990138bc3db2cf9b04d12850844c