Verified Commit a16a7cd9 authored by sunpoet's avatar sunpoet
Browse files

sysutils/py-azure-cli-base: Remove obsoleted port

It is no longer needed after py-azure-* and related ports moved to PEP 517 installation.
parent ccdc2ce8
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -5250,3 +5250,4 @@ emulators/emu64||2026-04-16|Broken, fails to build
databases/py-sqlglotrs|databases/py-sqlglotc|2026-04-18|Remove obsoleted port. Use databases/py-sqlglotc instead
devel/py-prettytable0|devel/py-prettytable|2026-04-18|Remove obsoleted port. Use devel/py-prettytable instead
www/py-requests-cache0|www/py-requests-cache|2026-04-18|Remove obsoleted port. Use www/py-requests-cache instead
sysutils/py-azure-cli-base||2026-04-21|Remove obsoleted port
+0 −1
Original line number Diff line number Diff line
@@ -1047,7 +1047,6 @@
    SUBDIR += py-appjail-gui
    SUBDIR += py-azure-cli
    SUBDIR += py-azure-cli-acr
    SUBDIR += py-azure-cli-base
    SUBDIR += py-azure-cli-core
    SUBDIR += py-azure-cli-telemetry
    SUBDIR += py-bitrot
+0 −28
Original line number Diff line number Diff line
PORTNAME=	azure-cli-base
PORTVERSION=	1.0.0
CATEGORIES=	sysutils python
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
DISTFILES=

MAINTAINER=	sunpoet@FreeBSD.org
COMMENT=	Shared namespace for py-azure-* ports

LICENSE=	MIT

NO_BUILD=	yes
NO_ARCH=	yes
USES=		python
USE_PYTHON=	flavors

do-install:
	${MKDIR} ${STAGEDIR}${PYTHON_SITELIBDIR}/azure/cli/command_modules
	${MKDIR} ${STAGEDIR}${PYTHON_SITELIBDIR}/azure/mgmt/datalake
	${INSTALL_DATA}	${FILESDIR}/__init__.py	${STAGEDIR}${PYTHON_SITELIBDIR}/azure
	${INSTALL_DATA}	${FILESDIR}/__init__.py	${STAGEDIR}${PYTHON_SITELIBDIR}/azure/cli
	${INSTALL_DATA}	${FILESDIR}/__init__.py	${STAGEDIR}${PYTHON_SITELIBDIR}/azure/cli/command_modules
	${INSTALL_DATA}	${FILESDIR}/__init__.py	${STAGEDIR}${PYTHON_SITELIBDIR}/azure/mgmt
	${INSTALL_DATA}	${FILESDIR}/__init__.py	${STAGEDIR}${PYTHON_SITELIBDIR}/azure/mgmt/datalake
	${PYTHON_CMD} -m compileall -d ${PYTHON_SITELIBDIR} ${STAGEDIR}${PYTHON_SITELIBDIR}
	${PYTHON_CMD} -O -m compileall -d ${PYTHON_SITELIBDIR} ${STAGEDIR}${PYTHON_SITELIBDIR}

.include <bsd.port.mk>
+0 −7
Original line number Diff line number Diff line
# --------------------------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------

import pkg_resources
pkg_resources.declare_namespace(__name__)
+0 −9
Original line number Diff line number Diff line
Shared namespace for py-azure-* ports

py-azure-cli-base provides common files that are shared among all py-azure-*
ports:
  azure/__init__.py
  azure/cli/__init__.py
  azure/cli/command_modules/__init__.py
  azure/mgmt/__init__.py
  azure/mgmt/datalake/__init__.py
Loading