aboutsummaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorMarcus von Appen <mva@FreeBSD.org>2013-12-18 17:21:49 +0000
committerMarcus von Appen <mva@FreeBSD.org>2013-12-18 17:21:49 +0000
commitf002f3a3842577f878aaec89ee84f55d86d9e11d (patch)
tree8aafab25018237ac6f20bbea183a97e94f4b6f92 /CHANGES
parent26add8dbcb94184c8ed5a6f81eab5be338b5a83b (diff)
downloadports-f002f3a3842577f878aaec89ee84f55d86d9e11d.tar.gz
ports-f002f3a3842577f878aaec89ee84f55d86d9e11d.zip
- Remove lang/python as implicit build and run dependency from
bsd.python.mk Ports need to use a designated python interpreter, whether this is the default one chosen by the user (or provided by the system) and pulled in via USE_PYTHON[_BUILD|_RUN]=yes or an explicit version or version range pulled in via USE_PYTHON[_BUILD|_RUN]=X.Y does not matter. Ports should however not rely on 'python' at build or installation time, whenever possible to avoid problems with building packages for different python versions. This change tries to raise the barrier for misbehaving ports and eases package builds for different python versions. Tested with: exp-run (ports/184591) Reviewed by: wg@, koobs@ Supported by: wg@ With hat on: python@
Notes
Notes: svn path=/head/; revision=336850
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES22
1 files changed, 22 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index 0d75a65b4aaa..e20055f810ec 100644
--- a/CHANGES
+++ b/CHANGES
@@ -10,6 +10,28 @@ in the release notes and/or placed into UPDATING.
All ports committers are allowed to commit to this file.
+20131218:
+AUTHOR: mva@FreeBSD.org
+
+ lang/python (and as such the 'python' binary and accomplices)
+ has been removed as default dependency for the USE_PYTHON,
+ USE_PYTHON_BUILD and USE_PYTHON_RUN knobs.
+
+ Ports need to use a designated (default) python interpreter
+ to build and install and in most cases for execution in the user
+ environment. Ports that install python scripts, which are not
+ limited to a certain python version (or version range), can
+ include lang/python as build and/or run dependency.
+
+ USE_PYTHON=yes and similar knobs will only pull in the
+ default python version (e.g. lang/python27), but none
+ of the meta ports or lang/python itself.
+
+ Please use lang/python as build or run-time dependency only,
+ if there is no other way to get a port working properly, since
+ the usage of lang/python complicates package builds for different
+ python versions.
+
20131213:
AUTHOR: tijl@FreeBSD.org