Index: branches/2020Q3/devel/py-azure-multiapi-storage/Makefile =================================================================== --- branches/2020Q3/devel/py-azure-multiapi-storage/Makefile (revision 541494) +++ branches/2020Q3/devel/py-azure-multiapi-storage/Makefile (revision 541495) @@ -1,26 +1,27 @@ # $FreeBSD$ PORTNAME= azure-multiapi-storage PORTVERSION= 0.3.5 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= dbaio@FreeBSD.org COMMENT= Microsoft Azure Storage Client Library with multi API version support LICENSE= MIT RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}azure-common>=0:www/py-azure-common@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}cryptography>=0:security/py-cryptography@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}requests>=0:www/py-requests@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}dateutil>=0:devel/py-dateutil@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}azure-core>=0:devel/py-azure-core@${PY_FLAVOR} \ ${PY_FUTURES} USES= azurepy python USE_PYTHON= autoplist concurrent distutils NO_ARCH= yes .include Index: branches/2020Q3/devel/py-azure-multiapi-storage/files/patch-setup.py =================================================================== --- branches/2020Q3/devel/py-azure-multiapi-storage/files/patch-setup.py (nonexistent) +++ branches/2020Q3/devel/py-azure-multiapi-storage/files/patch-setup.py (revision 541495) @@ -0,0 +1,27 @@ +# https://github.com/Azure/azure-multiapi-storage-python/pull/29/files + +--- setup.py.orig 2020-07-08 12:22:39 UTC ++++ setup.py +@@ -18,6 +18,13 @@ + from setuptools import find_packages, setup + import sys + ++if sys.version_info[0] < 3: ++ packages = find_packages() ++else: ++ # ensure that the "azure" native namespace is coherent ++ from setuptools import find_namespace_packages ++ packages = find_namespace_packages(include=["azure.multiapi.*"]) ++ + # azure v0.x is not compatible with this package + # azure v0.x used to have a __version__ attribute (newer versions don't) + try: +@@ -57,7 +64,7 @@ setup( + 'License :: OSI Approved :: Apache Software License', + ], + zip_safe=False, +- packages=find_packages(exclude=["azure"]), ++ packages=packages, + install_requires=[ + 'azure-common', + 'cryptography', Property changes on: branches/2020Q3/devel/py-azure-multiapi-storage/files/patch-setup.py ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: branches/2020Q3 =================================================================== --- branches/2020Q3 (revision 541494) +++ branches/2020Q3 (revision 541495) Property changes on: branches/2020Q3 ___________________________________________________________________ Modified: svn:mergeinfo ## -0,0 +0,1 ## Merged /head:r541494