diff options
author | Ulrich Müller <ulm@gentoo.org> | 2019-02-12 23:01:10 +0100 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2019-02-12 23:36:00 +0100 |
commit | d058d2cddc048782667c2ef995e2bc408ba783b2 (patch) | |
tree | 03a1d47449e55ffd22a4112cfb2298b200eff1db /profiles/base | |
parent | sys-devel/gdb: Move DEPEND to BDEPEND in EAPI 7 ebuilds (diff) | |
download | gentoo-d058d2cddc048782667c2ef995e2bc408ba783b2.tar.gz gentoo-d058d2cddc048782667c2ef995e2bc408ba783b2.tar.bz2 gentoo-d058d2cddc048782667c2ef995e2bc408ba783b2.zip |
profiles: Define a default for ACCEPT_LICENSE.
In its 2019-02-10 meeting, the Gentoo Council has decided that the
default for ACCEPT_LICENSE should be changed to @FREE. We take that
opportunity to move the default to make.defaults in the base profile,
for the following reasons:
- The setting depends on the @FREE license group, which itself is not
defined in Portage, but in profiles/license_groups.
- Setting the default in profiles will allow to perform the switchover
at a precise time, independent of Portage release and stabilisation
schedule.
- Profiles are a better location to define the default distro policy.
- GLEP 23 says so.
Bug: https://bugs.gentoo.org/677800
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'profiles/base')
-rw-r--r-- | profiles/base/make.defaults | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/profiles/base/make.defaults b/profiles/base/make.defaults index c260c70f6a13..4182e6eb03eb 100644 --- a/profiles/base/make.defaults +++ b/profiles/base/make.defaults @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # # System-wide defaults for the Portage system @@ -52,6 +52,9 @@ KERNEL="linux" USERLAND="GNU" INPUT_DEVICES="keyboard mouse" +# Accept any license except those in the EULA license group. +ACCEPT_LICENSE="* -@EULA" + # Tomáš Chvátal <scarabeus@gentoo.org> (23 Mar 2013) # By default enable libreoffice implementation only. OFFICE_IMPLEMENTATION="libreoffice" |