Use GitHub source; run tests
This commit is contained in:
parent
11e2782dbd
commit
d896918536
5 changed files with 52 additions and 27 deletions
|
|
@ -1,3 +1,5 @@
|
|||
%bcond_without tests
|
||||
|
||||
%global srcname azure-loganalytics
|
||||
|
||||
Name: python-%{srcname}
|
||||
|
|
@ -6,14 +8,24 @@ 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
|
||||
|
||||
%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}
|
||||
|
|
@ -23,20 +35,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
|
||||
|
|
@ -50,6 +63,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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue