svn commit: r366339 - branches/2014Q3/Mk
Antoine Brodin
antoine at FreeBSD.org
Wed Aug 27 18:43:54 UTC 2014
Author: antoine
Date: Wed Aug 27 18:43:54 2014
New Revision: 366339
URL: http://svnweb.freebsd.org/changeset/ports/366339
QAT: https://qat.redports.org/buildarchive/r366339/
Log:
MFH: r365802
Ignore ports setting NO_PACKAGE when PACKAGE_BUILDING is set
Side effect is that we will no longer mirror their distfiles, sad for them,
but we will no longer spend cpu cycles building them for nothing every week
and have strange errors from dependent ports unable to install NO_PACKAGE
dependencies
Users willing to package those ports can still set FORCE_PACKAGE
Poudriere users can also package by not setting NO_FORCE_PACKAGE in poudriere.conf (by default it's already not set)
Differential Revision: https://reviews.freebsd.org/D670
Reviewed by: bdrewery
With hat: portmgr
Modified:
branches/2014Q3/Mk/bsd.port.mk
Directory Properties:
branches/2014Q3/ (props changed)
Modified: branches/2014Q3/Mk/bsd.port.mk
==============================================================================
--- branches/2014Q3/Mk/bsd.port.mk Wed Aug 27 18:41:17 2014 (r366338)
+++ branches/2014Q3/Mk/bsd.port.mk Wed Aug 27 18:43:54 2014 (r366339)
@@ -3025,6 +3025,8 @@ IGNORE= is not an interactive port
IGNORE= may not be placed on a CDROM: ${NO_CDROM}
.elif (defined(RESTRICTED) && defined(NO_RESTRICTED))
IGNORE= is restricted: ${RESTRICTED}
+.elif (defined(NO_PACKAGE) && defined(PACKAGE_BUILDING))
+IGNORE= may not be packaged: ${NO_PACKAGE}
.elif defined(BROKEN)
.if !defined(TRYBROKEN)
IGNORE= is marked as broken: ${BROKEN}
More information about the svn-ports-all
mailing list