Date: Tue, 2 Jan 2018 13:52:50 +0000 (UTC) From: "Bradley T. Hughes" <bhughes@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r457853 - in head: . devel/awscli Message-ID: <201801021352.w02DqoRu073193@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: bhughes Date: Tue Jan 2 13:52:49 2018 New Revision: 457853 URL: https://svnweb.freebsd.org/changeset/ports/457853 Log: devel/awscli: use USE_PTYHON=noflavors, remove PKGNAMEPREFIX The introduction of flavors caused the awscli package to be renamed to py27-awscli. Since this package is preinstalled on all AWS EC2 instances running a FreeBSD image, apply POLA and rename the package back to awscli. The assumption is that the rename was unintentional. Approved by: mat (co-mentor) MFH: 2018Q1 Differential Revision: https://reviews.freebsd.org/D13555 Modified: head/UPDATING head/devel/awscli/Makefile Modified: head/UPDATING ============================================================================== --- head/UPDATING Tue Jan 2 13:29:19 2018 (r457852) +++ head/UPDATING Tue Jan 2 13:52:49 2018 (r457853) @@ -5,6 +5,14 @@ they are unavoidable. You should get into the habit of checking this file for changes each time you update your ports collection, before attempting any port upgrades. +20180102: + AFFECTS: users of devel/awscli + AUTHOR: bhughes@FreeBSD.org + + The package name for devel/awscli has changed (back) to just awscli. + The introduction of flavors erroneously caused the awscli package to + be renamed to py27-awscli. + 20171230: AFFECTS: users of net-im/ejabberd AUTHOR: ashish@FreeBSD.org Modified: head/devel/awscli/Makefile ============================================================================== --- head/devel/awscli/Makefile Tue Jan 2 13:29:19 2018 (r457852) +++ head/devel/awscli/Makefile Tue Jan 2 13:52:49 2018 (r457853) @@ -5,7 +5,6 @@ PORTNAME= awscli PORTVERSION= 1.14.13 CATEGORIES= devel MASTER_SITES= CHEESESHOP -PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= bhughes@FreeBSD.org COMMENT= Universal Command Line Interface for Amazon Web Services @@ -13,15 +12,15 @@ COMMENT= Universal Command Line Interface for Amazon W LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}botocore>=1.8.17:devel/py-botocore@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}colorama>=0.2.5:devel/py-colorama@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}s3transfer>=0.1.12:net/py-s3transfer@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}docutils>=0.10:textproc/py-docutils@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}rsa>=3.1.2:security/py-rsa@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}yaml>=3.10:devel/py-yaml@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}botocore>=1.8.17:devel/py-botocore@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}colorama>=0.2.5:devel/py-colorama@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}s3transfer>=0.1.12:net/py-s3transfer@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}docutils>=0.10:textproc/py-docutils@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}rsa>=3.1.2:security/py-rsa@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}yaml>=3.10:devel/py-yaml@${PY_FLAVOR} USES= python -USE_PYTHON= autoplist distutils concurrent +USE_PYTHON= autoplist distutils concurrent noflavors NO_ARCH= yes .include <bsd.port.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201801021352.w02DqoRu073193>