From 8d38e6efe92b3090acb4dc37321227787d19b732 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 21 Jan 2022 16:20:31 +0000 Subject: [PATCH 01/19] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- python-vcstool.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-vcstool.spec b/python-vcstool.spec index 3eddeae..4d7a275 100644 --- a/python-vcstool.spec +++ b/python-vcstool.spec @@ -5,7 +5,7 @@ Name: python-%{srcname} Version: 0.2.15 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Tool to invoke vcs commands on multiple repositories License: ASL 2.0 @@ -206,6 +206,9 @@ ln -s vcs %{buildroot}%{_datadir}/bash-completion/completions/vcs-%{python3_vers %changelog +* Fri Jan 21 2022 Fedora Release Engineering - 0.2.15-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Tue Jul 27 2021 Fedora Release Engineering - 0.2.15-4 - Second attempt - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild From f43bed1174b5b2082f0eb4a2c30ba2b23bcc1339 Mon Sep 17 00:00:00 2001 From: Python Maint Date: Mon, 13 Jun 2022 17:17:06 +0200 Subject: [PATCH 02/19] Rebuilt for Python 3.11 --- python-vcstool.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-vcstool.spec b/python-vcstool.spec index 4d7a275..cc87c29 100644 --- a/python-vcstool.spec +++ b/python-vcstool.spec @@ -5,7 +5,7 @@ Name: python-%{srcname} Version: 0.2.15 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Tool to invoke vcs commands on multiple repositories License: ASL 2.0 @@ -206,6 +206,9 @@ ln -s vcs %{buildroot}%{_datadir}/bash-completion/completions/vcs-%{python3_vers %changelog +* Mon Jun 13 2022 Python Maint - 0.2.15-6 +- Rebuilt for Python 3.11 + * Fri Jan 21 2022 Fedora Release Engineering - 0.2.15-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild From 27645f4661c952ec9903e259f611abe10e542440 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 22 Jul 2022 23:16:59 +0000 Subject: [PATCH 03/19] Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- python-vcstool.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-vcstool.spec b/python-vcstool.spec index cc87c29..b3d24b4 100644 --- a/python-vcstool.spec +++ b/python-vcstool.spec @@ -5,7 +5,7 @@ Name: python-%{srcname} Version: 0.2.15 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Tool to invoke vcs commands on multiple repositories License: ASL 2.0 @@ -206,6 +206,9 @@ ln -s vcs %{buildroot}%{_datadir}/bash-completion/completions/vcs-%{python3_vers %changelog +* Fri Jul 22 2022 Fedora Release Engineering - 0.2.15-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + * Mon Jun 13 2022 Python Maint - 0.2.15-6 - Rebuilt for Python 3.11 From 7d1639f4f750ae7f8d1058cef1f7788ba80f1057 Mon Sep 17 00:00:00 2001 From: Scott K Logan Date: Sun, 16 Oct 2022 16:10:46 -0700 Subject: [PATCH 04/19] Update to 0.3.0 Also drop Python 2 subpackage, which is no longer supported upstream --- .gitignore | 1 + python-vcstool.rpmlintrc | 5 -- python-vcstool.spec | 99 +++------------------------------------- sources | 2 +- 4 files changed, 9 insertions(+), 98 deletions(-) diff --git a/.gitignore b/.gitignore index 002b912..3662d02 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,4 @@ /vcstool-0.2.13.tar.gz /vcstool-0.2.14.tar.gz /vcstool-0.2.15.tar.gz +/vcstool-0.3.0.tar.gz diff --git a/python-vcstool.rpmlintrc b/python-vcstool.rpmlintrc index 29dbf35..76ccbc2 100644 --- a/python-vcstool.rpmlintrc +++ b/python-vcstool.rpmlintrc @@ -1,6 +1 @@ -# MANUAL PAGES addFilter(r'no-manual-page-for-binary (vcs|vcs-.*)( |$)') - -# SPELLING ERRORS -addFilter(r'spelling-error .* en_US (vcstools)( |$)') -addFilter(r'spelling-error Summary\(en_US\) (vcs)( |$)') diff --git a/python-vcstool.spec b/python-vcstool.spec index b3d24b4..49e7e24 100644 --- a/python-vcstool.spec +++ b/python-vcstool.spec @@ -1,11 +1,8 @@ -%{?!_without_python2:%global with_python2 0%{?_with_python2:1} || !(0%{?fedora} >= 30 || 0%{?rhel} >= 8)} -%{?!_without_python3:%global with_python3 0%{?_with_python3:1} || !0%{?rhel} || 0%{?rhel} >= 7} - %global srcname vcstool Name: python-%{srcname} -Version: 0.2.15 -Release: 7%{?dist} +Version: 0.3.0 +Release: 1%{?dist} Summary: Tool to invoke vcs commands on multiple repositories License: ASL 2.0 @@ -30,43 +27,6 @@ The biggest differences between the two are: command line tools built on top. -%if 0%{?with_python2} -%package -n python2-%{srcname} -Summary: %{summary} -BuildRequires: git -BuildRequires: python2-devel -BuildRequires: python2-pytest -BuildRequires: python2-pyyaml -BuildRequires: python2-setuptools -%{?python_provide:%python_provide python2-%{srcname}} - -%if %{undefined __pythondist_requires} -Requires: python2-pyyaml -Requires: python2-setuptools -%endif - -%if !0%{?rhel} || 0%{?rhel} >= 8 -Recommends: git -%endif - -%description -n python2-%{srcname} -Vcstool is a version control system (VCS) tool, designed to make working with -multiple repositories easier. - -Note: This tool should not be confused with vcstools (with a trailing s) which -provides a Python API for interacting with different version control systems. -The biggest differences between the two are: - -- vcstool doesn't use any state beside the repository working copies available - in the filesystem. -- The file format of vcstool export uses the relative paths of the repositories - as keys in YAML which avoids collisions by design. -- vcstool has significantly less lines of code than vcstools including the - command line tools built on top. -%endif - - -%if 0%{?with_python3} %package -n python%{python3_pkgversion}-%{srcname} Summary: %{summary} BuildRequires: git @@ -99,7 +59,6 @@ The biggest differences between the two are: as keys in YAML which avoids collisions by design. - vcstool has significantly less lines of code than vcstools including the command line tools built on top. -%endif %prep @@ -107,13 +66,7 @@ The biggest differences between the two are: %build -%if 0%{?with_python2} -%py2_build -%endif - -%if 0%{?with_python3} %py3_build -%endif %install @@ -124,27 +77,6 @@ The biggest differences between the two are: install -d %{buildroot}%{_datadir}/bash-completion/completions %{buildroot}%{_bindir} -%if 0%{?with_python2} -%py2_install -- --install-scripts %{_bindir}2 - -echo -n "" > py2_bins -for f in `ls %{buildroot}%{_bindir}2`; do - mv %{buildroot}%{_bindir}2/$f %{buildroot}%{_bindir}/$f-%{python2_version} - ln -s $f-%{python2_version} %{buildroot}%{_bindir}/$f-2 -%if !(0%{?with_python3}) - ln -s $f-%{python2_version} %{buildroot}%{_bindir}/$f - echo "%{_bindir}/$f" >> py2_bins -%endif - echo -e "%{_bindir}/$f-2\n%{_bindir}/$f-%{python2_version}" >> py2_bins -done - -# Integrate bash completion with the bash-completion package -cp -f %{buildroot}%{_datadir}/%{srcname}-completion/vcs.bash %{buildroot}%{_datadir}/bash-completion/completions/vcs -ln -sf vcs %{buildroot}%{_datadir}/bash-completion/completions/vcs-2 -ln -s vcs %{buildroot}%{_datadir}/bash-completion/completions/vcs-%{python2_version} -%endif - -%if 0%{?with_python3} %py3_install -- --install-scripts %{_bindir}%{python3_pkgversion} echo -n "" > py3_bins @@ -156,10 +88,9 @@ for f in `ls %{buildroot}%{_bindir}%{python3_pkgversion}`; do done # Integrate bash completion with the bash-completion package -cp -f %{buildroot}%{_datadir}/%{srcname}-completion/vcs.bash %{buildroot}%{_datadir}/bash-completion/completions/vcs +cp -af %{buildroot}%{_datadir}/%{srcname}-completion/vcs.bash %{buildroot}%{_datadir}/bash-completion/completions/vcs ln -sf vcs %{buildroot}%{_datadir}/bash-completion/completions/vcs-3 ln -s vcs %{buildroot}%{_datadir}/bash-completion/completions/vcs-%{python3_version} -%endif %check @@ -171,28 +102,9 @@ ln -s vcs %{buildroot}%{_datadir}/bash-completion/completions/vcs-%{python3_vers --ignore test/test_commands.py \\\ test -%if 0%{?with_python2} -%{__python2} -m pytest %pytest_options -%endif - -%if 0%{?with_python3} %{__python3} -m pytest %pytest_options -%endif -%if 0%{?with_python2} -%files -n python2-%{srcname} -f py2_bins -%license LICENSE -%doc CONTRIBUTING.md README.rst -%{python2_sitelib}/%{srcname}/ -%{python2_sitelib}/%{srcname}-%{version}-py%{python2_version}.egg-info/ -%{_datadir}/%{srcname}-completion -%{_datadir}/bash-completion/completions/vcs -%{_datadir}/bash-completion/completions/vcs-2 -%{_datadir}/bash-completion/completions/vcs-%{python2_version} -%endif - -%if 0%{?with_python3} %files -n python%{python3_pkgversion}-%{srcname} -f py3_bins %license LICENSE %doc CONTRIBUTING.md README.rst @@ -202,10 +114,13 @@ ln -s vcs %{buildroot}%{_datadir}/bash-completion/completions/vcs-%{python3_vers %{_datadir}/bash-completion/completions/vcs %{_datadir}/bash-completion/completions/vcs-3 %{_datadir}/bash-completion/completions/vcs-%{python3_version} -%endif %changelog +* Sun Oct 16 2022 Scott K Logan - 0.3.0-1 +- Update to 0.3.0 (rhbz#1991775) +- Drop Python 2 subpackage, which is no longer supported upstream + * Fri Jul 22 2022 Fedora Release Engineering - 0.2.15-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild diff --git a/sources b/sources index 330b1bb..a9697b1 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (vcstool-0.2.15.tar.gz) = be4817ff466687e57b04254cee5b5cf9b6759b2d1e01e5f756e7d2f1294ca485a172aaab98ba09fc33a3bf0fb86e8798d95f097a15d5491ef544fb2a8825e691 +SHA512 (vcstool-0.3.0.tar.gz) = f50ec4c23fce65f71ec0070b709840150f6a90b0620dd937c234c408951b4eb6ad9d53d841d3862ce7ece54c15458fd9db434341fd4a1eabb40a7084fb71b101 From 5beeb440456dfbbe3e9078b2cea43da3918d7c92 Mon Sep 17 00:00:00 2001 From: Scott K Logan Date: Sun, 16 Oct 2022 16:10:46 -0700 Subject: [PATCH 05/19] Update to 0.3.0 Also drop Python 2 subpackage, which is no longer supported upstream --- .gitignore | 1 + python-vcstool.rpmlintrc | 5 -- python-vcstool.spec | 99 +++------------------------------------- sources | 2 +- 4 files changed, 9 insertions(+), 98 deletions(-) diff --git a/.gitignore b/.gitignore index 002b912..3662d02 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,4 @@ /vcstool-0.2.13.tar.gz /vcstool-0.2.14.tar.gz /vcstool-0.2.15.tar.gz +/vcstool-0.3.0.tar.gz diff --git a/python-vcstool.rpmlintrc b/python-vcstool.rpmlintrc index 29dbf35..76ccbc2 100644 --- a/python-vcstool.rpmlintrc +++ b/python-vcstool.rpmlintrc @@ -1,6 +1 @@ -# MANUAL PAGES addFilter(r'no-manual-page-for-binary (vcs|vcs-.*)( |$)') - -# SPELLING ERRORS -addFilter(r'spelling-error .* en_US (vcstools)( |$)') -addFilter(r'spelling-error Summary\(en_US\) (vcs)( |$)') diff --git a/python-vcstool.spec b/python-vcstool.spec index 3eddeae..3b66726 100644 --- a/python-vcstool.spec +++ b/python-vcstool.spec @@ -1,11 +1,8 @@ -%{?!_without_python2:%global with_python2 0%{?_with_python2:1} || !(0%{?fedora} >= 30 || 0%{?rhel} >= 8)} -%{?!_without_python3:%global with_python3 0%{?_with_python3:1} || !0%{?rhel} || 0%{?rhel} >= 7} - %global srcname vcstool Name: python-%{srcname} -Version: 0.2.15 -Release: 4%{?dist} +Version: 0.3.0 +Release: 1%{?dist} Summary: Tool to invoke vcs commands on multiple repositories License: ASL 2.0 @@ -30,43 +27,6 @@ The biggest differences between the two are: command line tools built on top. -%if 0%{?with_python2} -%package -n python2-%{srcname} -Summary: %{summary} -BuildRequires: git -BuildRequires: python2-devel -BuildRequires: python2-pytest -BuildRequires: python2-pyyaml -BuildRequires: python2-setuptools -%{?python_provide:%python_provide python2-%{srcname}} - -%if %{undefined __pythondist_requires} -Requires: python2-pyyaml -Requires: python2-setuptools -%endif - -%if !0%{?rhel} || 0%{?rhel} >= 8 -Recommends: git -%endif - -%description -n python2-%{srcname} -Vcstool is a version control system (VCS) tool, designed to make working with -multiple repositories easier. - -Note: This tool should not be confused with vcstools (with a trailing s) which -provides a Python API for interacting with different version control systems. -The biggest differences between the two are: - -- vcstool doesn't use any state beside the repository working copies available - in the filesystem. -- The file format of vcstool export uses the relative paths of the repositories - as keys in YAML which avoids collisions by design. -- vcstool has significantly less lines of code than vcstools including the - command line tools built on top. -%endif - - -%if 0%{?with_python3} %package -n python%{python3_pkgversion}-%{srcname} Summary: %{summary} BuildRequires: git @@ -99,7 +59,6 @@ The biggest differences between the two are: as keys in YAML which avoids collisions by design. - vcstool has significantly less lines of code than vcstools including the command line tools built on top. -%endif %prep @@ -107,13 +66,7 @@ The biggest differences between the two are: %build -%if 0%{?with_python2} -%py2_build -%endif - -%if 0%{?with_python3} %py3_build -%endif %install @@ -124,27 +77,6 @@ The biggest differences between the two are: install -d %{buildroot}%{_datadir}/bash-completion/completions %{buildroot}%{_bindir} -%if 0%{?with_python2} -%py2_install -- --install-scripts %{_bindir}2 - -echo -n "" > py2_bins -for f in `ls %{buildroot}%{_bindir}2`; do - mv %{buildroot}%{_bindir}2/$f %{buildroot}%{_bindir}/$f-%{python2_version} - ln -s $f-%{python2_version} %{buildroot}%{_bindir}/$f-2 -%if !(0%{?with_python3}) - ln -s $f-%{python2_version} %{buildroot}%{_bindir}/$f - echo "%{_bindir}/$f" >> py2_bins -%endif - echo -e "%{_bindir}/$f-2\n%{_bindir}/$f-%{python2_version}" >> py2_bins -done - -# Integrate bash completion with the bash-completion package -cp -f %{buildroot}%{_datadir}/%{srcname}-completion/vcs.bash %{buildroot}%{_datadir}/bash-completion/completions/vcs -ln -sf vcs %{buildroot}%{_datadir}/bash-completion/completions/vcs-2 -ln -s vcs %{buildroot}%{_datadir}/bash-completion/completions/vcs-%{python2_version} -%endif - -%if 0%{?with_python3} %py3_install -- --install-scripts %{_bindir}%{python3_pkgversion} echo -n "" > py3_bins @@ -156,10 +88,9 @@ for f in `ls %{buildroot}%{_bindir}%{python3_pkgversion}`; do done # Integrate bash completion with the bash-completion package -cp -f %{buildroot}%{_datadir}/%{srcname}-completion/vcs.bash %{buildroot}%{_datadir}/bash-completion/completions/vcs +cp -af %{buildroot}%{_datadir}/%{srcname}-completion/vcs.bash %{buildroot}%{_datadir}/bash-completion/completions/vcs ln -sf vcs %{buildroot}%{_datadir}/bash-completion/completions/vcs-3 ln -s vcs %{buildroot}%{_datadir}/bash-completion/completions/vcs-%{python3_version} -%endif %check @@ -171,28 +102,9 @@ ln -s vcs %{buildroot}%{_datadir}/bash-completion/completions/vcs-%{python3_vers --ignore test/test_commands.py \\\ test -%if 0%{?with_python2} -%{__python2} -m pytest %pytest_options -%endif - -%if 0%{?with_python3} %{__python3} -m pytest %pytest_options -%endif -%if 0%{?with_python2} -%files -n python2-%{srcname} -f py2_bins -%license LICENSE -%doc CONTRIBUTING.md README.rst -%{python2_sitelib}/%{srcname}/ -%{python2_sitelib}/%{srcname}-%{version}-py%{python2_version}.egg-info/ -%{_datadir}/%{srcname}-completion -%{_datadir}/bash-completion/completions/vcs -%{_datadir}/bash-completion/completions/vcs-2 -%{_datadir}/bash-completion/completions/vcs-%{python2_version} -%endif - -%if 0%{?with_python3} %files -n python%{python3_pkgversion}-%{srcname} -f py3_bins %license LICENSE %doc CONTRIBUTING.md README.rst @@ -202,10 +114,13 @@ ln -s vcs %{buildroot}%{_datadir}/bash-completion/completions/vcs-%{python3_vers %{_datadir}/bash-completion/completions/vcs %{_datadir}/bash-completion/completions/vcs-3 %{_datadir}/bash-completion/completions/vcs-%{python3_version} -%endif %changelog +* Sun Oct 16 2022 Scott K Logan - 0.3.0-1 +- Update to 0.3.0 (rhbz#1991775) +- Drop Python 2 subpackage, which is no longer supported upstream + * Tue Jul 27 2021 Fedora Release Engineering - 0.2.15-4 - Second attempt - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild diff --git a/sources b/sources index 330b1bb..a9697b1 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (vcstool-0.2.15.tar.gz) = be4817ff466687e57b04254cee5b5cf9b6759b2d1e01e5f756e7d2f1294ca485a172aaab98ba09fc33a3bf0fb86e8798d95f097a15d5491ef544fb2a8825e691 +SHA512 (vcstool-0.3.0.tar.gz) = f50ec4c23fce65f71ec0070b709840150f6a90b0620dd937c234c408951b4eb6ad9d53d841d3862ce7ece54c15458fd9db434341fd4a1eabb40a7084fb71b101 From d60468f4d786a194eef298ccf0f538e2bcd4f6c5 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 20 Jan 2023 18:15:06 +0000 Subject: [PATCH 06/19] Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- python-vcstool.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-vcstool.spec b/python-vcstool.spec index 49e7e24..62a7159 100644 --- a/python-vcstool.spec +++ b/python-vcstool.spec @@ -2,7 +2,7 @@ Name: python-%{srcname} Version: 0.3.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Tool to invoke vcs commands on multiple repositories License: ASL 2.0 @@ -117,6 +117,9 @@ ln -s vcs %{buildroot}%{_datadir}/bash-completion/completions/vcs-%{python3_vers %changelog +* Fri Jan 20 2023 Fedora Release Engineering - 0.3.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + * Sun Oct 16 2022 Scott K Logan - 0.3.0-1 - Update to 0.3.0 (rhbz#1991775) - Drop Python 2 subpackage, which is no longer supported upstream From 2eefb44506b55c0c8e4d16a5826956980ce75f3b Mon Sep 17 00:00:00 2001 From: Python Maint Date: Tue, 13 Jun 2023 23:05:29 +0200 Subject: [PATCH 07/19] Rebuilt for Python 3.12 --- python-vcstool.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-vcstool.spec b/python-vcstool.spec index 62a7159..a47011e 100644 --- a/python-vcstool.spec +++ b/python-vcstool.spec @@ -2,7 +2,7 @@ Name: python-%{srcname} Version: 0.3.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Tool to invoke vcs commands on multiple repositories License: ASL 2.0 @@ -117,6 +117,9 @@ ln -s vcs %{buildroot}%{_datadir}/bash-completion/completions/vcs-%{python3_vers %changelog +* Tue Jun 13 2023 Python Maint - 0.3.0-3 +- Rebuilt for Python 3.12 + * Fri Jan 20 2023 Fedora Release Engineering - 0.3.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild From 567084bbda81a0ae9e35336774cd77246933d9db Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 21 Jul 2023 15:09:08 +0000 Subject: [PATCH 08/19] Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- python-vcstool.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-vcstool.spec b/python-vcstool.spec index a47011e..219f200 100644 --- a/python-vcstool.spec +++ b/python-vcstool.spec @@ -2,7 +2,7 @@ Name: python-%{srcname} Version: 0.3.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Tool to invoke vcs commands on multiple repositories License: ASL 2.0 @@ -117,6 +117,9 @@ ln -s vcs %{buildroot}%{_datadir}/bash-completion/completions/vcs-%{python3_vers %changelog +* Fri Jul 21 2023 Fedora Release Engineering - 0.3.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + * Tue Jun 13 2023 Python Maint - 0.3.0-3 - Rebuilt for Python 3.12 From 41b1bab071b9fd29509aae01a7367d07bb74a54e Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Mon, 22 Jan 2024 08:49:51 +0000 Subject: [PATCH 09/19] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- python-vcstool.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-vcstool.spec b/python-vcstool.spec index 219f200..0642b19 100644 --- a/python-vcstool.spec +++ b/python-vcstool.spec @@ -2,7 +2,7 @@ Name: python-%{srcname} Version: 0.3.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Tool to invoke vcs commands on multiple repositories License: ASL 2.0 @@ -117,6 +117,9 @@ ln -s vcs %{buildroot}%{_datadir}/bash-completion/completions/vcs-%{python3_vers %changelog +* Mon Jan 22 2024 Fedora Release Engineering - 0.3.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Fri Jul 21 2023 Fedora Release Engineering - 0.3.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild From bb6419bd5424a4ec65d2fd46430c60ee7c67929b Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 26 Jan 2024 12:33:29 +0000 Subject: [PATCH 10/19] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- python-vcstool.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-vcstool.spec b/python-vcstool.spec index 0642b19..3e6b41e 100644 --- a/python-vcstool.spec +++ b/python-vcstool.spec @@ -2,7 +2,7 @@ Name: python-%{srcname} Version: 0.3.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Tool to invoke vcs commands on multiple repositories License: ASL 2.0 @@ -117,6 +117,9 @@ ln -s vcs %{buildroot}%{_datadir}/bash-completion/completions/vcs-%{python3_vers %changelog +* Fri Jan 26 2024 Fedora Release Engineering - 0.3.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Mon Jan 22 2024 Fedora Release Engineering - 0.3.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From 95bd11b958d844a0711fd197ff0092651b6bd8bd Mon Sep 17 00:00:00 2001 From: Python Maint Date: Fri, 7 Jun 2024 10:59:20 +0200 Subject: [PATCH 11/19] Rebuilt for Python 3.13 --- python-vcstool.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-vcstool.spec b/python-vcstool.spec index 3e6b41e..036c03a 100644 --- a/python-vcstool.spec +++ b/python-vcstool.spec @@ -2,7 +2,7 @@ Name: python-%{srcname} Version: 0.3.0 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Tool to invoke vcs commands on multiple repositories License: ASL 2.0 @@ -117,6 +117,9 @@ ln -s vcs %{buildroot}%{_datadir}/bash-completion/completions/vcs-%{python3_vers %changelog +* Fri Jun 07 2024 Python Maint - 0.3.0-7 +- Rebuilt for Python 3.13 + * Fri Jan 26 2024 Fedora Release Engineering - 0.3.0-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From c893949e57c39ba842d81ceb5877cb806bf8a2ab Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 19 Jul 2024 16:54:03 +0000 Subject: [PATCH 12/19] Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild --- python-vcstool.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-vcstool.spec b/python-vcstool.spec index 036c03a..869de89 100644 --- a/python-vcstool.spec +++ b/python-vcstool.spec @@ -2,7 +2,7 @@ Name: python-%{srcname} Version: 0.3.0 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Tool to invoke vcs commands on multiple repositories License: ASL 2.0 @@ -117,6 +117,9 @@ ln -s vcs %{buildroot}%{_datadir}/bash-completion/completions/vcs-%{python3_vers %changelog +* Fri Jul 19 2024 Fedora Release Engineering - 0.3.0-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + * Fri Jun 07 2024 Python Maint - 0.3.0-7 - Rebuilt for Python 3.13 From befb791516a6bd8049292435f69f8da7d7992f7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Wed, 24 Jul 2024 17:48:33 +0200 Subject: [PATCH 13/19] convert ASL 2.0 license to SPDX This is part of https://fedoraproject.org/wiki/Changes/SPDX_Licenses_Phase_4 --- python-vcstool.spec | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/python-vcstool.spec b/python-vcstool.spec index 869de89..c50ee89 100644 --- a/python-vcstool.spec +++ b/python-vcstool.spec @@ -2,10 +2,11 @@ Name: python-%{srcname} Version: 0.3.0 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Tool to invoke vcs commands on multiple repositories -License: ASL 2.0 +# Automatically converted from old format: ASL 2.0 - review is highly recommended. +License: Apache-2.0 URL: https://github.com/dirk-thomas/%{srcname} Source0: https://github.com/dirk-thomas/%{srcname}/archive/%{version}/%{srcname}-%{version}.tar.gz @@ -117,6 +118,9 @@ ln -s vcs %{buildroot}%{_datadir}/bash-completion/completions/vcs-%{python3_vers %changelog +* Wed Jul 24 2024 Miroslav Suchý - 0.3.0-9 +- convert license to SPDX + * Fri Jul 19 2024 Fedora Release Engineering - 0.3.0-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild From 340169b1d081b417e77ce92dbf71de2e884814dd Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 18 Jan 2025 20:32:51 +0000 Subject: [PATCH 14/19] Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild --- python-vcstool.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-vcstool.spec b/python-vcstool.spec index c50ee89..817946d 100644 --- a/python-vcstool.spec +++ b/python-vcstool.spec @@ -2,7 +2,7 @@ Name: python-%{srcname} Version: 0.3.0 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Tool to invoke vcs commands on multiple repositories # Automatically converted from old format: ASL 2.0 - review is highly recommended. @@ -118,6 +118,9 @@ ln -s vcs %{buildroot}%{_datadir}/bash-completion/completions/vcs-%{python3_vers %changelog +* Sat Jan 18 2025 Fedora Release Engineering - 0.3.0-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + * Wed Jul 24 2024 Miroslav Suchý - 0.3.0-9 - convert license to SPDX From 7ccb7f8f97ae9f44cbed98f79b5f6409cd919792 Mon Sep 17 00:00:00 2001 From: Python Maint Date: Mon, 2 Jun 2025 23:24:41 +0200 Subject: [PATCH 15/19] Rebuilt for Python 3.14 --- python-vcstool.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-vcstool.spec b/python-vcstool.spec index 817946d..101c02b 100644 --- a/python-vcstool.spec +++ b/python-vcstool.spec @@ -2,7 +2,7 @@ Name: python-%{srcname} Version: 0.3.0 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Tool to invoke vcs commands on multiple repositories # Automatically converted from old format: ASL 2.0 - review is highly recommended. @@ -118,6 +118,9 @@ ln -s vcs %{buildroot}%{_datadir}/bash-completion/completions/vcs-%{python3_vers %changelog +* Mon Jun 02 2025 Python Maint - 0.3.0-11 +- Rebuilt for Python 3.14 + * Sat Jan 18 2025 Fedora Release Engineering - 0.3.0-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild From c8c627932de9efefb99a445ceef94d0f4b498cab Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 25 Jul 2025 11:01:51 +0000 Subject: [PATCH 16/19] Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild --- python-vcstool.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-vcstool.spec b/python-vcstool.spec index 101c02b..adafa79 100644 --- a/python-vcstool.spec +++ b/python-vcstool.spec @@ -2,7 +2,7 @@ Name: python-%{srcname} Version: 0.3.0 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Tool to invoke vcs commands on multiple repositories # Automatically converted from old format: ASL 2.0 - review is highly recommended. @@ -118,6 +118,9 @@ ln -s vcs %{buildroot}%{_datadir}/bash-completion/completions/vcs-%{python3_vers %changelog +* Fri Jul 25 2025 Fedora Release Engineering - 0.3.0-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + * Mon Jun 02 2025 Python Maint - 0.3.0-11 - Rebuilt for Python 3.14 From ccb4bee36478ab26191608267908d6fd7a3eaf56 Mon Sep 17 00:00:00 2001 From: Python Maint Date: Fri, 15 Aug 2025 15:07:18 +0200 Subject: [PATCH 17/19] Rebuilt for Python 3.14.0rc2 bytecode --- python-vcstool.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-vcstool.spec b/python-vcstool.spec index adafa79..70348e0 100644 --- a/python-vcstool.spec +++ b/python-vcstool.spec @@ -2,7 +2,7 @@ Name: python-%{srcname} Version: 0.3.0 -Release: 12%{?dist} +Release: 13%{?dist} Summary: Tool to invoke vcs commands on multiple repositories # Automatically converted from old format: ASL 2.0 - review is highly recommended. @@ -118,6 +118,9 @@ ln -s vcs %{buildroot}%{_datadir}/bash-completion/completions/vcs-%{python3_vers %changelog +* Fri Aug 15 2025 Python Maint - 0.3.0-13 +- Rebuilt for Python 3.14.0rc2 bytecode + * Fri Jul 25 2025 Fedora Release Engineering - 0.3.0-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild From 6b564486a0ba479a0006b3db9d47085dc1f095ac Mon Sep 17 00:00:00 2001 From: Python Maint Date: Fri, 19 Sep 2025 14:43:20 +0200 Subject: [PATCH 18/19] Rebuilt for Python 3.14.0rc3 bytecode --- python-vcstool.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-vcstool.spec b/python-vcstool.spec index 70348e0..a69e5dd 100644 --- a/python-vcstool.spec +++ b/python-vcstool.spec @@ -2,7 +2,7 @@ Name: python-%{srcname} Version: 0.3.0 -Release: 13%{?dist} +Release: 14%{?dist} Summary: Tool to invoke vcs commands on multiple repositories # Automatically converted from old format: ASL 2.0 - review is highly recommended. @@ -118,6 +118,9 @@ ln -s vcs %{buildroot}%{_datadir}/bash-completion/completions/vcs-%{python3_vers %changelog +* Fri Sep 19 2025 Python Maint - 0.3.0-14 +- Rebuilt for Python 3.14.0rc3 bytecode + * Fri Aug 15 2025 Python Maint - 0.3.0-13 - Rebuilt for Python 3.14.0rc2 bytecode From 25a40ea1a5416fdb6741c9229f6718f85639bcc5 Mon Sep 17 00:00:00 2001 From: Scott K Logan Date: Wed, 19 Nov 2025 16:11:21 -0600 Subject: [PATCH 19/19] Ignore warnings during pytest Some of these tests capture stdout, and the warning output to stdout breaks the asserts. --- python-vcstool.spec | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/python-vcstool.spec b/python-vcstool.spec index a69e5dd..22a58be 100644 --- a/python-vcstool.spec +++ b/python-vcstool.spec @@ -2,7 +2,7 @@ Name: python-%{srcname} Version: 0.3.0 -Release: 14%{?dist} +Release: 15%{?dist} Summary: Tool to invoke vcs commands on multiple repositories # Automatically converted from old format: ASL 2.0 - review is highly recommended. @@ -103,7 +103,8 @@ ln -s vcs %{buildroot}%{_datadir}/bash-completion/completions/vcs-%{python3_vers --ignore test/test_commands.py \\\ test -%{__python3} -m pytest %pytest_options +PYTHONWARNINGS=ignore \ + %{__python3} -m pytest %pytest_options %files -n python%{python3_pkgversion}-%{srcname} -f py3_bins @@ -118,6 +119,9 @@ ln -s vcs %{buildroot}%{_datadir}/bash-completion/completions/vcs-%{python3_vers %changelog +* Wed Nov 19 2025 Scott K Logan - 0.3.0-15 +- Ignore warnings during pytest (rhbz#2403567) + * Fri Sep 19 2025 Python Maint - 0.3.0-14 - Rebuilt for Python 3.14.0rc3 bytecode