diff options
author | koobs <koobs@FreeBSD.org> | 2013-10-26 18:11:45 +0800 |
---|---|---|
committer | koobs <koobs@FreeBSD.org> | 2013-10-26 18:11:45 +0800 |
commit | 61f53bb165de5a8a74895f8cfb1541ed8e833d21 (patch) | |
tree | dcac5e68a5865d324b179152ce30e3ac256bc0fe | |
parent | 64e30d0bb0320854c1d474bb6a34c93811e20330 (diff) | |
download | freebsd-ports-gnome-61f53bb165de5a8a74895f8cfb1541ed8e833d21.tar.gz freebsd-ports-gnome-61f53bb165de5a8a74895f8cfb1541ed8e833d21.tar.zst freebsd-ports-gnome-61f53bb165de5a8a74895f8cfb1541ed8e833d21.zip |
Mk/bsd.python.mk: Clarify PYTHON_PY3K_PLIST_HACK & PYDISTUTILS_AUTOPLIST usage
Reviewed by: mva, Johannes Meixner (xmj) via IRC
-rw-r--r-- | Mk/bsd.python.mk | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Mk/bsd.python.mk b/Mk/bsd.python.mk index ff9ec71f90b3..41901be185df 100644 --- a/Mk/bsd.python.mk +++ b/Mk/bsd.python.mk @@ -131,15 +131,15 @@ Python_Include_MAINTAINER= python@FreeBSD.org # default: setup.py # # PYDISTUTILS_AUTOPLIST -# - Generate the packaging list for distutils based ports -# (including easy_install) automatically. +# - Automatically generates the packaging list for ports that use +# distutils or setuptools (easy_install) when defined. Implies +# PYTHON_PY3K_PLIST_HACK below. # # PYTHON_PY3K_PLIST_HACK -# - Automatically replaces .pyc and .pyo package list entries -# with the relevant __pycache__ entries for Python 3.x. -# This should only be used for ports, which do not use one -# of Python's default package installation mechanisms and -# which are guaranteed to work with any python version. +# - Automatically creates Python 3.x compatible __pycache__ entries +# when defined. Use this for ports that do *not* use standard +# Python packaging mechanisms such as distutils or setuptools, and +# are guaranteed to work with *both* Python 2.x and 3.x. # # PYDISTUTILS_PKGNAME # - Internal name in the distutils for egg-info. |