diff options
author | Zac Medico <zmedico@gentoo.org> | 2020-04-26 14:53:49 -0700 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2020-05-03 13:27:15 -0700 |
commit | 73acbb1a7f235f3eeda6a289684e4f43ffdd7dd6 (patch) | |
tree | b8593de0a170c06dab4aada3d6f34b6eaa28a7b5 /cnf | |
parent | AuxdbTestCase: test eclass inheritance (diff) | |
download | portage-73acbb1a7f235f3eeda6a289684e4f43ffdd7dd6.tar.gz portage-73acbb1a7f235f3eeda6a289684e4f43ffdd7dd6.tar.bz2 portage-73acbb1a7f235f3eeda6a289684e4f43ffdd7dd6.zip |
make.globals: add default BINPKG_COMPRESS setting (bug 715108)
The ebuild will have a default enabled USE=zstd which changes the
default to zstd here.
Bug: https://bugs.gentoo.org/715108
Bug: https://bugs.gentoo.org/719456
Reviewed-by: Brian Dolbec <dolsen@gentoo.org>
Signed-off-by: Zac Medico <zmedico@gentoo.org>
Diffstat (limited to 'cnf')
-rw-r--r-- | cnf/make.globals | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/cnf/make.globals b/cnf/make.globals index 139e1ce97..4a59dbe3c 100644 --- a/cnf/make.globals +++ b/cnf/make.globals @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # System-wide defaults for the Portage system @@ -34,6 +34,9 @@ RPMDIR="/var/cache/rpm" # Temporary build directory PORTAGE_TMPDIR="/var/tmp" +# The compression used for binary packages. Defaults to zstd when USE=zstd is enabled. +BINPKG_COMPRESS="bzip2" + # Fetching command (3 tries, passive ftp for firewall compatibility) FETCHCOMMAND="wget -t 3 -T 60 --passive-ftp -O \"\${DISTDIR}/\${FILE}\" \"\${URI}\"" RESUMECOMMAND="wget -c -t 3 -T 60 --passive-ftp -O \"\${DISTDIR}/\${FILE}\" \"\${URI}\"" |