1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-22 00:35:15 +00:00

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)
This commit is contained in:
William Grzybowski 2013-12-15 21:56:41 +00:00
parent 919c3bd721
commit 88488ebd59
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=336587

View File

@ -145,3 +145,7 @@ DEV_WARNING+= "USE_DOS2UNIX is deprecated, please use USES=dos2unix"
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