Compare commits
18 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
046148fd63 | ||
|
|
819539b0a0 | ||
|
|
19b87b4e81 | ||
|
|
835ba7b961 | ||
|
|
99f4483e09 | ||
|
|
8db5039cdb | ||
|
|
ccadb28b20 | ||
|
|
4536d9ca07 | ||
|
|
d5bca1c309 | ||
|
|
ce31db2108 | ||
|
|
24fe12b4e8 | ||
|
|
9eea5d2a8d |
||
|
|
97a0ab5f40 | ||
|
|
468a471f96 | ||
|
|
085fb9f73e |
||
|
|
a8170f7908 | ||
|
|
6f5c1ad0e3 |
||
|
|
c6ef68376d |
4 changed files with 51 additions and 25 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -1,2 +1,3 @@
|
||||||
/azure-mgmt-batchai-2.0.0.zip
|
/azure-mgmt-batchai-2.0.0.zip
|
||||||
/azure-mgmt-batchai-7.0.0b1.zip
|
/azure-mgmt-batchai-7.0.0b1.zip
|
||||||
|
/azure-mgmt-batchai-7.0.0b1.tgz
|
||||||
|
|
|
||||||
21
generate-source.sh
Executable file
21
generate-source.sh
Executable file
|
|
@ -0,0 +1,21 @@
|
||||||
|
#!/bin/bash
|
||||||
|
set -euxo pipefail
|
||||||
|
|
||||||
|
export VERSION=7.0.0b1
|
||||||
|
export PACKAGE_NAME=azure-mgmt-batchai
|
||||||
|
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
|
||||||
|
|
@ -1,21 +1,33 @@
|
||||||
|
# No tests available from upstream yet.
|
||||||
|
%bcond_with tests
|
||||||
|
|
||||||
%global srcname azure-mgmt-batchai
|
%global srcname azure-mgmt-batchai
|
||||||
|
|
||||||
Name: python-%{srcname}
|
Name: python-%{srcname}
|
||||||
Version: 7.0.0b1
|
Version: 7.0.0b1
|
||||||
Release: 3%{?dist}
|
Release: %autorelease
|
||||||
Summary: Microsoft Azure Batch AI Management Client Library for Python
|
Summary: Microsoft Azure Batch AI Management Client Library for Python
|
||||||
License: MIT
|
License: MIT
|
||||||
URL: https://pypi.org/project/%{srcname}/
|
URL: https://pypi.org/project/%{srcname}/
|
||||||
Source0: %{pypi_source %{srcname} %{version} zip}
|
# 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
|
BuildArch: noarch
|
||||||
|
|
||||||
Epoch: 1
|
Epoch: 1
|
||||||
|
|
||||||
|
|
||||||
BuildRequires: python3-devel
|
BuildRequires: python3-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(pytest)
|
||||||
|
BuildRequires: python3dist(pytest-aiohttp)
|
||||||
|
BuildRequires: python3dist(python-dotenv)
|
||||||
|
%endif
|
||||||
|
|
||||||
%global _description %{expand:
|
%global _description %{expand:
|
||||||
Microsoft Azure Batch AI Management Client Library for Python}
|
Microsoft Azure Batch AI Management Client Library for Python}
|
||||||
|
|
@ -25,16 +37,16 @@ Microsoft Azure Batch AI Management Client Library for Python}
|
||||||
|
|
||||||
%package -n python3-%{srcname}
|
%package -n python3-%{srcname}
|
||||||
Summary: %{summary}
|
Summary: %{summary}
|
||||||
Obsoletes: python3-azure-sdk < 5.0.1
|
|
||||||
%description -n python3-%{srcname} %{_description}
|
%description -n python3-%{srcname} %{_description}
|
||||||
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -p0 -n %{srcname}-%{version}
|
%autosetup -n %{srcname}-%{version}
|
||||||
|
|
||||||
|
|
||||||
%generate_buildrequires
|
%generate_buildrequires
|
||||||
%pyproject_buildrequires -r
|
%pyproject_buildrequires
|
||||||
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
|
|
@ -46,25 +58,17 @@ Obsoletes: python3-azure-sdk < 5.0.1
|
||||||
%pyproject_save_files azure
|
%pyproject_save_files azure
|
||||||
|
|
||||||
|
|
||||||
|
%check
|
||||||
|
%pyproject_check_import
|
||||||
|
|
||||||
|
%if %{with tests}
|
||||||
|
%pytest
|
||||||
|
%endif
|
||||||
|
|
||||||
|
|
||||||
%files -n python3-%{srcname} -f %{pyproject_files}
|
%files -n python3-%{srcname} -f %{pyproject_files}
|
||||||
%doc README.md CHANGELOG.md
|
%doc README.md CHANGELOG.md
|
||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Wed Sep 08 2021 Major Hayden <major@mhtx.net> - 1:7.0.0b1-3
|
%autochangelog
|
||||||
- Move obsoletes into subpackage
|
|
||||||
|
|
||||||
* Mon Aug 09 2021 Major Hayden <major@mhtx.net> - 1:7.0.0b1-2
|
|
||||||
- Update to 7.0.0b1
|
|
||||||
|
|
||||||
* Fri Jul 23 2021 Major Hayden <major@mhtx.net> - 1:2.0.0-4
|
|
||||||
- Add epoch number to 2.0.0 downgrade
|
|
||||||
|
|
||||||
* Wed Jul 14 2021 Major Hayden <major@mhtx.net> - 2.0.0-3
|
|
||||||
- Remove unneccessary __init__.py files to avoid file conflicts.
|
|
||||||
|
|
||||||
* Wed Jul 07 2021 Major Hayden <major@mhtx.net> - 2.0.0-2
|
|
||||||
- Removed customized wheel builder from package to avoid -nspkg requirement.
|
|
||||||
|
|
||||||
* Tue Jun 01 2021 Major Hayden <major@mhtx.net> - 2.0.0-1
|
|
||||||
- First package.
|
|
||||||
|
|
|
||||||
2
sources
2
sources
|
|
@ -1 +1 @@
|
||||||
SHA512 (azure-mgmt-batchai-7.0.0b1.zip) = c81be868cb87ff9d2acc82b83581844586a31ecbb8b4a3a8e2025cfcc658009030dd97ce873b6b2d0d2ab175ac4ba21ed4c1906f08f047c8c84fc4081e26be2b
|
SHA512 (azure-mgmt-batchai-7.0.0b1.tgz) = 0893276a24dba766a031e68a7b617d0f21c954c6238ac5d5b422376772261c659cde35f68d032020a84c3cb621565c1b71f89eec2e8fd5dd6921d0ea7bc3f6c0
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue