Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage:master commit in: cnf/
Date: Sun, 03 May 2020 20:32:39
Message-Id: 1588537635.73acbb1a7f235f3eeda6a289684e4f43ffdd7dd6.zmedico@gentoo
1 commit: 73acbb1a7f235f3eeda6a289684e4f43ffdd7dd6
2 Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
3 AuthorDate: Sun Apr 26 21:53:49 2020 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Sun May 3 20:27:15 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=73acbb1a
7
8 make.globals: add default BINPKG_COMPRESS setting (bug 715108)
9
10 The ebuild will have a default enabled USE=zstd which changes the
11 default to zstd here.
12
13 Bug: https://bugs.gentoo.org/715108
14 Bug: https://bugs.gentoo.org/719456
15 Reviewed-by: Brian Dolbec <dolsen <AT> gentoo.org>
16 Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>
17
18 cnf/make.globals | 5 ++++-
19 1 file changed, 4 insertions(+), 1 deletion(-)
20
21 diff --git a/cnf/make.globals b/cnf/make.globals
22 index 139e1ce97..4a59dbe3c 100644
23 --- a/cnf/make.globals
24 +++ b/cnf/make.globals
25 @@ -1,4 +1,4 @@
26 -# Copyright 1999-2019 Gentoo Authors
27 +# Copyright 1999-2020 Gentoo Authors
28 # Distributed under the terms of the GNU General Public License v2
29 # System-wide defaults for the Portage system
30
31 @@ -34,6 +34,9 @@ RPMDIR="/var/cache/rpm"
32 # Temporary build directory
33 PORTAGE_TMPDIR="/var/tmp"
34
35 +# The compression used for binary packages. Defaults to zstd when USE=zstd is enabled.
36 +BINPKG_COMPRESS="bzip2"
37 +
38 # Fetching command (3 tries, passive ftp for firewall compatibility)
39 FETCHCOMMAND="wget -t 3 -T 60 --passive-ftp -O \"\${DISTDIR}/\${FILE}\" \"\${URI}\""
40 RESUMECOMMAND="wget -c -t 3 -T 60 --passive-ftp -O \"\${DISTDIR}/\${FILE}\" \"\${URI}\""