From 567b9d6b0b6a7fe8f70ec6040ec0696980f44ef2 Mon Sep 17 00:00:00 2001 From: Mohamed El Morabity Date: Fri, 19 Apr 2019 10:50:00 +0200 Subject: [PATCH 01/36] - Enable Python generators - Enable tests - Spec cleanup --- python-azure-devtools.spec | 94 +++++++------------------------------- 1 file changed, 17 insertions(+), 77 deletions(-) diff --git a/python-azure-devtools.spec b/python-azure-devtools.spec index 47bd954..9a98d2a 100644 --- a/python-azure-devtools.spec +++ b/python-azure-devtools.spec @@ -1,74 +1,35 @@ +%{?python_enable_dependency_generator} + %global srcname azure-devtools %global common_description This package contains tools to aid in developing Python-based Azure code. -%global _with_python2 0%{?rhel} || 0%{?fedora} <= 29 -%global py2_prefix %{?rhel:python}%{?fedora:python2} -# Some Python 3 libraries required by azure-devtools are not available in EL -%global _with_python3 0%{?fedora} - Name: python-%{srcname} Version: 1.0.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Devtools for Azure SDK and CLI for Python License: MIT URL: https://github.com/Azure/azure-python-devtools Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz -%if 0%{?_with_python2} -BuildRequires: %{py2_prefix}-devel -BuildRequires: %{py2_prefix}-setuptools +BuildRequires: python3-devel +BuildRequires: python3-setuptools # Needed for tests -BuildRequires: %{py2_prefix}-configargparse -BuildRequires: %{py2_prefix}-six -%if 0%{?fedora} <= 27 -BuildRequires: python-vcrpy -%else -BuildRequires: %{py2_prefix}-vcrpy -%endif -%endif -%if 0%{?_with_python3} -BuildRequires: python%{python3_pkgversion}-devel -BuildRequires: python%{python3_pkgversion}-setuptools -# Needed for tests -BuildRequires: python%{python3_pkgversion}-configargparse -BuildRequires: python%{python3_pkgversion}-six -BuildRequires: python%{python3_pkgversion}-vcrpy -%endif +BuildRequires: python3-configargparse +BuildRequires: python3-six +BuildRequires: python3-vcrpy BuildArch: noarch %description %{common_description} -%if 0%{?_with_python2} -%package -n python2-%{srcname} +%package -n python3-%{srcname} Summary: %{summary} -Requires: %{py2_prefix}-configargparse -Requires: %{py2_prefix}-six -%if 0%{?fedora} <= 27 -Requires: python-vcrpy -%else -Requires: %{py2_prefix}-vcrpy -%endif -%{?python_provide:%python_provide python2-%{srcname}} +%{?python_provide:%python_provide python3-%{srcname}} -%description -n python2-%{srcname} +%description -n python3-%{srcname} %{common_description} -%endif - - -%if 0%{?_with_python3} -%package -n python%{python3_pkgversion}-%{srcname} -Summary: %{summary} -Requires: python%{python3_pkgversion}-configargparse -Requires: python%{python3_pkgversion}-six -Requires: python%{python3_pkgversion}-vcrpy -%{?python_provide:%python_provide python%{python3_pkgversion}-%{srcname}} - -%description -n python%{python3_pkgversion}-%{srcname} -%{common_description} -%endif %prep @@ -76,51 +37,30 @@ Requires: python%{python3_pkgversion}-vcrpy %build -%if 0%{?_with_python2} -%py2_build -%endif -%if 0%{?_with_python3} %py3_build -%endif %install -%if 0%{?_with_python2} -%py2_install -%endif -%if 0%{?_with_python3} %py3_install -%endif %check -%if 0%{?_with_python2} -%{__python2} -m unittest discover -s src/ -%endif -%if 0%{?_with_python3} %{__python3} -m unittest discover -s src/ -%endif -%if 0%{?_with_python2} -%files -n python2-%{srcname} -%doc README.rst doc/ -%license LICENSE -%{python2_sitelib}/azure_devtools/ -%{python2_sitelib}/azure_devtools-*.egg-info/ -%endif - - -%if 0%{?_with_python3} -%files -n python%{python3_pkgversion}-%{srcname} +%files -n python3-%{srcname} %doc README.rst doc/ %license LICENSE %{python3_sitelib}/azure_devtools/ %{python3_sitelib}/azure_devtools-*.egg-info/ -%endif %changelog +* Fri Apr 19 2019 Mohamed El Morabity - 1.0.0-5 +- Enable Python generators +- Enable tests +- Spec cleanup + * Sat Feb 02 2019 Fedora Release Engineering - 1.0.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild From 513fa594532d590db15e7a7db180b1e7716d5a4f Mon Sep 17 00:00:00 2001 From: Mohamed El Morabity Date: Fri, 19 Apr 2019 10:50:00 +0200 Subject: [PATCH 02/36] - Enable Python generators - Enable tests - Spec cleanup --- python-azure-devtools.spec | 94 +++++++------------------------------- 1 file changed, 17 insertions(+), 77 deletions(-) diff --git a/python-azure-devtools.spec b/python-azure-devtools.spec index 47bd954..9a98d2a 100644 --- a/python-azure-devtools.spec +++ b/python-azure-devtools.spec @@ -1,74 +1,35 @@ +%{?python_enable_dependency_generator} + %global srcname azure-devtools %global common_description This package contains tools to aid in developing Python-based Azure code. -%global _with_python2 0%{?rhel} || 0%{?fedora} <= 29 -%global py2_prefix %{?rhel:python}%{?fedora:python2} -# Some Python 3 libraries required by azure-devtools are not available in EL -%global _with_python3 0%{?fedora} - Name: python-%{srcname} Version: 1.0.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Devtools for Azure SDK and CLI for Python License: MIT URL: https://github.com/Azure/azure-python-devtools Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz -%if 0%{?_with_python2} -BuildRequires: %{py2_prefix}-devel -BuildRequires: %{py2_prefix}-setuptools +BuildRequires: python3-devel +BuildRequires: python3-setuptools # Needed for tests -BuildRequires: %{py2_prefix}-configargparse -BuildRequires: %{py2_prefix}-six -%if 0%{?fedora} <= 27 -BuildRequires: python-vcrpy -%else -BuildRequires: %{py2_prefix}-vcrpy -%endif -%endif -%if 0%{?_with_python3} -BuildRequires: python%{python3_pkgversion}-devel -BuildRequires: python%{python3_pkgversion}-setuptools -# Needed for tests -BuildRequires: python%{python3_pkgversion}-configargparse -BuildRequires: python%{python3_pkgversion}-six -BuildRequires: python%{python3_pkgversion}-vcrpy -%endif +BuildRequires: python3-configargparse +BuildRequires: python3-six +BuildRequires: python3-vcrpy BuildArch: noarch %description %{common_description} -%if 0%{?_with_python2} -%package -n python2-%{srcname} +%package -n python3-%{srcname} Summary: %{summary} -Requires: %{py2_prefix}-configargparse -Requires: %{py2_prefix}-six -%if 0%{?fedora} <= 27 -Requires: python-vcrpy -%else -Requires: %{py2_prefix}-vcrpy -%endif -%{?python_provide:%python_provide python2-%{srcname}} +%{?python_provide:%python_provide python3-%{srcname}} -%description -n python2-%{srcname} +%description -n python3-%{srcname} %{common_description} -%endif - - -%if 0%{?_with_python3} -%package -n python%{python3_pkgversion}-%{srcname} -Summary: %{summary} -Requires: python%{python3_pkgversion}-configargparse -Requires: python%{python3_pkgversion}-six -Requires: python%{python3_pkgversion}-vcrpy -%{?python_provide:%python_provide python%{python3_pkgversion}-%{srcname}} - -%description -n python%{python3_pkgversion}-%{srcname} -%{common_description} -%endif %prep @@ -76,51 +37,30 @@ Requires: python%{python3_pkgversion}-vcrpy %build -%if 0%{?_with_python2} -%py2_build -%endif -%if 0%{?_with_python3} %py3_build -%endif %install -%if 0%{?_with_python2} -%py2_install -%endif -%if 0%{?_with_python3} %py3_install -%endif %check -%if 0%{?_with_python2} -%{__python2} -m unittest discover -s src/ -%endif -%if 0%{?_with_python3} %{__python3} -m unittest discover -s src/ -%endif -%if 0%{?_with_python2} -%files -n python2-%{srcname} -%doc README.rst doc/ -%license LICENSE -%{python2_sitelib}/azure_devtools/ -%{python2_sitelib}/azure_devtools-*.egg-info/ -%endif - - -%if 0%{?_with_python3} -%files -n python%{python3_pkgversion}-%{srcname} +%files -n python3-%{srcname} %doc README.rst doc/ %license LICENSE %{python3_sitelib}/azure_devtools/ %{python3_sitelib}/azure_devtools-*.egg-info/ -%endif %changelog +* Fri Apr 19 2019 Mohamed El Morabity - 1.0.0-5 +- Enable Python generators +- Enable tests +- Spec cleanup + * Sat Feb 02 2019 Fedora Release Engineering - 1.0.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild From a7233a0759b6992589e1d378a398ce6924d3c3b3 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 26 Jul 2019 12:19:24 +0000 Subject: [PATCH 03/36] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- python-azure-devtools.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-azure-devtools.spec b/python-azure-devtools.spec index 9a98d2a..6e57875 100644 --- a/python-azure-devtools.spec +++ b/python-azure-devtools.spec @@ -5,7 +5,7 @@ Name: python-%{srcname} Version: 1.0.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Devtools for Azure SDK and CLI for Python License: MIT @@ -56,6 +56,9 @@ Summary: %{summary} %changelog +* Fri Jul 26 2019 Fedora Release Engineering - 1.0.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Fri Apr 19 2019 Mohamed El Morabity - 1.0.0-5 - Enable Python generators - Enable tests From 1c7c50f2df4ffb56a0ba2ee671385e56f127252f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Mon, 19 Aug 2019 11:43:05 +0200 Subject: [PATCH 04/36] Rebuilt for Python 3.8 --- python-azure-devtools.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-azure-devtools.spec b/python-azure-devtools.spec index 6e57875..3e635c7 100644 --- a/python-azure-devtools.spec +++ b/python-azure-devtools.spec @@ -5,7 +5,7 @@ Name: python-%{srcname} Version: 1.0.0 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Devtools for Azure SDK and CLI for Python License: MIT @@ -56,6 +56,9 @@ Summary: %{summary} %changelog +* Mon Aug 19 2019 Miro Hrončok - 1.0.0-7 +- Rebuilt for Python 3.8 + * Fri Jul 26 2019 Fedora Release Engineering - 1.0.0-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild From dbc490b21a8dc419b491aa2ff31a7c88392f7074 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Thu, 3 Oct 2019 14:03:40 +0200 Subject: [PATCH 05/36] Rebuilt for Python 3.8.0rc1 (#1748018) --- python-azure-devtools.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-azure-devtools.spec b/python-azure-devtools.spec index 3e635c7..acc8c80 100644 --- a/python-azure-devtools.spec +++ b/python-azure-devtools.spec @@ -5,7 +5,7 @@ Name: python-%{srcname} Version: 1.0.0 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Devtools for Azure SDK and CLI for Python License: MIT @@ -56,6 +56,9 @@ Summary: %{summary} %changelog +* Thu Oct 03 2019 Miro Hrončok - 1.0.0-8 +- Rebuilt for Python 3.8.0rc1 (#1748018) + * Mon Aug 19 2019 Miro Hrončok - 1.0.0-7 - Rebuilt for Python 3.8 From d8563af5a14c88f510daf7c904bf7511e2554ccb Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 30 Jan 2020 10:49:28 +0000 Subject: [PATCH 06/36] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- python-azure-devtools.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-azure-devtools.spec b/python-azure-devtools.spec index acc8c80..30c2e2a 100644 --- a/python-azure-devtools.spec +++ b/python-azure-devtools.spec @@ -5,7 +5,7 @@ Name: python-%{srcname} Version: 1.0.0 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Devtools for Azure SDK and CLI for Python License: MIT @@ -56,6 +56,9 @@ Summary: %{summary} %changelog +* Thu Jan 30 2020 Fedora Release Engineering - 1.0.0-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Thu Oct 03 2019 Miro Hrončok - 1.0.0-8 - Rebuilt for Python 3.8.0rc1 (#1748018) From 07e2d4ca47dd7a2cfb5ce4687d9b348de98dabec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Tue, 26 May 2020 03:03:30 +0200 Subject: [PATCH 07/36] Rebuilt for Python 3.9 --- python-azure-devtools.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-azure-devtools.spec b/python-azure-devtools.spec index 30c2e2a..8670fad 100644 --- a/python-azure-devtools.spec +++ b/python-azure-devtools.spec @@ -5,7 +5,7 @@ Name: python-%{srcname} Version: 1.0.0 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Devtools for Azure SDK and CLI for Python License: MIT @@ -56,6 +56,9 @@ Summary: %{summary} %changelog +* Tue May 26 2020 Miro Hrončok - 1.0.0-10 +- Rebuilt for Python 3.9 + * Thu Jan 30 2020 Fedora Release Engineering - 1.0.0-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild From cd8a8bf51ed80fd6ef79f85568de308b60472e56 Mon Sep 17 00:00:00 2001 From: Mohamed El Morabity Date: Wed, 1 Jul 2020 22:11:08 +0200 Subject: [PATCH 08/36] Obsoleted by python-azure-sdk --- .gitignore | 1 - README.md | 3 -- dead.package | 1 + python-azure-devtools.spec | 89 -------------------------------------- sources | 1 - 5 files changed, 1 insertion(+), 94 deletions(-) delete mode 100644 .gitignore delete mode 100644 README.md create mode 100644 dead.package delete mode 100644 python-azure-devtools.spec delete mode 100644 sources diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 1341cf4..0000000 --- a/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/azure-devtools-1.0.0.tar.gz diff --git a/README.md b/README.md deleted file mode 100644 index 4d1ba1a..0000000 --- a/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# python-azure-devtools - -The python-azure-devtools package \ No newline at end of file diff --git a/dead.package b/dead.package new file mode 100644 index 0000000..5ff12e6 --- /dev/null +++ b/dead.package @@ -0,0 +1 @@ +Obsoleted by python-azure-sdk diff --git a/python-azure-devtools.spec b/python-azure-devtools.spec deleted file mode 100644 index 8670fad..0000000 --- a/python-azure-devtools.spec +++ /dev/null @@ -1,89 +0,0 @@ -%{?python_enable_dependency_generator} - -%global srcname azure-devtools -%global common_description This package contains tools to aid in developing Python-based Azure code. - -Name: python-%{srcname} -Version: 1.0.0 -Release: 10%{?dist} -Summary: Devtools for Azure SDK and CLI for Python - -License: MIT -URL: https://github.com/Azure/azure-python-devtools -Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz - -BuildRequires: python3-devel -BuildRequires: python3-setuptools -# Needed for tests -BuildRequires: python3-configargparse -BuildRequires: python3-six -BuildRequires: python3-vcrpy -BuildArch: noarch - -%description -%{common_description} - - -%package -n python3-%{srcname} -Summary: %{summary} -%{?python_provide:%python_provide python3-%{srcname}} - -%description -n python3-%{srcname} -%{common_description} - - -%prep -%autosetup -n azure-python-devtools-%{version} - - -%build -%py3_build - - -%install -%py3_install - - -%check -%{__python3} -m unittest discover -s src/ - - -%files -n python3-%{srcname} -%doc README.rst doc/ -%license LICENSE -%{python3_sitelib}/azure_devtools/ -%{python3_sitelib}/azure_devtools-*.egg-info/ - - -%changelog -* Tue May 26 2020 Miro Hrončok - 1.0.0-10 -- Rebuilt for Python 3.9 - -* Thu Jan 30 2020 Fedora Release Engineering - 1.0.0-9 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild - -* Thu Oct 03 2019 Miro Hrončok - 1.0.0-8 -- Rebuilt for Python 3.8.0rc1 (#1748018) - -* Mon Aug 19 2019 Miro Hrončok - 1.0.0-7 -- Rebuilt for Python 3.8 - -* Fri Jul 26 2019 Fedora Release Engineering - 1.0.0-6 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild - -* Fri Apr 19 2019 Mohamed El Morabity - 1.0.0-5 -- Enable Python generators -- Enable tests -- Spec cleanup - -* Sat Feb 02 2019 Fedora Release Engineering - 1.0.0-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild - -* Wed Nov 21 2018 Mohamed El Morabity - 1.0.0-3 -- Fix dependency on python-vcrpy for Fedora <= 27 - -* Tue Nov 20 2018 Mohamed El Morabity - 1.0.0-2 -- Don't glob everything under the Python sitelib directory - -* Sat Nov 03 2018 Mohamed El Morabity - 1.0.0-1 -- Initial RPM release diff --git a/sources b/sources deleted file mode 100644 index 0625b2b..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -SHA512 (azure-devtools-1.0.0.tar.gz) = aed2687f439d76faf88312b65ad8d8ba8c9c248267102dafff3052e97ff4bf9c0d2cfb9f96ce63885aac54f03ec1aa17c856f1f71d4d14e85a7d8302931e9baf From 6cb1c581efe54614eee0a1af31024ecc81c989ca Mon Sep 17 00:00:00 2001 From: Tomas Hrcka Date: Tue, 3 Aug 2021 16:12:40 +0200 Subject: [PATCH 09/36] Revert "Obsoleted by python-azure-sdk" This reverts commit cd8a8bf51ed80fd6ef79f85568de308b60472e56. Unretirement request: https://pagure.io/releng/issue/10240 Signed-off-by: Tomas Hrcka --- .gitignore | 1 + README.md | 3 ++ dead.package | 1 - python-azure-devtools.spec | 89 ++++++++++++++++++++++++++++++++++++++ sources | 1 + 5 files changed, 94 insertions(+), 1 deletion(-) create mode 100644 .gitignore create mode 100644 README.md delete mode 100644 dead.package create mode 100644 python-azure-devtools.spec create mode 100644 sources diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1341cf4 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/azure-devtools-1.0.0.tar.gz diff --git a/README.md b/README.md new file mode 100644 index 0000000..4d1ba1a --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# python-azure-devtools + +The python-azure-devtools package \ No newline at end of file diff --git a/dead.package b/dead.package deleted file mode 100644 index 5ff12e6..0000000 --- a/dead.package +++ /dev/null @@ -1 +0,0 @@ -Obsoleted by python-azure-sdk diff --git a/python-azure-devtools.spec b/python-azure-devtools.spec new file mode 100644 index 0000000..8670fad --- /dev/null +++ b/python-azure-devtools.spec @@ -0,0 +1,89 @@ +%{?python_enable_dependency_generator} + +%global srcname azure-devtools +%global common_description This package contains tools to aid in developing Python-based Azure code. + +Name: python-%{srcname} +Version: 1.0.0 +Release: 10%{?dist} +Summary: Devtools for Azure SDK and CLI for Python + +License: MIT +URL: https://github.com/Azure/azure-python-devtools +Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz + +BuildRequires: python3-devel +BuildRequires: python3-setuptools +# Needed for tests +BuildRequires: python3-configargparse +BuildRequires: python3-six +BuildRequires: python3-vcrpy +BuildArch: noarch + +%description +%{common_description} + + +%package -n python3-%{srcname} +Summary: %{summary} +%{?python_provide:%python_provide python3-%{srcname}} + +%description -n python3-%{srcname} +%{common_description} + + +%prep +%autosetup -n azure-python-devtools-%{version} + + +%build +%py3_build + + +%install +%py3_install + + +%check +%{__python3} -m unittest discover -s src/ + + +%files -n python3-%{srcname} +%doc README.rst doc/ +%license LICENSE +%{python3_sitelib}/azure_devtools/ +%{python3_sitelib}/azure_devtools-*.egg-info/ + + +%changelog +* Tue May 26 2020 Miro Hrončok - 1.0.0-10 +- Rebuilt for Python 3.9 + +* Thu Jan 30 2020 Fedora Release Engineering - 1.0.0-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Thu Oct 03 2019 Miro Hrončok - 1.0.0-8 +- Rebuilt for Python 3.8.0rc1 (#1748018) + +* Mon Aug 19 2019 Miro Hrončok - 1.0.0-7 +- Rebuilt for Python 3.8 + +* Fri Jul 26 2019 Fedora Release Engineering - 1.0.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Fri Apr 19 2019 Mohamed El Morabity - 1.0.0-5 +- Enable Python generators +- Enable tests +- Spec cleanup + +* Sat Feb 02 2019 Fedora Release Engineering - 1.0.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Wed Nov 21 2018 Mohamed El Morabity - 1.0.0-3 +- Fix dependency on python-vcrpy for Fedora <= 27 + +* Tue Nov 20 2018 Mohamed El Morabity - 1.0.0-2 +- Don't glob everything under the Python sitelib directory + +* Sat Nov 03 2018 Mohamed El Morabity - 1.0.0-1 +- Initial RPM release diff --git a/sources b/sources new file mode 100644 index 0000000..0625b2b --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (azure-devtools-1.0.0.tar.gz) = aed2687f439d76faf88312b65ad8d8ba8c9c248267102dafff3052e97ff4bf9c0d2cfb9f96ce63885aac54f03ec1aa17c856f1f71d4d14e85a7d8302931e9baf From d10c165a4f068bfb6b78b0dda62813a590141514 Mon Sep 17 00:00:00 2001 From: Major Hayden Date: Tue, 3 Aug 2021 09:22:35 -0500 Subject: [PATCH 10/36] Unretired package (See BZ 1986414) --- .gitignore | 1 + python-azure-devtools-requirements-fix.patch | 12 ++ python-azure-devtools.spec | 113 ++++++++----------- sources | 2 +- 4 files changed, 62 insertions(+), 66 deletions(-) create mode 100644 python-azure-devtools-requirements-fix.patch diff --git a/.gitignore b/.gitignore index 1341cf4..23b9ae7 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /azure-devtools-1.0.0.tar.gz +/azure-sdk-for-python-a88809f86787492ddc99c4b3ea5de36c99f14b4f.tar.gz diff --git a/python-azure-devtools-requirements-fix.patch b/python-azure-devtools-requirements-fix.patch new file mode 100644 index 0000000..fe1dce2 --- /dev/null +++ b/python-azure-devtools-requirements-fix.patch @@ -0,0 +1,12 @@ +diff -up ./tools/azure-devtools/setup.py.orig ./tools/azure-devtools/setup.py +--- ./tools/azure-devtools/setup.py.orig 2021-07-22 10:18:01.048710671 -0500 ++++ ./tools/azure-devtools/setup.py 2021-07-22 10:18:12.486637887 -0500 +@@ -23,7 +23,7 @@ CLASSIFIERS = [ + "License :: OSI Approved :: MIT License", + ] + +-DEPENDENCIES = ["ConfigArgParse>=0.12.0", "six>=1.10.0", "vcrpy~=3.0.0"] ++DEPENDENCIES = ["ConfigArgParse>=0.12.0", "six>=1.10.0", "vcrpy>=3.0.0"] + + with io.open("README.rst", "r", encoding="utf-8") as f: + README = f.read() diff --git a/python-azure-devtools.spec b/python-azure-devtools.spec index 8670fad..e0043e6 100644 --- a/python-azure-devtools.spec +++ b/python-azure-devtools.spec @@ -1,89 +1,72 @@ -%{?python_enable_dependency_generator} - -%global srcname azure-devtools -%global common_description This package contains tools to aid in developing Python-based Azure code. +# The last versioned release of the devtools code is 1.2.1, but upstream +# continues to update it without bumping the version. 😞 +%global srcname azure-devtools +%global forgeurl https://github.com/Azure/azure-sdk-for-python/ +%global commit a88809f86787492ddc99c4b3ea5de36c99f14b4f +%global shortcommit %(c=%{commit}; echo ${c:0:7}) +%global distprefix %{nil} +%global short_version 1.2.1 +%forgemeta Name: python-%{srcname} -Version: 1.0.0 -Release: 10%{?dist} -Summary: Devtools for Azure SDK and CLI for Python +Version: %{short_version}~git.1.%{shortcommit} +Release: 1%{?dist} +Summary: Microsoft Azure Development Tools for SDK +License: MIT and ASL 2.0 +URL: %forgeurl +Source0: %forgesource +# Asked upstream to update the vcrpy requirement. PR in progress. +# https://github.com/Azure/azure-sdk-for-python/pull/20032 +Patch0: python-azure-devtools-requirements-fix.patch -License: MIT -URL: https://github.com/Azure/azure-python-devtools -Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz - -BuildRequires: python3-devel -BuildRequires: python3-setuptools -# Needed for tests -BuildRequires: python3-configargparse -BuildRequires: python3-six -BuildRequires: python3-vcrpy BuildArch: noarch -%description -%{common_description} +Obsoletes: python-azure-sdk < 5.0.1 + +BuildRequires: python3-devel +BuildRequires: python3-pip +BuildRequires: python3-setuptools +BuildRequires: python3-wheel +BuildRequires: pyproject-rpm-macros + + +%global _description %{expand: +Development tools for Python-based Azure tools +This package contains tools to aid in developing Python-based Azure code.} + +%description %{_description} %package -n python3-%{srcname} Summary: %{summary} -%{?python_provide:%python_provide python3-%{srcname}} -%description -n python3-%{srcname} -%{common_description} +%description -n python3-%{srcname} %{_description} %prep -%autosetup -n azure-python-devtools-%{version} +%forgesetup +%patch0 -p0 %build -%py3_build +pushd tools/%{srcname} + %pyproject_wheel +popd %install -%py3_install +%pyproject_install +%pyproject_save_files azure_devtools + +# Some provided executables are only used internally in Azure SDK's CI. +rm -f %{buildroot}%{_bindir}/{perfstress,systemperf} -%check -%{__python3} -m unittest discover -s src/ - - -%files -n python3-%{srcname} -%doc README.rst doc/ -%license LICENSE -%{python3_sitelib}/azure_devtools/ -%{python3_sitelib}/azure_devtools-*.egg-info/ +%files -n python3-%{srcname} -f %{pyproject_files} +%doc tools/%{srcname}/README.rst +%license tools/%{srcname}/LICENSE %changelog -* Tue May 26 2020 Miro Hrončok - 1.0.0-10 -- Rebuilt for Python 3.9 - -* Thu Jan 30 2020 Fedora Release Engineering - 1.0.0-9 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild - -* Thu Oct 03 2019 Miro Hrončok - 1.0.0-8 -- Rebuilt for Python 3.8.0rc1 (#1748018) - -* Mon Aug 19 2019 Miro Hrončok - 1.0.0-7 -- Rebuilt for Python 3.8 - -* Fri Jul 26 2019 Fedora Release Engineering - 1.0.0-6 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild - -* Fri Apr 19 2019 Mohamed El Morabity - 1.0.0-5 -- Enable Python generators -- Enable tests -- Spec cleanup - -* Sat Feb 02 2019 Fedora Release Engineering - 1.0.0-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild - -* Wed Nov 21 2018 Mohamed El Morabity - 1.0.0-3 -- Fix dependency on python-vcrpy for Fedora <= 27 - -* Tue Nov 20 2018 Mohamed El Morabity - 1.0.0-2 -- Don't glob everything under the Python sitelib directory - -* Sat Nov 03 2018 Mohamed El Morabity - 1.0.0-1 -- Initial RPM release +* Tue Jun 01 2021 Major Hayden - 1.2.1~git.1.a88809f +- Unretired package. diff --git a/sources b/sources index 0625b2b..bad57a0 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (azure-devtools-1.0.0.tar.gz) = aed2687f439d76faf88312b65ad8d8ba8c9c248267102dafff3052e97ff4bf9c0d2cfb9f96ce63885aac54f03ec1aa17c856f1f71d4d14e85a7d8302931e9baf +SHA512 (azure-sdk-for-python-a88809f86787492ddc99c4b3ea5de36c99f14b4f.tar.gz) = 53cb72b19555f616020784a358dd8637ed08bb123aafab9c07185865de33174050096e74ca260a38d9dadffb9df01403f1acb71baf9bfbb070c910d00ab7532f From dd91851fd5ca6fadd24524aaeb5c7dd208d08512 Mon Sep 17 00:00:00 2001 From: Major Hayden Date: Tue, 3 Aug 2021 14:14:49 -0500 Subject: [PATCH 11/36] Updated to latest commit on 2021-08-03 --- python-azure-devtools.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/python-azure-devtools.spec b/python-azure-devtools.spec index e0043e6..980f43b 100644 --- a/python-azure-devtools.spec +++ b/python-azure-devtools.spec @@ -2,14 +2,14 @@ # continues to update it without bumping the version. 😞 %global srcname azure-devtools %global forgeurl https://github.com/Azure/azure-sdk-for-python/ -%global commit a88809f86787492ddc99c4b3ea5de36c99f14b4f +%global commit 19487ff9f1790033bcc9e3354b7bdee309a5bc71 %global shortcommit %(c=%{commit}; echo ${c:0:7}) %global distprefix %{nil} %global short_version 1.2.1 %forgemeta Name: python-%{srcname} -Version: %{short_version}~git.1.%{shortcommit} +Version: %{short_version}~git.2.%{shortcommit} Release: 1%{?dist} Summary: Microsoft Azure Development Tools for SDK License: MIT and ASL 2.0 @@ -68,5 +68,8 @@ rm -f %{buildroot}%{_bindir}/{perfstress,systemperf} %changelog +* Tue Aug 03 2021 Major Hayden - 1.2.1~git.2.19487ff +- Updated to latest commit on 2021-08-03 + * Tue Jun 01 2021 Major Hayden - 1.2.1~git.1.a88809f - Unretired package. From fc3b19c486da322c82d9e1b3862f8b9d39a568c0 Mon Sep 17 00:00:00 2001 From: Major Hayden Date: Tue, 3 Aug 2021 14:17:45 -0500 Subject: [PATCH 12/36] Update sources --- .gitignore | 1 + sources | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 23b9ae7..e67294e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /azure-devtools-1.0.0.tar.gz /azure-sdk-for-python-a88809f86787492ddc99c4b3ea5de36c99f14b4f.tar.gz +/azure-sdk-for-python-19487ff9f1790033bcc9e3354b7bdee309a5bc71.tar.gz diff --git a/sources b/sources index bad57a0..4c46ed7 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (azure-sdk-for-python-a88809f86787492ddc99c4b3ea5de36c99f14b4f.tar.gz) = 53cb72b19555f616020784a358dd8637ed08bb123aafab9c07185865de33174050096e74ca260a38d9dadffb9df01403f1acb71baf9bfbb070c910d00ab7532f +SHA512 (azure-sdk-for-python-19487ff9f1790033bcc9e3354b7bdee309a5bc71.tar.gz) = bf9d136b5e8923fb3ef059c97be991ad47d37d118ee4a7014eb8f69f155abea37cbfeaccbbc2a32721fc65e6e45e0ee48008a5a639551fdd6a5a2cc91268dd4f From 66b9eb2c244be358813592735d84d1a6219af020 Mon Sep 17 00:00:00 2001 From: Major Hayden Date: Wed, 11 Aug 2021 08:37:06 -0500 Subject: [PATCH 13/36] Update to latest and reduce SRPM size --- .gitignore | 2 ++ python-azure-devtools.spec | 30 ++++++++++++++++++++---------- sources | 2 +- 3 files changed, 23 insertions(+), 11 deletions(-) diff --git a/.gitignore b/.gitignore index e67294e..c91f8bd 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ /azure-devtools-1.0.0.tar.gz /azure-sdk-for-python-a88809f86787492ddc99c4b3ea5de36c99f14b4f.tar.gz /azure-sdk-for-python-19487ff9f1790033bcc9e3354b7bdee309a5bc71.tar.gz +/azure-devtools-a5a4ef4a7adc8c730dd7da2e9e3bdb43c9376586.tar.gz +/generate-devtools-tarball.sh diff --git a/python-azure-devtools.spec b/python-azure-devtools.spec index 980f43b..282ce1f 100644 --- a/python-azure-devtools.spec +++ b/python-azure-devtools.spec @@ -2,19 +2,24 @@ # continues to update it without bumping the version. 😞 %global srcname azure-devtools %global forgeurl https://github.com/Azure/azure-sdk-for-python/ -%global commit 19487ff9f1790033bcc9e3354b7bdee309a5bc71 +%global commit a5a4ef4a7adc8c730dd7da2e9e3bdb43c9376586 %global shortcommit %(c=%{commit}; echo ${c:0:7}) %global distprefix %{nil} %global short_version 1.2.1 %forgemeta Name: python-%{srcname} -Version: %{short_version}~git.2.%{shortcommit} +Version: %{short_version}~git.3.%{shortcommit} Release: 1%{?dist} Summary: Microsoft Azure Development Tools for SDK License: MIT and ASL 2.0 URL: %forgeurl -Source0: %forgesource +Source0: azure-devtools-%{commit}.tar.gz +# The azure-sdk-for-python repository is huge at > 160MB, but we only need ~ +# 100KB of source for this package. Use this script to generate a tarball of the +# source code: +# ./generate-devtools-tarball.sh COMMIT_SHA +Source1: generate-devtools-tarball.sh # Asked upstream to update the vcrpy requirement. PR in progress. # https://github.com/Azure/azure-sdk-for-python/pull/20032 Patch0: python-azure-devtools-requirements-fix.patch @@ -44,14 +49,15 @@ Summary: %{summary} %prep -%forgesetup -%patch0 -p0 +%autosetup -v -p3 -c -n %{srcname}-%{commit} %build -pushd tools/%{srcname} - %pyproject_wheel -popd +%pyproject_wheel + + +%generate_buildrequires +%pyproject_buildrequires -r %install @@ -63,11 +69,15 @@ rm -f %{buildroot}%{_bindir}/{perfstress,systemperf} %files -n python3-%{srcname} -f %{pyproject_files} -%doc tools/%{srcname}/README.rst -%license tools/%{srcname}/LICENSE +%doc README.rst +%license LICENSE %changelog +* Tue Aug 03 2021 Major Hayden - 1.2.1~git.3.a5a4ef4 +- Updated to latest commit on 2021-08-11 +- Generate a source tarball using a script to shrink size of source RPM + * Tue Aug 03 2021 Major Hayden - 1.2.1~git.2.19487ff - Updated to latest commit on 2021-08-03 diff --git a/sources b/sources index 4c46ed7..49478b2 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (azure-sdk-for-python-19487ff9f1790033bcc9e3354b7bdee309a5bc71.tar.gz) = bf9d136b5e8923fb3ef059c97be991ad47d37d118ee4a7014eb8f69f155abea37cbfeaccbbc2a32721fc65e6e45e0ee48008a5a639551fdd6a5a2cc91268dd4f +SHA512 (generate-devtools-tarball.sh) = 9f9e4debd047d28b33577ec2344f11023cbc18a275fc322c6bae3f06032a83be3f8273fbdd3bd2b75ffff104e6b99a7e80ed4f27564c19e903e1fed35c15022e From 12b9297bd5262c69870cd763bc0e424033c3fa25 Mon Sep 17 00:00:00 2001 From: Major Hayden Date: Wed, 11 Aug 2021 10:07:05 -0500 Subject: [PATCH 14/36] Fix sources --- .gitignore | 1 - generate-devtools-tarball.sh | 22 ++++++++++++++++++++++ python-azure-devtools.spec | 5 +---- sources | 2 +- 4 files changed, 24 insertions(+), 6 deletions(-) create mode 100755 generate-devtools-tarball.sh diff --git a/.gitignore b/.gitignore index c91f8bd..e60afbb 100644 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,3 @@ /azure-sdk-for-python-a88809f86787492ddc99c4b3ea5de36c99f14b4f.tar.gz /azure-sdk-for-python-19487ff9f1790033bcc9e3354b7bdee309a5bc71.tar.gz /azure-devtools-a5a4ef4a7adc8c730dd7da2e9e3bdb43c9376586.tar.gz -/generate-devtools-tarball.sh diff --git a/generate-devtools-tarball.sh b/generate-devtools-tarball.sh new file mode 100755 index 0000000..853af9d --- /dev/null +++ b/generate-devtools-tarball.sh @@ -0,0 +1,22 @@ +#!/bin/bash +# This script generates the source code for the python-azure-devtools +# Fedora package. +set -euxo pipefail + +CURRENT_DIR=$(pwd) +COMMIT=$1 +SHORTCOMMIT=${COMMIT:0:7} +TMP_DIR=$(mktemp -d) + +USER=azure +PROJECT=azure-sdk-for-python + +pushd $TMP_DIR + wget https://github.com/${USER}/${PROJECT}/archive/${COMMIT}/azure-sdk-for-python-${SHORTCOMMIT}.tar.gz + tar xf azure-sdk-for-python-${SHORTCOMMIT}.tar.gz + pushd azure-sdk-for-python-${COMMIT}/tools/azure-devtools + tar -cz -f ${CURRENT_DIR}/azure-devtools-${COMMIT}.tar.gz . + popd +popd + +rm -rf $TMP_DIR diff --git a/python-azure-devtools.spec b/python-azure-devtools.spec index 282ce1f..d7592d3 100644 --- a/python-azure-devtools.spec +++ b/python-azure-devtools.spec @@ -1,19 +1,16 @@ # The last versioned release of the devtools code is 1.2.1, but upstream # continues to update it without bumping the version. 😞 %global srcname azure-devtools -%global forgeurl https://github.com/Azure/azure-sdk-for-python/ %global commit a5a4ef4a7adc8c730dd7da2e9e3bdb43c9376586 %global shortcommit %(c=%{commit}; echo ${c:0:7}) -%global distprefix %{nil} %global short_version 1.2.1 -%forgemeta Name: python-%{srcname} Version: %{short_version}~git.3.%{shortcommit} Release: 1%{?dist} Summary: Microsoft Azure Development Tools for SDK License: MIT and ASL 2.0 -URL: %forgeurl +URL: https://github.com/Azure/azure-sdk-for-python/ Source0: azure-devtools-%{commit}.tar.gz # The azure-sdk-for-python repository is huge at > 160MB, but we only need ~ # 100KB of source for this package. Use this script to generate a tarball of the diff --git a/sources b/sources index 49478b2..b37056a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (generate-devtools-tarball.sh) = 9f9e4debd047d28b33577ec2344f11023cbc18a275fc322c6bae3f06032a83be3f8273fbdd3bd2b75ffff104e6b99a7e80ed4f27564c19e903e1fed35c15022e +SHA512 (azure-devtools-a5a4ef4a7adc8c730dd7da2e9e3bdb43c9376586.tar.gz) = aad7a9a48644b6cfc5cabfff832bfd6281b51134a7d0de22698c5499f438cef6aaf052974f31f8006c7b84278a7a3f5bf5410b08cd3da7b390597da6ffede464 From c316e4595fbfaf3429a086a09c167e774b3bd1e4 Mon Sep 17 00:00:00 2001 From: Major Hayden Date: Wed, 8 Sep 2021 15:42:20 -0500 Subject: [PATCH 15/36] Move obsoletes into subpackage --- python-azure-devtools.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/python-azure-devtools.spec b/python-azure-devtools.spec index d7592d3..5a6a4f3 100644 --- a/python-azure-devtools.spec +++ b/python-azure-devtools.spec @@ -7,7 +7,7 @@ Name: python-%{srcname} Version: %{short_version}~git.3.%{shortcommit} -Release: 1%{?dist} +Release: 2%{?dist} Summary: Microsoft Azure Development Tools for SDK License: MIT and ASL 2.0 URL: https://github.com/Azure/azure-sdk-for-python/ @@ -23,7 +23,7 @@ Patch0: python-azure-devtools-requirements-fix.patch BuildArch: noarch -Obsoletes: python-azure-sdk < 5.0.1 +Obsoletes: python3-azure-sdk < 5.0.1 BuildRequires: python3-devel BuildRequires: python3-pip @@ -71,6 +71,9 @@ rm -f %{buildroot}%{_bindir}/{perfstress,systemperf} %changelog +* Wed Sep 08 2021 Major Hayden - 1.2.1~git.3.a5a4ef4-2 +- Move obsoletes into subpackage + * Tue Aug 03 2021 Major Hayden - 1.2.1~git.3.a5a4ef4 - Updated to latest commit on 2021-08-11 - Generate a source tarball using a script to shrink size of source RPM From 9ae9b77a5698f1f28dfd9c13eba937856462a410 Mon Sep 17 00:00:00 2001 From: Major Hayden Date: Wed, 8 Sep 2021 16:01:30 -0500 Subject: [PATCH 16/36] Move obsoletes into subpackage --- python-azure-devtools.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/python-azure-devtools.spec b/python-azure-devtools.spec index 5a6a4f3..e4b4f44 100644 --- a/python-azure-devtools.spec +++ b/python-azure-devtools.spec @@ -7,7 +7,7 @@ Name: python-%{srcname} Version: %{short_version}~git.3.%{shortcommit} -Release: 2%{?dist} +Release: 3%{?dist} Summary: Microsoft Azure Development Tools for SDK License: MIT and ASL 2.0 URL: https://github.com/Azure/azure-sdk-for-python/ @@ -41,7 +41,7 @@ This package contains tools to aid in developing Python-based Azure code.} %package -n python3-%{srcname} Summary: %{summary} - +Obsoletes: python3-azure-sdk < 5.0.1 %description -n python3-%{srcname} %{_description} @@ -71,6 +71,9 @@ rm -f %{buildroot}%{_bindir}/{perfstress,systemperf} %changelog +* Wed Sep 08 2021 Major Hayden - 1.2.1~git.3.a5a4ef4-3 +- Move obsoletes into subpackage + * Wed Sep 08 2021 Major Hayden - 1.2.1~git.3.a5a4ef4-2 - Move obsoletes into subpackage From 418cd39b3df648ca85fb9f124c9d603c817440ec Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 21 Jan 2022 10:32:17 +0000 Subject: [PATCH 17/36] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- python-azure-devtools.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-azure-devtools.spec b/python-azure-devtools.spec index e4b4f44..09caa11 100644 --- a/python-azure-devtools.spec +++ b/python-azure-devtools.spec @@ -7,7 +7,7 @@ Name: python-%{srcname} Version: %{short_version}~git.3.%{shortcommit} -Release: 3%{?dist} +Release: 4%{?dist} Summary: Microsoft Azure Development Tools for SDK License: MIT and ASL 2.0 URL: https://github.com/Azure/azure-sdk-for-python/ @@ -71,6 +71,9 @@ rm -f %{buildroot}%{_bindir}/{perfstress,systemperf} %changelog +* Fri Jan 21 2022 Fedora Release Engineering - 1.2.1~git.3.a5a4ef4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Wed Sep 08 2021 Major Hayden - 1.2.1~git.3.a5a4ef4-3 - Move obsoletes into subpackage From d2e7052cf2cfc083351a98c13841f73da344d06e Mon Sep 17 00:00:00 2001 From: Major Hayden Date: Mon, 25 Apr 2022 07:45:11 -0500 Subject: [PATCH 18/36] Clean up dependencies/obsoletes --- python-azure-devtools.spec | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/python-azure-devtools.spec b/python-azure-devtools.spec index 09caa11..9e447f8 100644 --- a/python-azure-devtools.spec +++ b/python-azure-devtools.spec @@ -7,7 +7,7 @@ Name: python-%{srcname} Version: %{short_version}~git.3.%{shortcommit} -Release: 4%{?dist} +Release: 5%{?dist} Summary: Microsoft Azure Development Tools for SDK License: MIT and ASL 2.0 URL: https://github.com/Azure/azure-sdk-for-python/ @@ -23,14 +23,7 @@ Patch0: python-azure-devtools-requirements-fix.patch BuildArch: noarch -Obsoletes: python3-azure-sdk < 5.0.1 - BuildRequires: python3-devel -BuildRequires: python3-pip -BuildRequires: python3-setuptools -BuildRequires: python3-wheel -BuildRequires: pyproject-rpm-macros - %global _description %{expand: Development tools for Python-based Azure tools @@ -41,7 +34,7 @@ This package contains tools to aid in developing Python-based Azure code.} %package -n python3-%{srcname} Summary: %{summary} -Obsoletes: python3-azure-sdk < 5.0.1 + %description -n python3-%{srcname} %{_description} @@ -71,6 +64,9 @@ rm -f %{buildroot}%{_bindir}/{perfstress,systemperf} %changelog +* Mon Apr 25 2022 Major Hayden - 1.2.1~git.3.a5a4ef4-5 +- Updating dependencies. + * Fri Jan 21 2022 Fedora Release Engineering - 1.2.1~git.3.a5a4ef4-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild From 894a079c1ffa00b8ef066eb94b9827db5bd8d136 Mon Sep 17 00:00:00 2001 From: Major Hayden Date: Tue, 24 May 2022 13:26:47 -0500 Subject: [PATCH 19/36] Update to latest commit 67d46b9 --- .gitignore | 1 + python-azure-devtools.spec | 14 ++++++++------ sources | 2 +- 3 files changed, 10 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index e60afbb..5ee337f 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ /azure-sdk-for-python-a88809f86787492ddc99c4b3ea5de36c99f14b4f.tar.gz /azure-sdk-for-python-19487ff9f1790033bcc9e3354b7bdee309a5bc71.tar.gz /azure-devtools-a5a4ef4a7adc8c730dd7da2e9e3bdb43c9376586.tar.gz +/azure-devtools-67d46b9c4292c267c14833b50bb313c077e63cd5.tar.gz diff --git a/python-azure-devtools.spec b/python-azure-devtools.spec index 9e447f8..de7a126 100644 --- a/python-azure-devtools.spec +++ b/python-azure-devtools.spec @@ -1,22 +1,21 @@ # The last versioned release of the devtools code is 1.2.1, but upstream # continues to update it without bumping the version. 😞 %global srcname azure-devtools -%global commit a5a4ef4a7adc8c730dd7da2e9e3bdb43c9376586 +%global commit 67d46b9c4292c267c14833b50bb313c077e63cd5 %global shortcommit %(c=%{commit}; echo ${c:0:7}) %global short_version 1.2.1 Name: python-%{srcname} -Version: %{short_version}~git.3.%{shortcommit} -Release: 5%{?dist} +Version: %{short_version}~git.4.%{shortcommit} +Release: 1%{?dist} Summary: Microsoft Azure Development Tools for SDK License: MIT and ASL 2.0 URL: https://github.com/Azure/azure-sdk-for-python/ -Source0: azure-devtools-%{commit}.tar.gz # The azure-sdk-for-python repository is huge at > 160MB, but we only need ~ # 100KB of source for this package. Use this script to generate a tarball of the # source code: # ./generate-devtools-tarball.sh COMMIT_SHA -Source1: generate-devtools-tarball.sh +Source0: azure-devtools-%{commit}.tar.gz # Asked upstream to update the vcrpy requirement. PR in progress. # https://github.com/Azure/azure-sdk-for-python/pull/20032 Patch0: python-azure-devtools-requirements-fix.patch @@ -55,7 +54,7 @@ Summary: %{summary} %pyproject_save_files azure_devtools # Some provided executables are only used internally in Azure SDK's CI. -rm -f %{buildroot}%{_bindir}/{perfstress,systemperf} +rm -f %{buildroot}%{_bindir}/{perfstress,perfstressdebug,systemperf} %files -n python3-%{srcname} -f %{pyproject_files} @@ -64,6 +63,9 @@ rm -f %{buildroot}%{_bindir}/{perfstress,systemperf} %changelog +* Tue May 24 2022 Major Hayden - 1.2.1~git.4.67d46b9-1 +- Update to latest commit 67d46b9c4292c267c14833b50bb313c077e63cd5. + * Mon Apr 25 2022 Major Hayden - 1.2.1~git.3.a5a4ef4-5 - Updating dependencies. diff --git a/sources b/sources index b37056a..139d519 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (azure-devtools-a5a4ef4a7adc8c730dd7da2e9e3bdb43c9376586.tar.gz) = aad7a9a48644b6cfc5cabfff832bfd6281b51134a7d0de22698c5499f438cef6aaf052974f31f8006c7b84278a7a3f5bf5410b08cd3da7b390597da6ffede464 +SHA512 (azure-devtools-67d46b9c4292c267c14833b50bb313c077e63cd5.tar.gz) = e8e92f4c9728660cd4bfc8a43e2acfc5205a0b4018df698a855a10a030ae02226cea7aea07f2b2eea86f57f15f12aca40b67dcb23d350ca96ebc468f95b93f8e From 8de42cb581f06d832c608c9ef632472213ccd03b Mon Sep 17 00:00:00 2001 From: Python Maint Date: Mon, 13 Jun 2022 18:51:37 +0200 Subject: [PATCH 20/36] Rebuilt for Python 3.11 --- python-azure-devtools.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-azure-devtools.spec b/python-azure-devtools.spec index de7a126..ee3bd24 100644 --- a/python-azure-devtools.spec +++ b/python-azure-devtools.spec @@ -7,7 +7,7 @@ Name: python-%{srcname} Version: %{short_version}~git.4.%{shortcommit} -Release: 1%{?dist} +Release: 2%{?dist} Summary: Microsoft Azure Development Tools for SDK License: MIT and ASL 2.0 URL: https://github.com/Azure/azure-sdk-for-python/ @@ -63,6 +63,9 @@ rm -f %{buildroot}%{_bindir}/{perfstress,perfstressdebug,systemperf} %changelog +* Mon Jun 13 2022 Python Maint - 1.2.1~git.4.67d46b9-2 +- Rebuilt for Python 3.11 + * Tue May 24 2022 Major Hayden - 1.2.1~git.4.67d46b9-1 - Update to latest commit 67d46b9c4292c267c14833b50bb313c077e63cd5. From d7fc7858d25458f72bc072457e012f3f8fa3a4b9 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 22 Jul 2022 16:34:24 +0000 Subject: [PATCH 21/36] Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- python-azure-devtools.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-azure-devtools.spec b/python-azure-devtools.spec index ee3bd24..58d8ade 100644 --- a/python-azure-devtools.spec +++ b/python-azure-devtools.spec @@ -7,7 +7,7 @@ Name: python-%{srcname} Version: %{short_version}~git.4.%{shortcommit} -Release: 2%{?dist} +Release: 3%{?dist} Summary: Microsoft Azure Development Tools for SDK License: MIT and ASL 2.0 URL: https://github.com/Azure/azure-sdk-for-python/ @@ -63,6 +63,9 @@ rm -f %{buildroot}%{_bindir}/{perfstress,perfstressdebug,systemperf} %changelog +* Fri Jul 22 2022 Fedora Release Engineering - 1.2.1~git.4.67d46b9-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + * Mon Jun 13 2022 Python Maint - 1.2.1~git.4.67d46b9-2 - Rebuilt for Python 3.11 From b6ae4a3d3441f5821e2dcaf9cb1ca72f822c397b Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 20 Jan 2023 11:26:45 +0000 Subject: [PATCH 22/36] Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- python-azure-devtools.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-azure-devtools.spec b/python-azure-devtools.spec index 58d8ade..3cbe6e7 100644 --- a/python-azure-devtools.spec +++ b/python-azure-devtools.spec @@ -7,7 +7,7 @@ Name: python-%{srcname} Version: %{short_version}~git.4.%{shortcommit} -Release: 3%{?dist} +Release: 4%{?dist} Summary: Microsoft Azure Development Tools for SDK License: MIT and ASL 2.0 URL: https://github.com/Azure/azure-sdk-for-python/ @@ -63,6 +63,9 @@ rm -f %{buildroot}%{_bindir}/{perfstress,perfstressdebug,systemperf} %changelog +* Fri Jan 20 2023 Fedora Release Engineering - 1.2.1~git.4.67d46b9-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + * Fri Jul 22 2022 Fedora Release Engineering - 1.2.1~git.4.67d46b9-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild From cc2b4480d15793fb5f248379f6946f0ee441216b Mon Sep 17 00:00:00 2001 From: Major Hayden Date: Wed, 22 Feb 2023 07:39:04 -0600 Subject: [PATCH 23/36] Set SPDX license --- python-azure-devtools.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python-azure-devtools.spec b/python-azure-devtools.spec index 3cbe6e7..70abffe 100644 --- a/python-azure-devtools.spec +++ b/python-azure-devtools.spec @@ -9,7 +9,7 @@ Name: python-%{srcname} Version: %{short_version}~git.4.%{shortcommit} Release: 4%{?dist} Summary: Microsoft Azure Development Tools for SDK -License: MIT and ASL 2.0 +License: MIT and Apache-2.0 URL: https://github.com/Azure/azure-sdk-for-python/ # The azure-sdk-for-python repository is huge at > 160MB, but we only need ~ # 100KB of source for this package. Use this script to generate a tarball of the From 24652b7390daf7b9bbfa1978d2f6bbaa0c704f24 Mon Sep 17 00:00:00 2001 From: Major Hayden Date: Mon, 8 May 2023 14:22:32 -0500 Subject: [PATCH 24/36] -S Migrated to SPDX license Signed-off-by: Major Hayden From 170766924862a72e4a22b0fbd5fab282a45e510d Mon Sep 17 00:00:00 2001 From: Major Hayden Date: Wed, 17 May 2023 07:27:29 -0500 Subject: [PATCH 25/36] Migrated to SPDX license Signed-off-by: Major Hayden From f262a18c2bf789713788bde28533efd159e759d6 Mon Sep 17 00:00:00 2001 From: Python Maint Date: Sat, 1 Jul 2023 18:05:45 +0200 Subject: [PATCH 26/36] Rebuilt for Python 3.12 --- python-azure-devtools.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-azure-devtools.spec b/python-azure-devtools.spec index 70abffe..81b9442 100644 --- a/python-azure-devtools.spec +++ b/python-azure-devtools.spec @@ -7,7 +7,7 @@ Name: python-%{srcname} Version: %{short_version}~git.4.%{shortcommit} -Release: 4%{?dist} +Release: 5%{?dist} Summary: Microsoft Azure Development Tools for SDK License: MIT and Apache-2.0 URL: https://github.com/Azure/azure-sdk-for-python/ @@ -63,6 +63,9 @@ rm -f %{buildroot}%{_bindir}/{perfstress,perfstressdebug,systemperf} %changelog +* Sat Jul 01 2023 Python Maint - 1.2.1~git.4.67d46b9-5 +- Rebuilt for Python 3.12 + * Fri Jan 20 2023 Fedora Release Engineering - 1.2.1~git.4.67d46b9-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild From 0269b57ba99c53382895c4c7ddeb86453bc7b5e2 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 21 Jul 2023 07:34:27 +0000 Subject: [PATCH 27/36] Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- python-azure-devtools.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-azure-devtools.spec b/python-azure-devtools.spec index 81b9442..3084876 100644 --- a/python-azure-devtools.spec +++ b/python-azure-devtools.spec @@ -7,7 +7,7 @@ Name: python-%{srcname} Version: %{short_version}~git.4.%{shortcommit} -Release: 5%{?dist} +Release: 6%{?dist} Summary: Microsoft Azure Development Tools for SDK License: MIT and Apache-2.0 URL: https://github.com/Azure/azure-sdk-for-python/ @@ -63,6 +63,9 @@ rm -f %{buildroot}%{_bindir}/{perfstress,perfstressdebug,systemperf} %changelog +* Fri Jul 21 2023 Fedora Release Engineering - 1.2.1~git.4.67d46b9-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + * Sat Jul 01 2023 Python Maint - 1.2.1~git.4.67d46b9-5 - Rebuilt for Python 3.12 From 01c9b37c04b2be7e079511723144ba0e68528919 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sun, 21 Jan 2024 23:32:19 +0000 Subject: [PATCH 28/36] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- python-azure-devtools.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-azure-devtools.spec b/python-azure-devtools.spec index 3084876..1a11138 100644 --- a/python-azure-devtools.spec +++ b/python-azure-devtools.spec @@ -7,7 +7,7 @@ Name: python-%{srcname} Version: %{short_version}~git.4.%{shortcommit} -Release: 6%{?dist} +Release: 7%{?dist} Summary: Microsoft Azure Development Tools for SDK License: MIT and Apache-2.0 URL: https://github.com/Azure/azure-sdk-for-python/ @@ -63,6 +63,9 @@ rm -f %{buildroot}%{_bindir}/{perfstress,perfstressdebug,systemperf} %changelog +* Sun Jan 21 2024 Fedora Release Engineering - 1.2.1~git.4.67d46b9-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Fri Jul 21 2023 Fedora Release Engineering - 1.2.1~git.4.67d46b9-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild From 35456385a4dda4bb8d78acad03c1787e0df801a2 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 26 Jan 2024 01:35:14 +0000 Subject: [PATCH 29/36] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- python-azure-devtools.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-azure-devtools.spec b/python-azure-devtools.spec index 1a11138..4c8ffea 100644 --- a/python-azure-devtools.spec +++ b/python-azure-devtools.spec @@ -7,7 +7,7 @@ Name: python-%{srcname} Version: %{short_version}~git.4.%{shortcommit} -Release: 7%{?dist} +Release: 8%{?dist} Summary: Microsoft Azure Development Tools for SDK License: MIT and Apache-2.0 URL: https://github.com/Azure/azure-sdk-for-python/ @@ -63,6 +63,9 @@ rm -f %{buildroot}%{_bindir}/{perfstress,perfstressdebug,systemperf} %changelog +* Fri Jan 26 2024 Fedora Release Engineering - 1.2.1~git.4.67d46b9-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Sun Jan 21 2024 Fedora Release Engineering - 1.2.1~git.4.67d46b9-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From 5466871b8d6a0f598333148163416a261e5f5d69 Mon Sep 17 00:00:00 2001 From: Python Maint Date: Sun, 9 Jun 2024 12:52:44 +0200 Subject: [PATCH 30/36] Rebuilt for Python 3.13 --- python-azure-devtools.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-azure-devtools.spec b/python-azure-devtools.spec index 4c8ffea..03585e6 100644 --- a/python-azure-devtools.spec +++ b/python-azure-devtools.spec @@ -7,7 +7,7 @@ Name: python-%{srcname} Version: %{short_version}~git.4.%{shortcommit} -Release: 8%{?dist} +Release: 9%{?dist} Summary: Microsoft Azure Development Tools for SDK License: MIT and Apache-2.0 URL: https://github.com/Azure/azure-sdk-for-python/ @@ -63,6 +63,9 @@ rm -f %{buildroot}%{_bindir}/{perfstress,perfstressdebug,systemperf} %changelog +* Sun Jun 09 2024 Python Maint - 1.2.1~git.4.67d46b9-9 +- Rebuilt for Python 3.13 + * Fri Jan 26 2024 Fedora Release Engineering - 1.2.1~git.4.67d46b9-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From bbdcca0144232667182ba0c81466ad7bba842db5 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 19 Jul 2024 09:43:01 +0000 Subject: [PATCH 31/36] Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild --- python-azure-devtools.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-azure-devtools.spec b/python-azure-devtools.spec index 03585e6..81b4318 100644 --- a/python-azure-devtools.spec +++ b/python-azure-devtools.spec @@ -7,7 +7,7 @@ Name: python-%{srcname} Version: %{short_version}~git.4.%{shortcommit} -Release: 9%{?dist} +Release: 10%{?dist} Summary: Microsoft Azure Development Tools for SDK License: MIT and Apache-2.0 URL: https://github.com/Azure/azure-sdk-for-python/ @@ -63,6 +63,9 @@ rm -f %{buildroot}%{_bindir}/{perfstress,perfstressdebug,systemperf} %changelog +* Fri Jul 19 2024 Fedora Release Engineering - 1.2.1~git.4.67d46b9-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + * Sun Jun 09 2024 Python Maint - 1.2.1~git.4.67d46b9-9 - Rebuilt for Python 3.13 From cfee0cc4ce64ab4f152323b88cb0ca2084046d63 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 18 Jan 2025 12:09:26 +0000 Subject: [PATCH 32/36] Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild --- python-azure-devtools.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-azure-devtools.spec b/python-azure-devtools.spec index 81b4318..4a2a62e 100644 --- a/python-azure-devtools.spec +++ b/python-azure-devtools.spec @@ -7,7 +7,7 @@ Name: python-%{srcname} Version: %{short_version}~git.4.%{shortcommit} -Release: 10%{?dist} +Release: 11%{?dist} Summary: Microsoft Azure Development Tools for SDK License: MIT and Apache-2.0 URL: https://github.com/Azure/azure-sdk-for-python/ @@ -63,6 +63,9 @@ rm -f %{buildroot}%{_bindir}/{perfstress,perfstressdebug,systemperf} %changelog +* Sat Jan 18 2025 Fedora Release Engineering - 1.2.1~git.4.67d46b9-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + * Fri Jul 19 2024 Fedora Release Engineering - 1.2.1~git.4.67d46b9-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild From 0e26f7441d844961d55d80181dd7ae637fd0161e Mon Sep 17 00:00:00 2001 From: Python Maint Date: Fri, 6 Jun 2025 17:21:31 +0200 Subject: [PATCH 33/36] Rebuilt for Python 3.14 --- python-azure-devtools.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-azure-devtools.spec b/python-azure-devtools.spec index 4a2a62e..0df9f96 100644 --- a/python-azure-devtools.spec +++ b/python-azure-devtools.spec @@ -7,7 +7,7 @@ Name: python-%{srcname} Version: %{short_version}~git.4.%{shortcommit} -Release: 11%{?dist} +Release: 12%{?dist} Summary: Microsoft Azure Development Tools for SDK License: MIT and Apache-2.0 URL: https://github.com/Azure/azure-sdk-for-python/ @@ -63,6 +63,9 @@ rm -f %{buildroot}%{_bindir}/{perfstress,perfstressdebug,systemperf} %changelog +* Fri Jun 06 2025 Python Maint - 1.2.1~git.4.67d46b9-12 +- Rebuilt for Python 3.14 + * Sat Jan 18 2025 Fedora Release Engineering - 1.2.1~git.4.67d46b9-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild From 36c4a892bd104779ab7a1f5a6fb3f357458f7ab7 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 25 Jul 2025 06:48:38 +0000 Subject: [PATCH 34/36] Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild --- python-azure-devtools.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-azure-devtools.spec b/python-azure-devtools.spec index 0df9f96..b49a764 100644 --- a/python-azure-devtools.spec +++ b/python-azure-devtools.spec @@ -7,7 +7,7 @@ Name: python-%{srcname} Version: %{short_version}~git.4.%{shortcommit} -Release: 12%{?dist} +Release: 13%{?dist} Summary: Microsoft Azure Development Tools for SDK License: MIT and Apache-2.0 URL: https://github.com/Azure/azure-sdk-for-python/ @@ -63,6 +63,9 @@ rm -f %{buildroot}%{_bindir}/{perfstress,perfstressdebug,systemperf} %changelog +* Fri Jul 25 2025 Fedora Release Engineering - 1.2.1~git.4.67d46b9-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + * Fri Jun 06 2025 Python Maint - 1.2.1~git.4.67d46b9-12 - Rebuilt for Python 3.14 From b1c79af589145a4bcda1e0f86cc2ec7e1015af1c Mon Sep 17 00:00:00 2001 From: Python Maint Date: Fri, 15 Aug 2025 13:17:39 +0200 Subject: [PATCH 35/36] Rebuilt for Python 3.14.0rc2 bytecode --- python-azure-devtools.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-azure-devtools.spec b/python-azure-devtools.spec index b49a764..c1c0a41 100644 --- a/python-azure-devtools.spec +++ b/python-azure-devtools.spec @@ -7,7 +7,7 @@ Name: python-%{srcname} Version: %{short_version}~git.4.%{shortcommit} -Release: 13%{?dist} +Release: 14%{?dist} Summary: Microsoft Azure Development Tools for SDK License: MIT and Apache-2.0 URL: https://github.com/Azure/azure-sdk-for-python/ @@ -63,6 +63,9 @@ rm -f %{buildroot}%{_bindir}/{perfstress,perfstressdebug,systemperf} %changelog +* Fri Aug 15 2025 Python Maint - 1.2.1~git.4.67d46b9-14 +- Rebuilt for Python 3.14.0rc2 bytecode + * Fri Jul 25 2025 Fedora Release Engineering - 1.2.1~git.4.67d46b9-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild From 6f6a597f6e5b7029c4350be9d8292aeeb89d1625 Mon Sep 17 00:00:00 2001 From: Python Maint Date: Fri, 19 Sep 2025 12:48:33 +0200 Subject: [PATCH 36/36] Rebuilt for Python 3.14.0rc3 bytecode --- python-azure-devtools.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-azure-devtools.spec b/python-azure-devtools.spec index c1c0a41..9da61ab 100644 --- a/python-azure-devtools.spec +++ b/python-azure-devtools.spec @@ -7,7 +7,7 @@ Name: python-%{srcname} Version: %{short_version}~git.4.%{shortcommit} -Release: 14%{?dist} +Release: 15%{?dist} Summary: Microsoft Azure Development Tools for SDK License: MIT and Apache-2.0 URL: https://github.com/Azure/azure-sdk-for-python/ @@ -63,6 +63,9 @@ rm -f %{buildroot}%{_bindir}/{perfstress,perfstressdebug,systemperf} %changelog +* Fri Sep 19 2025 Python Maint - 1.2.1~git.4.67d46b9-15 +- Rebuilt for Python 3.14.0rc3 bytecode + * Fri Aug 15 2025 Python Maint - 1.2.1~git.4.67d46b9-14 - Rebuilt for Python 3.14.0rc2 bytecode