Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 21 Apr 2026 17:13:20 +0000
From:      Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: eb4299f931f0 - main - devel/py-azure-batch: Update to 15.0.0b3
Message-ID:  <69e7b030.3de2e.53b4f900@gitrepo.freebsd.org>

index | next in thread | raw e-mail

The branch main has been updated by sunpoet:

URL: https://cgit.FreeBSD.org/ports/commit/?id=eb4299f931f0f739830a6fdc9e6e0a2c06928af5

commit eb4299f931f0f739830a6fdc9e6e0a2c06928af5
Author:     Po-Chuan Hsieh <sunpoet@FreeBSD.org>
AuthorDate: 2026-04-21 17:00:25 +0000
Commit:     Po-Chuan Hsieh <sunpoet@FreeBSD.org>
CommitDate: 2026-04-21 17:11:48 +0000

    devel/py-azure-batch: Update to 15.0.0b3
    
    - Update WWW
    - Add LICENSE_FILE
    - Update version requirement of RUN_DEPENDS
    - Sort RUN_DEPENDS
    - Convert to USE_PYTHON=pep517
    - Update pkg-descr
    
    Changes:        https://github.com/Azure/azure-sdk-for-python/releases
                    https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/batch/azure-batch/CHANGELOG.md
---
 devel/py-azure-batch/Makefile                   | 20 +++++++++++++-------
 devel/py-azure-batch/distinfo                   |  6 +++---
 devel/py-azure-batch/files/patch-pyproject.toml | 20 ++++++++++++++++++++
 devel/py-azure-batch/pkg-descr                  | 13 +++----------
 4 files changed, 39 insertions(+), 20 deletions(-)

diff --git a/devel/py-azure-batch/Makefile b/devel/py-azure-batch/Makefile
index 867c42cff550..dd3e79497c40 100644
--- a/devel/py-azure-batch/Makefile
+++ b/devel/py-azure-batch/Makefile
@@ -1,21 +1,27 @@
 PORTNAME=	azure-batch
-PORTVERSION=	14.0.0
-PORTREVISION=	1
+DISTVERSION=	15.0.0b3
 CATEGORIES=	devel python
 MASTER_SITES=	PYPI
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+DISTNAME=	azure_batch-${DISTVERSION}
 
 MAINTAINER=	sunpoet@FreeBSD.org
 COMMENT=	Microsoft Azure Batch Client Library for Python
-WWW=		https://pypi.org/project/azure-batch/
+WWW=		https://azure.github.io/azure-sdk-for-python/ \
+		https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/batch/azure-batch \
+		https://github.com/Azure/azure-sdk-for-python
 
 LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
 
-RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}msrestazure>=0.4.32<2.0.0:net-mgmt/py-msrestazure@${PY_FLAVOR} \
-		${PYTHON_PKGNAMEPREFIX}azure-common>=1.1:www/py-azure-common@${PY_FLAVOR}
+BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}setuptools>=61:devel/py-setuptools@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${PY_FLAVOR}
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}azure-core>=1.35.0:devel/py-azure-core@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}isodate>=0.6.1:devel/py-isodate@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}typing-extensions>=4.6.0:devel/py-typing-extensions@${PY_FLAVOR}
 
-USES=		azurepy python zip
-USE_PYTHON=	autoplist concurrent distutils
+USES=		python
+USE_PYTHON=	autoplist concurrent pep517
 
 NO_ARCH=	yes
 
diff --git a/devel/py-azure-batch/distinfo b/devel/py-azure-batch/distinfo
index 0df3ced505d2..91acf3a5119b 100644
--- a/devel/py-azure-batch/distinfo
+++ b/devel/py-azure-batch/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1696202725
-SHA256 (azure-batch-14.0.0.zip) = 165b1e99b86f821024c4fae85fb34869d407aa0ebb0ca4b96fb26d859c26c934
-SIZE (azure-batch-14.0.0.zip) = 265201
+TIMESTAMP = 1771961510
+SHA256 (azure_batch-15.0.0b3.tar.gz) = 13c63de3b7bf2c49b6c026874f1e62c2fe397096ea491def4899221e6afd8736
+SIZE (azure_batch-15.0.0b3.tar.gz) = 276007
diff --git a/devel/py-azure-batch/files/patch-pyproject.toml b/devel/py-azure-batch/files/patch-pyproject.toml
new file mode 100644
index 000000000000..45c099dde56c
--- /dev/null
+++ b/devel/py-azure-batch/files/patch-pyproject.toml
@@ -0,0 +1,20 @@
+--- pyproject.toml.orig	2025-10-16 01:09:53 UTC
++++ pyproject.toml
+@@ -6,7 +6,7 @@
+ # --------------------------------------------------------------------------
+ 
+ [build-system]
+-requires = ["setuptools>=77.0.3", "wheel"]
++requires = ["setuptools>=61", "wheel"]
+ build-backend = "setuptools.build_meta"
+ 
+ [project]
+@@ -15,7 +15,7 @@ description = "Microsoft Corporation Azure Batch Clien
+   { name = "Microsoft Corporation", email = "azpysdkhelp@microsoft.com" },
+ ]
+ description = "Microsoft Corporation Azure Batch Client Library for Python"
+-license = "MIT"
++license = { text = "MIT" }
+ classifiers = [
+     "Development Status :: 4 - Beta",
+     "Programming Language :: Python",
diff --git a/devel/py-azure-batch/pkg-descr b/devel/py-azure-batch/pkg-descr
index 13a8ff7ed43d..a251763bcc29 100644
--- a/devel/py-azure-batch/pkg-descr
+++ b/devel/py-azure-batch/pkg-descr
@@ -1,10 +1,3 @@
-This is the Microsoft Azure Batch Client Library.
-
-Batch processing began with mainframe computers and punch cards. Today, it
-still plays a central role in business, engineering, science, and other
-areas that require running lots of automated tasks-processing bills and
-payroll, calculating portfolio risk, designing new products, rendering
-animated films, testing software, searching for energy, predicting the
-weather, and finding new cures for disease.  Previously, few people had
-access to the computing power for these scenarios.  With Azure Batch, that
-power is available to you when you need it, without any capital investment.
+This is the Microsoft Azure Batch Client Library. This package has been tested
+with Python 3.6+. For a more complete set of Azure libraries, see
+https://aka.ms/azsdk/python/all


home | help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?69e7b030.3de2e.53b4f900>