From owner-svn-ports-all@freebsd.org Sun Jun 4 21:49:50 2017 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 DE4CABF077B; Sun, 4 Jun 2017 21:49:50 +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 B9E9B2682; Sun, 4 Jun 2017 21:49:50 +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 v54Lnn57031319; Sun, 4 Jun 2017 21:49:49 GMT (envelope-from bdrewery@FreeBSD.org) Received: (from bdrewery@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v54LnmiH031306; Sun, 4 Jun 2017 21:49:48 GMT (envelope-from bdrewery@FreeBSD.org) Message-Id: <201706042149.v54LnmiH031306@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:49:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r442592 - in head: archivers/py-attic archivers/py-borgbackup audio/lollypop comms/wsjt comms/wspr mail/rss2email3 math/convertall math/rpcalc multimedia/mps-youtube net-im/poezio net/t... X-SVN-Group: ports-head 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.23 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: Sun, 04 Jun 2017 21:49:51 -0000 Author: bdrewery Date: Sun Jun 4 21:49:48 2017 New Revision: 442592 URL: https://svnweb.freebsd.org/changeset/ports/442592 Log: 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 MFH: 2017Q2 Modified: head/archivers/py-attic/Makefile head/archivers/py-borgbackup/Makefile head/audio/lollypop/Makefile head/comms/wsjt/Makefile head/comms/wspr/Makefile head/mail/rss2email3/Makefile head/math/convertall/Makefile head/math/rpcalc/Makefile head/multimedia/mps-youtube/Makefile head/net-im/poezio/Makefile head/net/tiny-network-utilities/Makefile head/ports-mgmt/py-pytoport/Makefile head/security/morphis/Makefile Modified: head/archivers/py-attic/Makefile ============================================================================== --- head/archivers/py-attic/Makefile Sun Jun 4 21:12:42 2017 (r442591) +++ head/archivers/py-attic/Makefile Sun Jun 4 21:49:48 2017 (r442592) @@ -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: head/archivers/py-borgbackup/Makefile ============================================================================== --- head/archivers/py-borgbackup/Makefile Sun Jun 4 21:12:42 2017 (r442591) +++ head/archivers/py-borgbackup/Makefile Sun Jun 4 21:49:48 2017 (r442592) @@ -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: head/audio/lollypop/Makefile ============================================================================== --- head/audio/lollypop/Makefile Sun Jun 4 21:12:42 2017 (r442591) +++ head/audio/lollypop/Makefile Sun Jun 4 21:49:48 2017 (r442592) @@ -37,7 +37,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: head/comms/wsjt/Makefile ============================================================================== --- head/comms/wsjt/Makefile Sun Jun 4 21:12:42 2017 (r442591) +++ head/comms/wsjt/Makefile Sun Jun 4 21:49:48 2017 (r442592) @@ -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: head/comms/wspr/Makefile ============================================================================== --- head/comms/wspr/Makefile Sun Jun 4 21:12:42 2017 (r442591) +++ head/comms/wspr/Makefile Sun Jun 4 21:49:48 2017 (r442592) @@ -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: head/mail/rss2email3/Makefile ============================================================================== --- head/mail/rss2email3/Makefile Sun Jun 4 21:12:42 2017 (r442591) +++ head/mail/rss2email3/Makefile Sun Jun 4 21:49:48 2017 (r442592) @@ -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: head/math/convertall/Makefile ============================================================================== --- head/math/convertall/Makefile Sun Jun 4 21:12:42 2017 (r442591) +++ head/math/convertall/Makefile Sun Jun 4 21:49:48 2017 (r442592) @@ -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: head/math/rpcalc/Makefile ============================================================================== --- head/math/rpcalc/Makefile Sun Jun 4 21:12:42 2017 (r442591) +++ head/math/rpcalc/Makefile Sun Jun 4 21:49:48 2017 (r442592) @@ -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: head/multimedia/mps-youtube/Makefile ============================================================================== --- head/multimedia/mps-youtube/Makefile Sun Jun 4 21:12:42 2017 (r442591) +++ head/multimedia/mps-youtube/Makefile Sun Jun 4 21:49:48 2017 (r442592) @@ -46,7 +46,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: head/net-im/poezio/Makefile ============================================================================== --- head/net-im/poezio/Makefile Sun Jun 4 21:12:42 2017 (r442591) +++ head/net-im/poezio/Makefile Sun Jun 4 21:49:48 2017 (r442592) @@ -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: head/net/tiny-network-utilities/Makefile ============================================================================== --- head/net/tiny-network-utilities/Makefile Sun Jun 4 21:12:42 2017 (r442591) +++ head/net/tiny-network-utilities/Makefile Sun Jun 4 21:49:48 2017 (r442592) @@ -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: head/ports-mgmt/py-pytoport/Makefile ============================================================================== --- head/ports-mgmt/py-pytoport/Makefile Sun Jun 4 21:12:42 2017 (r442591) +++ head/ports-mgmt/py-pytoport/Makefile Sun Jun 4 21:49:48 2017 (r442592) @@ -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: head/security/morphis/Makefile ============================================================================== --- head/security/morphis/Makefile Sun Jun 4 21:12:42 2017 (r442591) +++ head/security/morphis/Makefile Sun Jun 4 21:49:48 2017 (r442592) @@ -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