From owner-svn-ports-branches@freebsd.org Sun Jun 4 21:51:09 2017 Return-Path: Delivered-To: svn-ports-branches@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 798A2BF0824; Sun, 4 Jun 2017 21:51:09 +0000 (UTC) (envelope-from bdrewery@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 53C8B27FB; Sun, 4 Jun 2017 21:51:09 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v54Lp8cO034482; Sun, 4 Jun 2017 21:51:08 GMT (envelope-from bdrewery@FreeBSD.org) Received: (from bdrewery@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v54Lp7G5034469; Sun, 4 Jun 2017 21:51:07 GMT (envelope-from bdrewery@FreeBSD.org) Message-Id: <201706042151.v54Lp7G5034469@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bdrewery set sender to bdrewery@FreeBSD.org using -f From: Bryan Drewery Date: Sun, 4 Jun 2017 21:51:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r442593 - in branches/2017Q2: archivers/py-attic archivers/py-borgbackup audio/lollypop comms/wsjt comms/wspr mail/rss2email3 math/convertall math/rpcalc multimedia/mps-youtube net-im/p... X-SVN-Group: ports-branches 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.23 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: Sun, 04 Jun 2017 21:51:09 -0000 Author: bdrewery Date: Sun Jun 4 21:51:07 2017 New Revision: 442593 URL: https://svnweb.freebsd.org/changeset/ports/442593 Log: MFH: r442592 Allow these ports to build with PACKAGE_BUILDING_FLAVORS set. Poudriere in particulr did not properly handle DEPENDS_ARGS which made these ports not properly install dependencies. That bug is being addressed along with adding FLAVORS support to it. With hat: portmgr Approved by: portmgr (implicit) Modified: branches/2017Q2/archivers/py-attic/Makefile branches/2017Q2/archivers/py-borgbackup/Makefile branches/2017Q2/audio/lollypop/Makefile branches/2017Q2/comms/wsjt/Makefile branches/2017Q2/comms/wspr/Makefile branches/2017Q2/mail/rss2email3/Makefile branches/2017Q2/math/convertall/Makefile branches/2017Q2/math/rpcalc/Makefile branches/2017Q2/multimedia/mps-youtube/Makefile branches/2017Q2/net-im/poezio/Makefile branches/2017Q2/net/tiny-network-utilities/Makefile branches/2017Q2/ports-mgmt/py-pytoport/Makefile branches/2017Q2/security/morphis/Makefile Directory Properties: branches/2017Q2/ (props changed) Modified: branches/2017Q2/archivers/py-attic/Makefile ============================================================================== --- branches/2017Q2/archivers/py-attic/Makefile Sun Jun 4 21:49:48 2017 (r442592) +++ branches/2017Q2/archivers/py-attic/Makefile Sun Jun 4 21:51:07 2017 (r442593) @@ -25,7 +25,8 @@ PYDISTUTILS_BUILDPATH=${BUILD_WRKSRC}/build/lib.${OPSY .include -.if defined(PACKAGE_BUILDING) && ${PYTHON_VER} != ${PYTHON_DEFAULT} +.if defined(PACKAGE_BUILDING) && !defined(PACKAGE_BUILDING_FLAVORS) && \ + ${PYTHON_VER} != ${PYTHON_DEFAULT} IGNORE= you have python ${PYTHON_DEFAULT} set as the default, and this needs ${PYTHON_VER} .endif Modified: branches/2017Q2/archivers/py-borgbackup/Makefile ============================================================================== --- branches/2017Q2/archivers/py-borgbackup/Makefile Sun Jun 4 21:49:48 2017 (r442592) +++ branches/2017Q2/archivers/py-borgbackup/Makefile Sun Jun 4 21:51:07 2017 (r442593) @@ -28,7 +28,8 @@ USE_PYTHON= autoplist distutils .include -.if defined(PACKAGE_BUILDING) && ${PYTHON_VER} != ${PYTHON_DEFAULT} +.if defined(PACKAGE_BUILDING) && !defined(PACKAGE_BUILDING_FLAVORS) && \ + ${PYTHON_VER} != ${PYTHON_DEFAULT} IGNORE= you have python ${PYTHON_DEFAULT} set as the default, and this needs ${PYTHON_VER} .endif Modified: branches/2017Q2/audio/lollypop/Makefile ============================================================================== --- branches/2017Q2/audio/lollypop/Makefile Sun Jun 4 21:49:48 2017 (r442592) +++ branches/2017Q2/audio/lollypop/Makefile Sun Jun 4 21:51:07 2017 (r442593) @@ -36,7 +36,8 @@ SUB_FILES= pkg-message .include -.if defined(PACKAGE_BUILDING) && ${PYTHON_VER} != ${PYTHON_DEFAULT} +.if defined(PACKAGE_BUILDING) && !defined(PACKAGE_BUILDING_FLAVORS) && \ + ${PYTHON_VER} != ${PYTHON_DEFAULT} IGNORE= you have python ${PYTHON_DEFAULT} set as the default, and this needs ${PYTHON_VER} .endif Modified: branches/2017Q2/comms/wsjt/Makefile ============================================================================== --- branches/2017Q2/comms/wsjt/Makefile Sun Jun 4 21:49:48 2017 (r442592) +++ branches/2017Q2/comms/wsjt/Makefile Sun Jun 4 21:51:07 2017 (r442593) @@ -103,7 +103,8 @@ post-install-DOCS-on: ${INSTALL_DATA} ${WRKSRC}/${d} ${STAGEDIR}${DOCSDIR} .endfor -.if defined(PACKAGE_BUILDING) && ${PYTHON_VER} != ${PYTHON_DEFAULT} +.if defined(PACKAGE_BUILDING) && !defined(PACKAGE_BUILDING_FLAVORS) && \ + ${PYTHON_VER} != ${PYTHON_DEFAULT} IGNORE= you have python ${PYTHON_DEFAULT} set as the default, and this needs ${PYTHON_VER} .endif Modified: branches/2017Q2/comms/wspr/Makefile ============================================================================== --- branches/2017Q2/comms/wspr/Makefile Sun Jun 4 21:49:48 2017 (r442592) +++ branches/2017Q2/comms/wspr/Makefile Sun Jun 4 21:51:07 2017 (r442593) @@ -63,7 +63,8 @@ do-fetch: .endif .endif -.if defined(PACKAGE_BUILDING) && ${PYTHON_VER} != ${PYTHON_DEFAULT} +.if defined(PACKAGE_BUILDING) && !defined(PACKAGE_BUILDING_FLAVORS) && \ + ${PYTHON_VER} != ${PYTHON_DEFAULT} IGNORE= you have python ${PYTHON_DEFAULT} set as the default, and this needs ${PYTHON_VER} .endif Modified: branches/2017Q2/mail/rss2email3/Makefile ============================================================================== --- branches/2017Q2/mail/rss2email3/Makefile Sun Jun 4 21:49:48 2017 (r442592) +++ branches/2017Q2/mail/rss2email3/Makefile Sun Jun 4 21:51:07 2017 (r442593) @@ -35,7 +35,8 @@ post-install: .include -.if defined(PACKAGE_BUILDING) && ${PYTHON_VER} != ${PYTHON_DEFAULT} +.if defined(PACKAGE_BUILDING) && !defined(PACKAGE_BUILDING_FLAVORS) && \ + ${PYTHON_VER} != ${PYTHON_DEFAULT} IGNORE= you have python ${PYTHON_DEFAULT} set as the default, and this needs ${PYTHON_VER} .endif Modified: branches/2017Q2/math/convertall/Makefile ============================================================================== --- branches/2017Q2/math/convertall/Makefile Sun Jun 4 21:49:48 2017 (r442592) +++ branches/2017Q2/math/convertall/Makefile Sun Jun 4 21:51:07 2017 (r442593) @@ -41,7 +41,8 @@ do-install: .include -.if defined(PACKAGE_BUILDING) && ${PYTHON_VER} != ${PYTHON_DEFAULT} +.if defined(PACKAGE_BUILDING) && !defined(PACKAGE_BUILDING_FLAVORS) && \ + ${PYTHON_VER} != ${PYTHON_DEFAULT} IGNORE= you have python ${PYTHON_DEFAULT} set as the default, and this needs ${PYTHON_VER} .endif Modified: branches/2017Q2/math/rpcalc/Makefile ============================================================================== --- branches/2017Q2/math/rpcalc/Makefile Sun Jun 4 21:49:48 2017 (r442592) +++ branches/2017Q2/math/rpcalc/Makefile Sun Jun 4 21:51:07 2017 (r442593) @@ -36,7 +36,8 @@ do-install: .include -.if defined(PACKAGE_BUILDING) && ${PYTHON_VER} != ${PYTHON_DEFAULT} +.if defined(PACKAGE_BUILDING) && !defined(PACKAGE_BUILDING_FLAVORS) && \ + ${PYTHON_VER} != ${PYTHON_DEFAULT} IGNORE= you have python ${PYTHON_DEFAULT} set as the default, and this needs ${PYTHON_VER} .endif Modified: branches/2017Q2/multimedia/mps-youtube/Makefile ============================================================================== --- branches/2017Q2/multimedia/mps-youtube/Makefile Sun Jun 4 21:49:48 2017 (r442592) +++ branches/2017Q2/multimedia/mps-youtube/Makefile Sun Jun 4 21:51:07 2017 (r442593) @@ -47,7 +47,8 @@ post-install: .include -.if defined(PACKAGE_BUILDING) && ${PYTHON_VER} != ${PYTHON_DEFAULT} +.if defined(PACKAGE_BUILDING) && !defined(PACKAGE_BUILDING_FLAVORS) && \ + ${PYTHON_VER} != ${PYTHON_DEFAULT} IGNORE= you have python ${PYTHON_DEFAULT} set as the default, and this needs ${PYTHON_VER} .endif Modified: branches/2017Q2/net-im/poezio/Makefile ============================================================================== --- branches/2017Q2/net-im/poezio/Makefile Sun Jun 4 21:49:48 2017 (r442592) +++ branches/2017Q2/net-im/poezio/Makefile Sun Jun 4 21:51:07 2017 (r442593) @@ -20,7 +20,8 @@ USE_PYTHON= distutils autoplist .include -.if defined(PACKAGE_BUILDING) && ${PYTHON_VER} != ${PYTHON_DEFAULT} +.if defined(PACKAGE_BUILDING) && !defined(PACKAGE_BUILDING_FLAVORS) && \ + ${PYTHON_VER} != ${PYTHON_DEFAULT} IGNORE= you have python ${PYTHON_DEFAULT} set as the default, and this needs ${PYTHON_VER} .endif Modified: branches/2017Q2/net/tiny-network-utilities/Makefile ============================================================================== --- branches/2017Q2/net/tiny-network-utilities/Makefile Sun Jun 4 21:49:48 2017 (r442592) +++ branches/2017Q2/net/tiny-network-utilities/Makefile Sun Jun 4 21:51:07 2017 (r442593) @@ -27,7 +27,8 @@ PLIST_FILES= ${FILES_EXEC:%=bin/%} ${FILES_LIB:%=${PYT .include -.if defined(PACKAGE_BUILDING) && ${PYTHON_VER} != ${PYTHON_DEFAULT} +.if defined(PACKAGE_BUILDING) && !defined(PACKAGE_BUILDING_FLAVORS) && \ + ${PYTHON_VER} != ${PYTHON_DEFAULT} IGNORE= you have python ${PYTHON_DEFAULT} set as the default, and this needs ${PYTHON_VER} .endif Modified: branches/2017Q2/ports-mgmt/py-pytoport/Makefile ============================================================================== --- branches/2017Q2/ports-mgmt/py-pytoport/Makefile Sun Jun 4 21:49:48 2017 (r442592) +++ branches/2017Q2/ports-mgmt/py-pytoport/Makefile Sun Jun 4 21:51:07 2017 (r442593) @@ -25,7 +25,8 @@ USE_PYTHON= autoplist distutils .include -.if defined(PACKAGE_BUILDING) && ${PYTHON_VER} != ${PYTHON_DEFAULT} +.if defined(PACKAGE_BUILDING) && !defined(PACKAGE_BUILDING_FLAVORS) && \ + ${PYTHON_VER} != ${PYTHON_DEFAULT} IGNORE= you have python ${PYTHON_DEFAULT} set as the default, and this needs ${PYTHON_VER} .endif Modified: branches/2017Q2/security/morphis/Makefile ============================================================================== --- branches/2017Q2/security/morphis/Makefile Sun Jun 4 21:49:48 2017 (r442592) +++ branches/2017Q2/security/morphis/Makefile Sun Jun 4 21:51:07 2017 (r442593) @@ -27,7 +27,8 @@ NO_ARCH= yes .include -.if defined(PACKAGE_BUILDING) && ${PYTHON_VER} != ${PYTHON_DEFAULT} +.if defined(PACKAGE_BUILDING) && !defined(PACKAGE_BUILDING_FLAVORS) && \ + ${PYTHON_VER} != ${PYTHON_DEFAULT} IGNORE= you have python ${PYTHON_DEFAULT} set as the default, and this needs ${PYTHON_VER} .endif