Compare commits

...
Sign in to create a new pull request.

20 commits

Author SHA1 Message Date
Python Maint
d71dbe138d Rebuilt for Python 3.14.0rc3 bytecode 2025-09-19 12:49:00 +02:00
Python Maint
03b15adc4e Rebuilt for Python 3.14.0rc2 bytecode 2025-08-15 13:18:06 +02:00
Fedora Release Engineering
0c332aad9b Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild 2025-07-25 06:49:35 +00:00
Python Maint
768b47cc6c Rebuilt for Python 3.14 2025-06-06 17:35:48 +02:00
Fedora Release Engineering
5d96a978b0 Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild 2025-01-18 12:11:08 +00:00
Fedora Release Engineering
5464c1c6e4 Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild 2024-07-19 09:44:30 +00:00
Python Maint
169b84f6c7 Rebuilt for Python 3.13 2024-06-09 13:43:01 +02:00
Fedora Release Engineering
fba1c15d91 Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild 2024-01-26 01:38:13 +00:00
Fedora Release Engineering
dbf534fb6a Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild 2024-01-21 23:33:43 +00:00
Fedora Release Engineering
3f77aeae8c Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2023-07-21 07:36:24 +00:00
Python Maint
55613aa9cd Rebuilt for Python 3.12 2023-07-01 18:45:49 +02:00
Major Hayden
f76d038715
Migrated to SPDX license
Signed-off-by: Major Hayden <major@redhat.com>
2023-05-17 07:27:40 -05:00
Major Hayden
1b6ff0d4ca
-S
Migrated to SPDX license

Signed-off-by: Major Hayden <major@redhat.com>
2023-05-08 14:22:42 -05:00
Fedora Release Engineering
5f0a805ee3 Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2023-01-20 11:28:18 +00:00
Fedora Release Engineering
dac160aea1 Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2022-07-22 16:35:53 +00:00
Major Hayden
928060b23a
Fix incorrect testing conditional 2022-07-08 10:11:39 -05:00
Major Hayden
d896918536
Use GitHub source; run tests 2022-06-28 10:27:43 -05:00
Python Maint
11e2782dbd Rebuilt for Python 3.11 2022-06-15 15:33:31 +02:00
Major Hayden
2d6321e665
Switch to rpmautospec 2022-04-28 08:52:54 -05:00
Fedora Release Engineering
3c31a33266 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2022-01-21 10:33:36 +00:00
5 changed files with 60 additions and 44 deletions

1
.gitignore vendored
View file

@ -1 +1,2 @@
/azure-loganalytics-0.1.0.zip
/azure-loganalytics-0.1.0.tgz

21
generate-source.sh Executable file
View file

@ -0,0 +1,21 @@
#!/bin/bash
set -euxo pipefail
export VERSION=0.1.0
export PACKAGE_NAME=azure-loganalytics
WORKING_DIR=$(pwd)
# Download the release and unpack it.
curl -LO https://github.com/Azure/azure-sdk-for-python/archive/refs/tags/${PACKAGE_NAME}_${VERSION}.tar.gz
tar xzf ${PACKAGE_NAME}_${VERSION}.tar.gz
# Find the package directory in the SDK release and the parent directory.
PACKAGE_DIR=$(find azure-sdk-for-python-${PACKAGE_NAME}_${VERSION} -type d -name $PACKAGE_NAME)
PARENT_DIR=$(dirname $PACKAGE_DIR)
# Build a tarball with a prefix directory that contains the package name and
# version. Store that in the directory where the script is running.
pushd $PARENT_DIR
tar --transform "s/^${PACKAGE_NAME}/${PACKAGE_NAME}-${VERSION}/" -cz \
-f ${WORKING_DIR}/${PACKAGE_NAME}-${VERSION}.tgz $PACKAGE_NAME
popd

View file

