From 932fd304f87d859bdfffccb0829f5ab26315144f Mon Sep 17 00:00:00 2001 From: Gwyn Ciesla Date: Wed, 3 Apr 2019 19:00:44 +0000 Subject: [PATCH 01/24] 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..1dbb710 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# python-rst-linker + +The python-rst-linker package \ No newline at end of file From b4fa87cd076ab0b182c12866e78c8ee999ddf0b7 Mon Sep 17 00:00:00 2001 From: Dan Radez Date: Wed, 3 Apr 2019 15:19:13 -0400 Subject: [PATCH 02/24] initial spec file --- .gitignore | 1 + python-rst-linker.spec | 83 ++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 85 insertions(+) create mode 100644 .gitignore create mode 100644 python-rst-linker.spec create mode 100644 sources diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fe93504 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/rst.linker-1.10.tar.gz diff --git a/python-rst-linker.spec b/python-rst-linker.spec new file mode 100644 index 0000000..14068d9 --- /dev/null +++ b/python-rst-linker.spec @@ -0,0 +1,83 @@ +# Created by pyp2rpm-3.2.2 +%global pypi_name rst.linker +%global pkg_name rst-linker +# This package is interdependant on jaraco-packaging to build docs +# will build both with out docs and add docs in later +%global with_docs 0 + +Name: python-%{pkg_name} +Version: 1.10 +Release: 1%{?dist} +Summary: Can add links and perform other custom replacements to rst + +License: MIT +URL: https://github.com/jaraco/rst.linker +Source0: https://files.pythonhosted.org/packages/source/r/%{pypi_name}/%{pypi_name}-%{version}.tar.gz +BuildArch: noarch + +Requires: python3-six +Requires: python3-dateutil + +BuildRequires: python3-devel +BuildRequires: python3-pathspec +BuildRequires: python3-setuptools_scm >= 1.15.0 +BuildRequires: python3-setuptools +%if 0%{?with_docs} +BuildRequires: python3-sphinx +BuildRequires: python3-jaraco-packaging +%endif + +%description + rst.linker provides a routine for adding links and performing other custom +replacements to restructured text files as a Sphinx extension.License License +is indicated in the project metadata (typically one or more of the Trove +classifiers). For more details, see this explanation < In your sphinx +configuration file, include rst.linker as an extension and then add a +link_files configuration section... + +%if 0%{?with_docs} +%package -n python-%{pkg_name}-doc +Summary: rst.linker documentation +%description -n python-%{pkg_name}-doc +Documentation for rst.linker +%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 +# Must do the subpackages' install first because the scripts in /usr/bin are +# overwritten with every setup.py install. +%py3_install + +%check +# BuildRequires: python(2/3)-path does not meet the test-requirement for path.py +#%%{__python3} setup.py test + +%files -n python-%{pkg_name} +%license LICENSE +%doc README.rst +%{python3_sitelib}/rst +%{python3_sitelib}/%{pypi_name}-%{version}-py?.?.egg-info + +%if 0%{?with_docs} +%files -n python-%{pkg_name}-doc +%license LICENSE +%doc html +%endif + +%changelog +* Wed May 02 2018 Dan Radez - 1.10-1 +- Initial package. diff --git a/sources b/sources new file mode 100644 index 0000000..ddd362a --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (rst.linker-1.10.tar.gz) = 5541d0ba5299a6efee444ed3c4fb4f108bcdd7c84e4be0b0a44f71c9f13e18d5b5c4c38328a542fe5666d435e1e04c35c0db5535706a45932dc01590813a85cc From cd0ac767c5727e4a56c672c4cf88aeb71e8611fe Mon Sep 17 00:00:00 2001 From: Dan Radez Date: Fri, 5 Apr 2019 11:07:57 -0400 Subject: [PATCH 03/24] adding py3 subpackage. --- python-rst-linker.spec | 41 ++++++++++++++++++++++++----------------- 1 file changed, 24 insertions(+), 17 deletions(-) diff --git a/python-rst-linker.spec b/python-rst-linker.spec index 14068d9..06d09d4 100644 --- a/python-rst-linker.spec +++ b/python-rst-linker.spec @@ -3,11 +3,11 @@ %global pkg_name rst-linker # This package is interdependant on jaraco-packaging 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: 1.10 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Can add links and perform other custom replacements to rst License: MIT @@ -15,6 +15,16 @@ URL: https://github.com/jaraco/rst.linker Source0: https://files.pythonhosted.org/packages/source/r/%{pypi_name}/%{pypi_name}-%{version}.tar.gz BuildArch: noarch +%description + rst.linker provides a routine for adding links and performing other custom +replacements to restructured text files as a Sphinx extension.License License +is indicated in the project metadata (typically one or more of the Trove +classifiers). For more details, see this explanation < In your sphinx +configuration file, include rst.linker as an extension and then add a +link_files configuration section... + +%package -n python3-%{pkg_name} +Summary: %{summary} Requires: python3-six Requires: python3-dateutil @@ -22,22 +32,17 @@ BuildRequires: python3-devel BuildRequires: python3-pathspec BuildRequires: python3-setuptools_scm >= 1.15.0 BuildRequires: python3-setuptools -%if 0%{?with_docs} -BuildRequires: python3-sphinx -BuildRequires: python3-jaraco-packaging -%endif +%{?python_provide:%python_provide python3-%{pkg_name}} -%description - rst.linker provides a routine for adding links and performing other custom -replacements to restructured text files as a Sphinx extension.License License -is indicated in the project metadata (typically one or more of the Trove -classifiers). For more details, see this explanation < In your sphinx -configuration file, include rst.linker as an extension and then add a -link_files configuration section... +%description -n python3-%{pkg_name} +%{description} -%if 0%{?with_docs} +%if %{with docs} %package -n python-%{pkg_name}-doc Summary: rst.linker documentation +BuildRequires: python3-sphinx +BuildRequires: python3-jaraco-packaging + %description -n python-%{pkg_name}-doc Documentation for rst.linker %endif @@ -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 @@ -66,18 +71,20 @@ rm -rf html/.{doctrees,buildinfo} # BuildRequires: python(2/3)-path does not meet the test-requirement for path.py #%%{__python3} setup.py test -%files -n python-%{pkg_name} +%files -n python3-%{pkg_name} %license LICENSE %doc README.rst %{python3_sitelib}/rst %{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 - 1.10-2 +- adding py3 subpackage. * Wed May 02 2018 Dan Radez - 1.10-1 - Initial package. From 63bf9b519975c344074e3b65b20ca7ad25a92a49 Mon Sep 17 00:00:00 2001 From: Dan Radez Date: Fri, 5 Apr 2019 11:23:34 -0400 Subject: [PATCH 04/24] updating to python3dist() --- python-rst-linker.spec | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/python-rst-linker.spec b/python-rst-linker.spec index 06d09d4..1109167 100644 --- a/python-rst-linker.spec +++ b/python-rst-linker.spec @@ -25,13 +25,13 @@ link_files configuration section... %package -n python3-%{pkg_name} Summary: %{summary} -Requires: python3-six -Requires: python3-dateutil +Requires: python3dist(six) +Requires: python3dist(dateutil) BuildRequires: python3-devel -BuildRequires: python3-pathspec +BuildRequires: python3dist(pathspec) BuildRequires: python3-setuptools_scm >= 1.15.0 -BuildRequires: python3-setuptools +BuildRequires: python3dist(setuptools) %{?python_provide:%python_provide python3-%{pkg_name}} %description -n python3-%{pkg_name} @@ -40,8 +40,8 @@ BuildRequires: python3-setuptools %if %{with docs} %package -n python-%{pkg_name}-doc Summary: rst.linker documentation -BuildRequires: python3-sphinx -BuildRequires: python3-jaraco-packaging +BuildRequires: python3dist(sphinx) +BuildRequires: python3dist(jaraco-packaging) %description -n python-%{pkg_name}-doc Documentation for rst.linker From f2874e37f95f992ebd0287c211692f2c9b231c05 Mon Sep 17 00:00:00 2001 From: Dan Radez Date: Mon, 8 Apr 2019 10:33:35 -0400 Subject: [PATCH 05/24] fixing deps in prep to enable docs build --- python-rst-linker.spec | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/python-rst-linker.spec b/python-rst-linker.spec index 1109167..253cdcf 100644 --- a/python-rst-linker.spec +++ b/python-rst-linker.spec @@ -7,7 +7,7 @@ Name: python-%{pkg_name} Version: 1.10 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Can add links and perform other custom replacements to rst License: MIT @@ -41,7 +41,7 @@ BuildRequires: python3dist(setuptools) %package -n python-%{pkg_name}-doc Summary: rst.linker documentation BuildRequires: python3dist(sphinx) -BuildRequires: python3dist(jaraco-packaging) +BuildRequires: python3-jaraco-packaging %description -n python-%{pkg_name}-doc Documentation for rst.linker @@ -84,7 +84,11 @@ rm -rf html/.{doctrees,buildinfo} %endif %changelog +* Mon Apr 08 2019 Dan Radez - 1.10-3 +- fixing dep to prep for enabling docs build + * Fri Apr 05 2019 Dan Radez - 1.10-2 - adding py3 subpackage. + * Wed May 02 2018 Dan Radez - 1.10-1 - Initial package. From 2c51bbd3ae241d2ebe0e5671fb653ea82c3edc97 Mon Sep 17 00:00:00 2001 From: Dan Radez Date: Mon, 8 Apr 2019 22:34:07 -0400 Subject: [PATCH 06/24] fixing egg info --- python-rst-linker.spec | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/python-rst-linker.spec b/python-rst-linker.spec index 253cdcf..b612556 100644 --- a/python-rst-linker.spec +++ b/python-rst-linker.spec @@ -7,7 +7,7 @@ Name: python-%{pkg_name} Version: 1.10 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Can add links and perform other custom replacements to rst License: MIT @@ -26,7 +26,7 @@ link_files configuration section... %package -n python3-%{pkg_name} Summary: %{summary} Requires: python3dist(six) -Requires: python3dist(dateutil) +Requires: python3-dateutil BuildRequires: python3-devel BuildRequires: python3dist(pathspec) @@ -51,6 +51,8 @@ Documentation for rst.linker %autosetup -n %{pypi_name}-%{version} # Remove bundled egg-info rm -rf %{pypi_name}.egg-info +# rename package using a - +sed -i 's/rst.linker/rst-linker/' setup.py %build %py3_build @@ -75,7 +77,7 @@ rm -rf html/.{doctrees,buildinfo} %license LICENSE %doc README.rst %{python3_sitelib}/rst -%{python3_sitelib}/%{pypi_name}-%{version}-py?.?.egg-info +%{python3_sitelib}/rst_linker-%{version}-py?.?.egg-info %if %{with docs} %files -n python-%{pkg_name}-doc @@ -84,6 +86,9 @@ rm -rf html/.{doctrees,buildinfo} %endif %changelog +* Mon Apr 08 2019 Dan Radez - 1.10-4 +- fixing egg info + * Mon Apr 08 2019 Dan Radez - 1.10-3 - fixing dep to prep for enabling docs build From ae2aa9dcd82c364ffaa359f8630ed6179f73c4d3 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 26 Jul 2019 16:07:16 +0000 Subject: [PATCH 07/24] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- python-rst-linker.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-rst-linker.spec b/python-rst-linker.spec index b612556..8a8c05c 100644 --- a/python-rst-linker.spec +++ b/python-rst-linker.spec @@ -7,7 +7,7 @@ Name: python-%{pkg_name} Version: 1.10 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Can add links and perform other custom replacements to rst License: MIT @@ -86,6 +86,9 @@ rm -rf html/.{doctrees,buildinfo} %endif %changelog +* Fri Jul 26 2019 Fedora Release Engineering - 1.10-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Mon Apr 08 2019 Dan Radez - 1.10-4 - fixing egg info From 40bd6ce84978ba4fd5724752e2f5780df42c7b0a Mon Sep 17 00:00:00 2001 From: Dan Radez Date: Fri, 16 Aug 2019 15:35:32 -0400 Subject: [PATCH 08/24] updating to 1.11 --- .gitignore | 1 + python-rst-linker.spec | 9 ++++++--- sources | 1 + 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index fe93504..15fa7d2 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /rst.linker-1.10.tar.gz +/rst.linker-1.11.tar.gz diff --git a/python-rst-linker.spec b/python-rst-linker.spec index 8a8c05c..fc04e18 100644 --- a/python-rst-linker.spec +++ b/python-rst-linker.spec @@ -6,8 +6,8 @@ %bcond_with docs Name: python-%{pkg_name} -Version: 1.10 -Release: 5%{?dist} +Version: 1.11 +Release: 1%{?dist} Summary: Can add links and perform other custom replacements to rst License: MIT @@ -52,7 +52,7 @@ Documentation for rst.linker # Remove bundled egg-info rm -rf %{pypi_name}.egg-info # rename package using a - -sed -i 's/rst.linker/rst-linker/' setup.py +sed -i 's/rst.linker/rst-linker/' setup.cfg %build %py3_build @@ -86,6 +86,9 @@ rm -rf html/.{doctrees,buildinfo} %endif %changelog +* Fri Aug 16 2019 Dan Radez - 1.11-1 +- updating to 1.11 + * Fri Jul 26 2019 Fedora Release Engineering - 1.10-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild diff --git a/sources b/sources index ddd362a..dcce6ee 100644 --- a/sources +++ b/sources @@ -1 +1,2 @@ SHA512 (rst.linker-1.10.tar.gz) = 5541d0ba5299a6efee444ed3c4fb4f108bcdd7c84e4be0b0a44f71c9f13e18d5b5c4c38328a542fe5666d435e1e04c35c0db5535706a45932dc01590813a85cc +SHA512 (rst.linker-1.11.tar.gz) = 8e748330f60e2e1f859fa3ec3fad706d7bbafc78a402b0df242bda7caff1fad3f1b17873fa9ee749d3d214e094f24a35695c627cf9a8d8f08ca99ee6ad0e4e6d From 07754fb9a816239afe0013f88de8a4114170372d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Mon, 19 Aug 2019 10:55:50 +0200 Subject: [PATCH 09/24] Rebuilt for Python 3.8 --- python-rst-linker.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-rst-linker.spec b/python-rst-linker.spec index fc04e18..df31f5e 100644 --- a/python-rst-linker.spec +++ b/python-rst-linker.spec @@ -7,7 +7,7 @@ Name: python-%{pkg_name} Version: 1.11 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Can add links and perform other custom replacements to rst License: MIT @@ -86,6 +86,9 @@ rm -rf html/.{doctrees,buildinfo} %endif %changelog +* Mon Aug 19 2019 Miro Hrončok - 1.11-2 +- Rebuilt for Python 3.8 + * Fri Aug 16 2019 Dan Radez - 1.11-1 - updating to 1.11 From b3db76fb63d325e038695c71484e71f5505d142a Mon Sep 17 00:00:00 2001 From: Dan Radez Date: Tue, 20 Aug 2019 10:32:29 -0400 Subject: [PATCH 10/24] removing the sed . to _ --- python-rst-linker.spec | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/python-rst-linker.spec b/python-rst-linker.spec index df31f5e..56c239d 100644 --- a/python-rst-linker.spec +++ b/python-rst-linker.spec @@ -7,7 +7,7 @@ Name: python-%{pkg_name} Version: 1.11 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Can add links and perform other custom replacements to rst License: MIT @@ -51,8 +51,6 @@ Documentation for rst.linker %autosetup -n %{pypi_name}-%{version} # Remove bundled egg-info rm -rf %{pypi_name}.egg-info -# rename package using a - -sed -i 's/rst.linker/rst-linker/' setup.cfg %build %py3_build @@ -77,7 +75,7 @@ rm -rf html/.{doctrees,buildinfo} %license LICENSE %doc README.rst %{python3_sitelib}/rst -%{python3_sitelib}/rst_linker-%{version}-py?.?.egg-info +%{python3_sitelib}/rst.linker-%{version}-py?.?.egg-info %if %{with docs} %files -n python-%{pkg_name}-doc @@ -86,6 +84,9 @@ rm -rf html/.{doctrees,buildinfo} %endif %changelog +* Tue Aug 20 2019 Dan Radez - 1.11-2 +- removing the sed . to _ it's confusing and not needed + * Mon Aug 19 2019 Miro Hrončok - 1.11-2 - Rebuilt for Python 3.8 From 58e139d99f11c88daa9f7ff59cf722101e0b4b6b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Thu, 3 Oct 2019 14:29:18 +0200 Subject: [PATCH 11/24] Rebuilt for Python 3.8.0rc1 (#1748018) --- python-rst-linker.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-rst-linker.spec b/python-rst-linker.spec index 56c239d..5f8aa0e 100644 --- a/python-rst-linker.spec +++ b/python-rst-linker.spec @@ -7,7 +7,7 @@ Name: python-%{pkg_name} Version: 1.11 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Can add links and perform other custom replacements to rst License: MIT @@ -84,6 +84,9 @@ rm -rf html/.{doctrees,buildinfo} %endif %changelog +* Thu Oct 03 2019 Miro Hrončok - 1.11-4 +- Rebuilt for Python 3.8.0rc1 (#1748018) + * Tue Aug 20 2019 Dan Radez - 1.11-2 - removing the sed . to _ it's confusing and not needed From c035def2c9b43efbdb26f8813aa528a941a16151 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 30 Jan 2020 15:07:09 +0000 Subject: [PATCH 12/24] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- python-rst-linker.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-rst-linker.spec b/python-rst-linker.spec index 5f8aa0e..297d871 100644 --- a/python-rst-linker.spec +++ b/python-rst-linker.spec @@ -7,7 +7,7 @@ Name: python-%{pkg_name} Version: 1.11 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Can add links and perform other custom replacements to rst License: MIT @@ -84,6 +84,9 @@ rm -rf html/.{doctrees,buildinfo} %endif %changelog +* Thu Jan 30 2020 Fedora Release Engineering - 1.11-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Thu Oct 03 2019 Miro Hrončok - 1.11-4 - Rebuilt for Python 3.8.0rc1 (#1748018) From d3b2a404da1ab5886f4ae36a23e830ae06af7304 Mon Sep 17 00:00:00 2001 From: Dan Radez Date: Wed, 12 Feb 2020 11:37:12 -0500 Subject: [PATCH 13/24] updating to 2.0 --- .gitignore | 1 + python-rst-linker.spec | 7 +++++-- sources | 1 + 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 15fa7d2..1e81c49 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /rst.linker-1.10.tar.gz /rst.linker-1.11.tar.gz +/rst.linker-2.0.0.tar.gz diff --git a/python-rst-linker.spec b/python-rst-linker.spec index 297d871..c21ef60 100644 --- a/python-rst-linker.spec +++ b/python-rst-linker.spec @@ -6,8 +6,8 @@ %bcond_with docs Name: python-%{pkg_name} -Version: 1.11 -Release: 5%{?dist} +Version: 2.0.0 +Release: 1%{?dist} Summary: Can add links and perform other custom replacements to rst License: MIT @@ -84,6 +84,9 @@ rm -rf html/.{doctrees,buildinfo} %endif %changelog +* Wed Feb 12 2020 Dan Radez - 2.0.0-1 +- Update to 2.0 + * Thu Jan 30 2020 Fedora Release Engineering - 1.11-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild diff --git a/sources b/sources index dcce6ee..7cc8145 100644 --- a/sources +++ b/sources @@ -1,2 +1,3 @@ SHA512 (rst.linker-1.10.tar.gz) = 5541d0ba5299a6efee444ed3c4fb4f108bcdd7c84e4be0b0a44f71c9f13e18d5b5c4c38328a542fe5666d435e1e04c35c0db5535706a45932dc01590813a85cc SHA512 (rst.linker-1.11.tar.gz) = 8e748330f60e2e1f859fa3ec3fad706d7bbafc78a402b0df242bda7caff1fad3f1b17873fa9ee749d3d214e094f24a35695c627cf9a8d8f08ca99ee6ad0e4e6d +SHA512 (rst.linker-2.0.0.tar.gz) = ea9fa95de66c95dc384c888446512be66b180d0d76e99fe7a6b8f8348436d4be959d3d567fa521d9fc925b537467a4fdf05f9e9d17f7a6df4aafd6dfd323e4fc From 0d9c88baa81586a3e57a15a4c22826443d44f6aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Tue, 26 May 2020 03:38:15 +0200 Subject: [PATCH 14/24] Rebuilt for Python 3.9 --- python-rst-linker.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-rst-linker.spec b/python-rst-linker.spec index c21ef60..ec00729 100644 --- a/python-rst-linker.spec +++ b/python-rst-linker.spec @@ -7,7 +7,7 @@ Name: python-%{pkg_name} Version: 2.0.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Can add links and perform other custom replacements to rst License: MIT @@ -84,6 +84,9 @@ rm -rf html/.{doctrees,buildinfo} %endif %changelog +* Tue May 26 2020 Miro Hrončok - 2.0.0-2 +- Rebuilt for Python 3.9 + * Wed Feb 12 2020 Dan Radez - 2.0.0-1 - Update to 2.0 From 45d211b739fee9716abd9f2a53e0e5bc1315c64b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Mon, 13 Jul 2020 21:04:39 +0200 Subject: [PATCH 15/24] 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-rst-linker.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python-rst-linker.spec b/python-rst-linker.spec index ec00729..c97b910 100644 --- a/python-rst-linker.spec +++ b/python-rst-linker.spec @@ -75,7 +75,7 @@ rm -rf html/.{doctrees,buildinfo} %license LICENSE %doc README.rst %{python3_sitelib}/rst -%{python3_sitelib}/rst.linker-%{version}-py?.?.egg-info +%{python3_sitelib}/rst.linker-%{version}-py%{python3_version}.egg-info %if %{with docs} %files -n python-%{pkg_name}-doc From f23f76268f15e176f7e0e955766ea2f5e73876ed Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 29 Jul 2020 03:43:54 +0000 Subject: [PATCH 16/24] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- python-rst-linker.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-rst-linker.spec b/python-rst-linker.spec index c97b910..7f23448 100644 --- a/python-rst-linker.spec +++ b/python-rst-linker.spec @@ -7,7 +7,7 @@ Name: python-%{pkg_name} Version: 2.0.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Can add links and perform other custom replacements to rst License: MIT @@ -84,6 +84,9 @@ rm -rf html/.{doctrees,buildinfo} %endif %changelog +* Wed Jul 29 2020 Fedora Release Engineering - 2.0.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Tue May 26 2020 Miro Hrončok - 2.0.0-2 - Rebuilt for Python 3.9 From ccebb8140be7a722beba585184bee62896e13d03 Mon Sep 17 00:00:00 2001 From: Dan Radez Date: Wed, 9 Dec 2020 12:16:07 -0500 Subject: [PATCH 17/24] update to 2.1.1 --- .gitignore | 1 + python-rst-linker.spec | 8 ++++++-- sources | 1 + 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 1e81c49..ec206d0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /rst.linker-1.10.tar.gz /rst.linker-1.11.tar.gz /rst.linker-2.0.0.tar.gz +/rst.linker-2.1.1.tar.gz diff --git a/python-rst-linker.spec b/python-rst-linker.spec index 7f23448..6578bcc 100644 --- a/python-rst-linker.spec +++ b/python-rst-linker.spec @@ -6,8 +6,8 @@ %bcond_with docs Name: python-%{pkg_name} -Version: 2.0.0 -Release: 3%{?dist} +Version: 2.1.1 +Release: 1%{?dist} Summary: Can add links and perform other custom replacements to rst License: MIT @@ -32,6 +32,7 @@ BuildRequires: python3-devel BuildRequires: python3dist(pathspec) BuildRequires: python3-setuptools_scm >= 1.15.0 BuildRequires: python3dist(setuptools) +BuildRequires: python3dist(toml) %{?python_provide:%python_provide python3-%{pkg_name}} %description -n python3-%{pkg_name} @@ -84,6 +85,9 @@ rm -rf html/.{doctrees,buildinfo} %endif %changelog +* Wed Dec 09 2020 Dan Radez - 2.1.1-1 +- Update to 2.1.1 + * Wed Jul 29 2020 Fedora Release Engineering - 2.0.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild diff --git a/sources b/sources index 7cc8145..17436c7 100644 --- a/sources +++ b/sources @@ -1,3 +1,4 @@ SHA512 (rst.linker-1.10.tar.gz) = 5541d0ba5299a6efee444ed3c4fb4f108bcdd7c84e4be0b0a44f71c9f13e18d5b5c4c38328a542fe5666d435e1e04c35c0db5535706a45932dc01590813a85cc SHA512 (rst.linker-1.11.tar.gz) = 8e748330f60e2e1f859fa3ec3fad706d7bbafc78a402b0df242bda7caff1fad3f1b17873fa9ee749d3d214e094f24a35695c627cf9a8d8f08ca99ee6ad0e4e6d SHA512 (rst.linker-2.0.0.tar.gz) = ea9fa95de66c95dc384c888446512be66b180d0d76e99fe7a6b8f8348436d4be959d3d567fa521d9fc925b537467a4fdf05f9e9d17f7a6df4aafd6dfd323e4fc +SHA512 (rst.linker-2.1.1.tar.gz) = c49e6b3de41636184f75941d8fa258c2dad3d13a7d82b6221a10f583ada228a96f56abefce7840f93cbae8512332b69430601961cc396f3917b912e369b2b1b9 From 75e4ed32a947c579a31497b6272d845564a48fca Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 27 Jan 2021 13:14:35 +0000 Subject: [PATCH 18/24] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- python-rst-linker.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-rst-linker.spec b/python-rst-linker.spec index 6578bcc..7e743d4 100644 --- a/python-rst-linker.spec +++ b/python-rst-linker.spec @@ -7,7 +7,7 @@ Name: python-%{pkg_name} Version: 2.1.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Can add links and perform other custom replacements to rst License: MIT @@ -85,6 +85,9 @@ rm -rf html/.{doctrees,buildinfo} %endif %changelog +* Wed Jan 27 2021 Fedora Release Engineering - 2.1.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Wed Dec 09 2020 Dan Radez - 2.1.1-1 - Update to 2.1.1 From 749fbc1466a48013f9941f17544c002ecb850f60 Mon Sep 17 00:00:00 2001 From: Dan Radez Date: Fri, 30 Apr 2021 08:52:09 -0400 Subject: [PATCH 19/24] update to 2.2.0 --- .gitignore | 1 + python-rst-linker.spec | 7 +++++-- sources | 5 +---- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index ec206d0..6b27b69 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ /rst.linker-1.11.tar.gz /rst.linker-2.0.0.tar.gz /rst.linker-2.1.1.tar.gz +/rst.linker-2.2.0.tar.gz diff --git a/python-rst-linker.spec b/python-rst-linker.spec index 7e743d4..20620d5 100644 --- a/python-rst-linker.spec +++ b/python-rst-linker.spec @@ -6,8 +6,8 @@ %bcond_with docs Name: python-%{pkg_name} -Version: 2.1.1 -Release: 2%{?dist} +Version: 2.2.0 +Release: 1%{?dist} Summary: Can add links and perform other custom replacements to rst License: MIT @@ -85,6 +85,9 @@ rm -rf html/.{doctrees,buildinfo} %endif %changelog +* Fri Apr 30 2021 Dan Radez - 2.2.0-1 +- Update to 2.2.0 + * Wed Jan 27 2021 Fedora Release Engineering - 2.1.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild diff --git a/sources b/sources index 17436c7..37bec3d 100644 --- a/sources +++ b/sources @@ -1,4 +1 @@ -SHA512 (rst.linker-1.10.tar.gz) = 5541d0ba5299a6efee444ed3c4fb4f108bcdd7c84e4be0b0a44f71c9f13e18d5b5c4c38328a542fe5666d435e1e04c35c0db5535706a45932dc01590813a85cc -SHA512 (rst.linker-1.11.tar.gz) = 8e748330f60e2e1f859fa3ec3fad706d7bbafc78a402b0df242bda7caff1fad3f1b17873fa9ee749d3d214e094f24a35695c627cf9a8d8f08ca99ee6ad0e4e6d -SHA512 (rst.linker-2.0.0.tar.gz) = ea9fa95de66c95dc384c888446512be66b180d0d76e99fe7a6b8f8348436d4be959d3d567fa521d9fc925b537467a4fdf05f9e9d17f7a6df4aafd6dfd323e4fc -SHA512 (rst.linker-2.1.1.tar.gz) = c49e6b3de41636184f75941d8fa258c2dad3d13a7d82b6221a10f583ada228a96f56abefce7840f93cbae8512332b69430601961cc396f3917b912e369b2b1b9 +SHA512 (rst.linker-2.2.0.tar.gz) = 3e51103eb5111e1dd6e4e6f8c546a366eeb669d27b050de41a0580ac992117c530c322ed7cf31fd26a2f4a872ce8a7a41e801630e9291a6a644befd7272351a1 From a296b5b8ce47502f0867efc1ee2a7264be3cbb51 Mon Sep 17 00:00:00 2001 From: Python Maint Date: Fri, 4 Jun 2021 11:39:37 +0200 Subject: [PATCH 20/24] Rebuilt for Python 3.10 --- python-rst-linker.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-rst-linker.spec b/python-rst-linker.spec index 20620d5..1db456a 100644 --- a/python-rst-linker.spec +++ b/python-rst-linker.spec @@ -7,7 +7,7 @@ Name: python-%{pkg_name} Version: 2.2.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Can add links and perform other custom replacements to rst License: MIT @@ -85,6 +85,9 @@ rm -rf html/.{doctrees,buildinfo} %endif %changelog +* Fri Jun 04 2021 Python Maint - 2.2.0-2 +- Rebuilt for Python 3.10 + * Fri Apr 30 2021 Dan Radez - 2.2.0-1 - Update to 2.2.0 From 99fb5c044b009fb787e585a91f7b1b77c5768685 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 23 Jul 2021 09:19:45 +0000 Subject: [PATCH 21/24] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- python-rst-linker.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-rst-linker.spec b/python-rst-linker.spec index 1db456a..90b040b 100644 --- a/python-rst-linker.spec +++ b/python-rst-linker.spec @@ -7,7 +7,7 @@ Name: python-%{pkg_name} Version: 2.2.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Can add links and perform other custom replacements to rst License: MIT @@ -85,6 +85,9 @@ rm -rf html/.{doctrees,buildinfo} %endif %changelog +* Fri Jul 23 2021 Fedora Release Engineering - 2.2.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Fri Jun 04 2021 Python Maint - 2.2.0-2 - Rebuilt for Python 3.10 From a7e3b1144f3843d645db868042a79e84d5e42bdc Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 21 Jan 2022 15:20:28 +0000 Subject: [PATCH 22/24] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- python-rst-linker.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-rst-linker.spec b/python-rst-linker.spec index 90b040b..b6d6b57 100644 --- a/python-rst-linker.spec +++ b/python-rst-linker.spec @@ -7,7 +7,7 @@ Name: python-%{pkg_name} Version: 2.2.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Can add links and perform other custom replacements to rst License: MIT @@ -85,6 +85,9 @@ rm -rf html/.{doctrees,buildinfo} %endif %changelog +* Fri Jan 21 2022 Fedora Release Engineering - 2.2.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Fri Jul 23 2021 Fedora Release Engineering - 2.2.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild From 79fbbbaf1ea15fb41b414f8b96280620964b907d Mon Sep 17 00:00:00 2001 From: Dan Radez Date: Tue, 25 Jan 2022 09:24:28 -0500 Subject: [PATCH 23/24] reenabling checks --- python-rst-linker.spec | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/python-rst-linker.spec b/python-rst-linker.spec index b6d6b57..a39094e 100644 --- a/python-rst-linker.spec +++ b/python-rst-linker.spec @@ -7,7 +7,7 @@ Name: python-%{pkg_name} Version: 2.2.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Can add links and perform other custom replacements to rst License: MIT @@ -29,7 +29,11 @@ Requires: python3dist(six) Requires: python3-dateutil BuildRequires: python3-devel +BuildRequires: python3-dateutil BuildRequires: python3dist(pathspec) +BuildRequires: python3-path +BuildRequires: python3dist(pip) +BuildRequires: python3dist(pytest) BuildRequires: python3-setuptools_scm >= 1.15.0 BuildRequires: python3dist(setuptools) BuildRequires: python3dist(toml) @@ -70,7 +74,7 @@ rm -rf html/.{doctrees,buildinfo} %check # BuildRequires: python(2/3)-path does not meet the test-requirement for path.py -#%%{__python3} setup.py test +%{__python3} setup.py test %files -n python3-%{pkg_name} %license LICENSE @@ -85,6 +89,9 @@ rm -rf html/.{doctrees,buildinfo} %endif %changelog +* Tue Jan 25 2022 Dan Radez - 2.2.0-5 +- re-enabling checks + * Fri Jan 21 2022 Fedora Release Engineering - 2.2.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild From b98190c6a3b1902aba020dac2457f6aef4b127bb Mon Sep 17 00:00:00 2001 From: MSVSphere Packaging Team Date: Tue, 31 Oct 2023 00:02:53 +0300 Subject: [PATCH 24/24] 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 1dbb710..0000000 --- a/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# python-rst-linker - -The python-rst-linker package \ No newline at end of file diff --git a/sources b/sources deleted file mode 100644 index 37bec3d..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -SHA512 (rst.linker-2.2.0.tar.gz) = 3e51103eb5111e1dd6e4e6f8c546a366eeb669d27b050de41a0580ac992117c530c322ed7cf31fd26a2f4a872ce8a7a41e801630e9291a6a644befd7272351a1