Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 4 Jun 2017 21:49:48 +0000 (UTC)
From:      Bryan Drewery <bdrewery@FreeBSD.org>
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...
Message-ID:  <201706042149.v54LnmiH031306@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <bsd.port.pre.mk>
 
-.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 <bsd.port.pre.mk>
 
-.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 <bsd.port.pre.mk>
 
-.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 <bsd.port.pre.mk>
 
-.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 <bsd.port.pre.mk>
 
-.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 <bsd.port.pre.mk>
 
-.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 <bsd.port.pre.mk>
 
-.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 <bsd.port.pre.mk>
 
-.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 <bsd.port.pre.mk>
 
-.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 <bsd.port.pre.mk>
 
-.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 <bsd.port.pre.mk>
 
-.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
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201706042149.v54LnmiH031306>