@ -1,20 +1,36 @@
# EPEL9 does not have python-aiohttp packaged yet.
%if 0%{?fedora}
%bcond_without tests
%else
%bcond_with tests
%endif
%global srcname azure-loganalytics
Name: python-%{srcname}
Version: 0.1.0
Release: 5%{?dist}
Release: %autorelease
Summary: Microsoft Azure Log Analytics Client Library for Python
License: MIT
URL: https://pypi.org/project/%{srcname}/
Source0: %{pypi_source %{srcname} %{version} zip}
Patch0: remove-custom-wheel-builder.patch
# This source comes from making a git archive of the main azure-sdk-for-python
# repository. To reproduce the source code, run the generate-source.sh script.
Source0: %{srcname}-%{version}.tgz
BuildArch: noarch
BuildRequires: python3-devel
BuildRequires: python%{python3_pkgversion}-devel
BuildRequires: pyproject-rpm-macros
%if %{with tests}
BuildRequires: python3dist(azure-devtools)
BuildRequires: python3dist(azure-mgmt-keyvault)
BuildRequires: python3dist(azure-mgmt-resource)
BuildRequires: python3dist(azure-sdk-tools)
BuildRequires: python3dist(msrestazure)
BuildRequires: python3dist(pytest)
BuildRequires: python3dist(pytest-aiohttp)
BuildRequires: python3dist(python-dotenv)
%endif
%global _description %{expand:
Microsoft Azure Log Analytics Client Library for Python}
@ -24,20 +40,21 @@ Microsoft Azure Log Analytics Client Library for Python}
%package -n python3-%{srcname}
Summary: %{summary}
Obsoletes: python3-azure-sdk < 5.0.1
%description -n python3-%{srcname} %{_description}
%prep
%autosetup -p0 -n %{srcname}-%{version}
%autosetup -n %{srcname}-%{version}
# Remove the customized wheel builder included by Microsoft that adds
# azure-nspkg to the requirements.
sed -i '/azure-namespace-package/d' setup.cfg
rm -f azure_bdist_wheel.py
%generate_buildrequires
%pyproject_buildrequires -r
%pyproject_buildrequires
%build
@ -51,6 +68,16 @@ rm -f azure_bdist_wheel.py
# files. Remove unneccessary __init__.py that conflicts with other packages.
rm -rf %{buildroot}%{python3_sitelib}/azure/{__init__.py,__pycache__}
%pyproject_save_files azure
%check
%pyproject_check_import
%if %{with tests}
%pytest
%endif
%files -n python3-%{srcname}
%doc README.rst
@ -59,17 +86,4 @@ rm -rf %{buildroot}%{python3_sitelib}/azure/{__init__.py,__pycache__}
%changelog
* Wed Sep 08 2021 Major Hayden <major@mhtx.net> - 0.1.0-5
- Move obsoletes into subpackage
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.0-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
* Wed Jul 14 2021 Major Hayden <major@mhtx.net> - 0.1.0-3
- Remove unneccessary __init__.py files to avoid file conflicts.
* Wed Jul 07 2021 Major Hayden <major@mhtx.net> - 0.1.0-2
- Remove custom wheel builder that adds the azure-nspkg requirement.
* Tue Jun 01 2021 Major Hayden <major@mhtx.net> - 0.1.0-1
- First package.
%autochangelog

View file

@ -1,20 +0,0 @@
diff -up ./MANIFEST.in.orig ./MANIFEST.in
--- ./MANIFEST.in.orig 2021-07-07 07:57:49.089075245 -0500
+++ ./MANIFEST.in 2021-07-07 07:57:52.238053234 -0500
@@ -1,2 +1 @@
include *.rst
-include azure_bdist_wheel.py
\ No newline at end of file
diff -up ./setup.cfg.orig ./setup.cfg
--- ./setup.cfg.orig 2021-07-07 07:57:42.345122388 -0500
+++ ./setup.cfg 2021-07-07 07:57:55.897027655 -0500
@@ -1,8 +1,6 @@
[bdist_wheel]
universal = 1
-azure-namespace-package = azure-nspkg
[egg_info]
-tag_build =
+tag_build =
tag_date = 0
-

View file

@ -1 +1 @@
SHA512 (azure-loganalytics-0.1.0.zip) = f3e902f50e81a585e1660314da59bf29184c8a7f2ce3c06449949e7707631310e3bb12555079ea664fc44596dad53b272f16ac08e78d9069b2fb3f400836c6aa
SHA512 (azure-loganalytics-0.1.0.tgz) = a071104f6be2ceaddbbdba4ec1cb42947be32bccc644571436b9988d5eafba292c0262a09e7120513b00a72020bd5d20036b64389206704f66c6a5440a011b6e