diff options
| author | Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2026-01-15 11:34:55 +0000 |
|---|---|---|
| committer | Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2026-01-15 11:53:02 +0000 |
| commit | 76c3581c32d2aa8c87c720f9503033a039cf89d3 (patch) | |
| tree | ace21f40276048ff18c064df5ef637243d7f2b2d | |
| parent | b58bffd6f845e796648eefbb2352739df4e4e49d (diff) | |
devel/py-azure-storage-queue: Add py-azure-storage-queue 12.15.0
Azure Queue storage is a service for storing large numbers of messages that can
be accessed from anywhere in the world via authenticated calls using HTTP or
HTTPS. A single queue message can be up to 64 KiB in size, and a queue can
contain millions of messages, up to the total capacity limit of a storage
account.
Common uses of Queue storage include:
- Creating a backlog of work to process asynchronously
- Passing messages between different parts of a distributed application
| -rw-r--r-- | devel/Makefile | 1 | ||||
| -rw-r--r-- | devel/py-azure-storage-queue/Makefile | 28 | ||||
| -rw-r--r-- | devel/py-azure-storage-queue/distinfo | 3 | ||||
| -rw-r--r-- | devel/py-azure-storage-queue/pkg-descr | 9 |
4 files changed, 41 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index 06c4af1fdd69..1ae3ef102cc9 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -4562,6 +4562,7 @@ SUBDIR += py-azure-storage-blob SUBDIR += py-azure-storage-common SUBDIR += py-azure-storage-file-share + SUBDIR += py-azure-storage-queue SUBDIR += py-azure-synapse-accesscontrol SUBDIR += py-azure-synapse-artifacts SUBDIR += py-azure-synapse-managedprivateendpoints diff --git a/devel/py-azure-storage-queue/Makefile b/devel/py-azure-storage-queue/Makefile new file mode 100644 index 000000000000..6d007e194406 --- /dev/null +++ b/devel/py-azure-storage-queue/Makefile @@ -0,0 +1,28 @@ +PORTNAME= azure-storage-queue +PORTVERSION= 12.15.0 +CATEGORIES= devel python +MASTER_SITES= PYPI +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= azure_storage_queue-${PORTVERSION} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Microsoft Azure Azure Queue Storage Client Library for Python +WWW= https://azure.github.io/azure-sdk-for-python/ \ + https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-queue \ + https://github.com/Azure/azure-sdk-for-python + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools>=0:devel/py-setuptools@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${PY_FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}azure-core>=1.30.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= python +USE_PYTHON= autoplist concurrent cryptography pep517 + +NO_ARCH= yes + +.include <bsd.port.mk> diff --git a/devel/py-azure-storage-queue/distinfo b/devel/py-azure-storage-queue/distinfo new file mode 100644 index 000000000000..0b928bc9421a --- /dev/null +++ b/devel/py-azure-storage-queue/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1768283080 +SHA256 (azure_storage_queue-12.15.0.tar.gz) = 4e01dcae5aefd0c463f7bae5c75c8a91f955c893f14ed7590fc0cd447ac4666d +SIZE (azure_storage_queue-12.15.0.tar.gz) = 197521 diff --git a/devel/py-azure-storage-queue/pkg-descr b/devel/py-azure-storage-queue/pkg-descr new file mode 100644 index 000000000000..31e2b7fa3793 --- /dev/null +++ b/devel/py-azure-storage-queue/pkg-descr @@ -0,0 +1,9 @@ +Azure Queue storage is a service for storing large numbers of messages that can +be accessed from anywhere in the world via authenticated calls using HTTP or +HTTPS. A single queue message can be up to 64 KiB in size, and a queue can +contain millions of messages, up to the total capacity limit of a storage +account. + +Common uses of Queue storage include: +- Creating a backlog of work to process asynchronously +- Passing messages between different parts of a distributed application |
