summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Orlitzky <mjo@gentoo.org>2017-11-17 13:48:55 -0500
committerMichael Orlitzky <mjo@gentoo.org>2017-11-17 20:11:46 -0500
commitafaef996e561f8069b8d177ea76fcde1d0bc20a6 (patch)
tree6be5f8129c0cb8744061cda3f8c0179878e4229f /profiles/base/make.defaults
parentx11-misc/albert: version bump 0.14.10 (diff)
downloadgentoo-afaef996e561f8069b8d177ea76fcde1d0bc20a6.tar.gz
gentoo-afaef996e561f8069b8d177ea76fcde1d0bc20a6.tar.bz2
gentoo-afaef996e561f8069b8d177ea76fcde1d0bc20a6.zip
profiles: add "php7-0" to PHP_TARGETS in base/make.defaults.
The old value of the PHP_TARGETS variable was "php5-6", but these days PHP_TARGETS="php5-6 php7-0" is more appropriate. The rationale for this change is now included as a comment above the variable. Closes: https://bugs.gentoo.org/636692
Diffstat (limited to 'profiles/base/make.defaults')
-rw-r--r--profiles/base/make.defaults19
1 files changed, 15 insertions, 4 deletions
diff --git a/profiles/base/make.defaults b/profiles/base/make.defaults
index ee84bc0b7f0f..e7a3077c777c 100644
--- a/profiles/base/make.defaults
+++ b/profiles/base/make.defaults
@@ -49,10 +49,6 @@ LIBREOFFICE_EXTENSIONS="presenter-console presenter-minimizer"
# By default build all koffice / calligra features.
CALLIGRA_FEATURES="kexi words flow plan sheets stage tables krita karbon braindump author"
-# Ole Markus With <olemarkus@gentoo.org> (09 Oct 2010)
-# Default PHP targets (should always be latest stable version)
-PHP_TARGETS="php5-6"
-
# Andreas K. Huettel <dilfridge@gentoo.org> (28 Sep 2010)
# Small default list of enabled plugins for collectd
COLLECTD_PLUGINS="df interface irq load memory rrdtool swap syslog"
@@ -145,3 +141,18 @@ TWISTED_DISABLE_WRITING_OF_PLUGIN_CACHE="1"
# Aaron W. Swenson <titanofold@gentoo.org> (9 Jul 2017)
# Default target(s) for postgres{,-multi}.eclass
POSTGRES_TARGETS="postgres9_5"
+
+# Michael Orlitzky <mjo@gentoo.org> (17 Nov 2017)
+#
+# Default PHP targets, used only for extensions at the moment.
+#
+# The value of this variable should be chosen to be "least annoying by
+# default." For example, some packages support only php-5.x and some
+# only php-7.x. By having both "php5-6" and php7-0" in PHP_TARGETS, we
+# ensure that users who don't care one way or the other don't have to
+# mess with this variable in order to install those packages.
+#
+# Moreover, it should only contain targets that have a stable version
+# of PHP, to avoid pulling in an unstable PHP on stable systems.
+#
+PHP_TARGETS="php5-6 php7-0"