aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2020-04-26 14:53:49 -0700
committerZac Medico <zmedico@gentoo.org>2020-05-03 13:27:15 -0700
commit73acbb1a7f235f3eeda6a289684e4f43ffdd7dd6 (patch)
treeb8593de0a170c06dab4aada3d6f34b6eaa28a7b5 /cnf/make.globals
parentAuxdbTestCase: test eclass inheritance (diff)
downloadportage-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/make.globals')
-rw-r--r--cnf/make.globals5
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}\""