From owner-svn-ports-branches@freebsd.org Mon Jan 29 22:06:53 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0C3ACEE1844; Mon, 29 Jan 2018 22:06:53 +0000 (UTC) (envelope-from bhughes@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id AAE6869461; Mon, 29 Jan 2018 22:06:52 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A5C5763C3; Mon, 29 Jan 2018 22:06:52 +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 w0TM6qbG014781; Mon, 29 Jan 2018 22:06:52 GMT (envelope-from bhughes@FreeBSD.org) Received: (from bhughes@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w0TM6qKd014779; Mon, 29 Jan 2018 22:06:52 GMT (envelope-from bhughes@FreeBSD.org) Message-Id: <201801292206.w0TM6qKd014779@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bhughes set sender to bhughes@FreeBSD.org using -f From: "Bradley T. Hughes" Date: Mon, 29 Jan 2018 22:06:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r460348 - in branches/2018Q1: . devel/awscli X-SVN-Group: ports-branches X-SVN-Commit-Author: bhughes X-SVN-Commit-Paths: in branches/2018Q1: . devel/awscli X-SVN-Commit-Revision: 460348 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Jan 2018 22:06:53 -0000 Author: bhughes Date: Mon Jan 29 22:06:52 2018 New Revision: 460348 URL: https://svnweb.freebsd.org/changeset/ports/460348 Log: MFH: r457853 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) Differential Revision: https://reviews.freebsd.org/D13555 Approved by: portmgr Modified: branches/2018Q1/UPDATING branches/2018Q1/devel/awscli/Makefile Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/UPDATING ============================================================================== --- branches/2018Q1/UPDATING Mon Jan 29 22:00:39 2018 (r460347) +++ branches/2018Q1/UPDATING Mon Jan 29 22:06:52 2018 (r460348) @@ -29,6 +29,14 @@ you update your ports collection, before attempting an stopped). Note that this value is NOT a list of allowed CLIENTS, but instead a list of allowed SERVER hostnames. +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: branches/2018Q1/devel/awscli/Makefile ============================================================================== --- branches/2018Q1/devel/awscli/Makefile Mon Jan 29 22:00:39 2018 (r460347) +++ branches/2018Q1/devel/awscli/Makefile Mon Jan 29 22:06:52 2018 (r460348) @@ -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