Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 17 Jun 2017 03:40:15 +0000 (UTC)
From:      Bryan Drewery <bdrewery@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-svnadmin@freebsd.org
Subject:   svn commit: r443730 - svnadmin/hooks/scripts
Message-ID:  <201706170340.v5H3eFR3024036@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bdrewery
Date: Sat Jun 17 03:40:15 2017
New Revision: 443730
URL: https://svnweb.freebsd.org/changeset/ports/443730

Log:
  Disallow adding new py3 slave ports.
  
  FLAVORS is coming very soon; these slave ports slow us down and make it
  harder for Poudriere to do the right thing in the transition period.
  
  Approved by:	portmgr (implicit)

Modified:
  svnadmin/hooks/scripts/detect-filename.sh

Modified: svnadmin/hooks/scripts/detect-filename.sh
==============================================================================
--- svnadmin/hooks/scripts/detect-filename.sh	Sat Jun 17 03:36:36 2017	(r443729)
+++ svnadmin/hooks/scripts/detect-filename.sh	Sat Jun 17 03:40:15 2017	(r443730)
@@ -27,5 +27,14 @@ if $SVNLOOK changed -t "$TXN" "$REPO" | grep -q -E '^A
   exit 1
 fi
 
+# Look for new py3 ports
+if $SVNLOOK changed -t "$TXN" "$REPO" | grep -q -E '^A.*/py3'; then
+  echo "Please do not add new py3 slave ports at this time.  FLAVORS" >&2
+  echo "support is coming soon which will remove the need for these kind of" >&2
+  echo "slave ports.  Having new ones come in slows down development for" >&2
+  echo "FLAVORS support." >&2
+  exit 1
+fi
+
 # No files with invalid chars were detected
 exit 0



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