From owner-svn-ports-all@freebsd.org Tue Jan 2 13:52:51 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5E96CEA6992; Tue, 2 Jan 2018 13:52:51 +0000 (UTC) (envelope-from bhughes@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 35B2D7FB82; Tue, 2 Jan 2018 13:52:51 +0000 (UTC) (envelope-from bhughes@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w02DqoSS073195; Tue, 2 Jan 2018 13:52:50 GMT (envelope-from bhughes@FreeBSD.org) Received: (from bhughes@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w02DqoRu073193; Tue, 2 Jan 2018 13:52:50 GMT (envelope-from bhughes@FreeBSD.org) Message-Id: <201801021352.w02DqoRu073193@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bhughes set sender to bhughes@FreeBSD.org using -f From: "Bradley T. Hughes" Date: Tue, 2 Jan 2018 13:52:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r457853 - in head: . devel/awscli X-SVN-Group: ports-head X-SVN-Commit-Author: bhughes X-SVN-Commit-Paths: in head: . devel/awscli X-SVN-Commit-Revision: 457853 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Jan 2018 13:52:51 -0000 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