Gentoo Archives: gentoo-dev

From: Matt Turner <mattst88@g.o>
To: gentoo-dev@l.g.o
Cc: Matt Turner <mattst88@g.o>
Subject: [gentoo-dev] [PATCH] profiles/default/linux: Add USE="bzip2 lzma zstd" to defaults
Date: Thu, 08 Jul 2021 05:01:39
Message-Id: 20210708050131.673511-1-mattst88@gentoo.org
1 Enable these flags by default, since they effectively add no additional
2 dependencies:
3
4 USE=bzip2 only ever adds a dependency on:
5 app-arch/bzip2 - part of @system
6 dev-ml/camlbz2 - to dev-ml/dose3's RDEPEND
7 USE=lzma only ever adds a dependency on:
8 app-arch/xz-utils - part of @system
9 virtual/pkgconfig - to sys-apps/kmod's BDEPEND
10 USE=zstd only ever adds a dependency on:
11 app-arch/zstd - an unconditional RDEPEND of sys-apps/portage
12 virtual/pkgconfig - to kde-frameworks/karchive's BDEPEND
13
14 Signed-off-by: Matt Turner <mattst88@g.o>
15 ---
16 profiles/default/linux/make.defaults | 2 +-
17 1 file changed, 1 insertion(+), 1 deletion(-)
18
19 diff --git a/profiles/default/linux/make.defaults b/profiles/default/linux/make.defaults
20 index 168f895eaf7..cbc5092cb2b 100644
21 --- a/profiles/default/linux/make.defaults
22 +++ b/profiles/default/linux/make.defaults
23 @@ -11,7 +11,7 @@
24
25
26 # Default starting set of USE flags for all default/linux profiles.
27 -USE="crypt ipv6 ncurses nls pam readline ssl tcpd zlib"
28 +USE="bzip2 crypt ipv6 lzma ncurses nls pam readline ssl tcpd zlib zstd"
29
30 # make sure toolchain has sane defaults <toolchain@g.o>
31 USE="${USE} fortran openmp"
32 --
33 2.31.1

Replies