Gentoo Archives: gentoo-portage-dev

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

Replies