svn commit: r336587 - head/Mk

William Grzybowski wg at FreeBSD.org
Sun Dec 15 21:56:41 UTC 2013


Author: wg
Date: Sun Dec 15 21:56:41 2013
New Revision: 336587
URL: http://svnweb.freebsd.org/changeset/ports/336587

Log:
  Mk/bsd.sanity.mk: note USE_PYDISTUTILS=easy_install deprecation
  
  Now that all python packages use setuptools and eggs are undesired for system
  wide packages the ports should use USE_PYDISTUTILS=yes instead.
  
  Approved by:	portmgr (bapt)

Modified:
  head/Mk/bsd.sanity.mk

Modified: head/Mk/bsd.sanity.mk
==============================================================================
--- head/Mk/bsd.sanity.mk	Sun Dec 15 21:54:19 2013	(r336586)
+++ head/Mk/bsd.sanity.mk	Sun Dec 15 21:56:41 2013	(r336587)
@@ -145,3 +145,7 @@ DEV_WARNING+=	"USE_DOS2UNIX is deprecate
 DEV_WARNING+=	"LICENSE must not contain BSD, instead use BSD[234]CLAUSE"
 .endif
 .endif
+
+.if defined(USE_PYDISTUTILS) && ${USE_PYDISTUTILS} == "easy_install"
+DEV_WARNING+=	"USE_PYDISTUTILS=easy_install is deprecated, please use USE_PYDISTUTILS=yes"
+.endif


More information about the svn-ports-head mailing list