Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/libarchive/
Date: Tue, 08 Feb 2022 10:06:01
Message-Id: 1644314753.c00de9de8d1d0d2b42c98e10828eca7b049fcd39.mgorny@gentoo
1 commit: c00de9de8d1d0d2b42c98e10828eca7b049fcd39
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 8 09:59:50 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 8 10:05:53 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c00de9de
7
8 app-arch/libarchive: Bump to 3.5.3
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 app-arch/libarchive/Manifest | 1 +
13 app-arch/libarchive/libarchive-3.5.3.ebuild | 117 ++++++++++++++++++++++++++++
14 2 files changed, 118 insertions(+)
15
16 diff --git a/app-arch/libarchive/Manifest b/app-arch/libarchive/Manifest
17 index 3a03eb163b0c..21f7a499b3ec 100644
18 --- a/app-arch/libarchive/Manifest
19 +++ b/app-arch/libarchive/Manifest
20 @@ -1 +1,2 @@
21 DIST libarchive-3.5.2.tar.gz 7054934 BLAKE2B 1fc6ee0166573658dc5e0f170113c07ecdaa76b287cbf68bdee63ccd198dad615b3f2803a3fc1aed303cd1f7f32033e6d8e782ef6a8a991562cdc2a375894c9e SHA512 2003ec9b24086373451bd7317bdab86d81627f087c14a6f7df1a92e131a216749f9aa352504c3d04dc82b62078b59aeea5aad5543b7e6c1c21fcafa2955d3762
22 +DIST libarchive-3.5.3.tar.gz 7038767 BLAKE2B a9f8b44c42efadb29cba2597c201bf9064d69632db92dad07df3f1bc9667257d8578c2ae7fae65ffc53e075466e3d326e4fe77d18d3f06656a4a255324a81fba SHA512 889879e869f7391e3b85b5e3c2bbad3c1a5e50ec7b62c0be8f2817e2dfa8410e6eb409a3c4dce2675b9e7134bae3f129475e331bc3d15d637b91412c7eb026a2
23
24 diff --git a/app-arch/libarchive/libarchive-3.5.3.ebuild b/app-arch/libarchive/libarchive-3.5.3.ebuild
25 new file mode 100644
26 index 000000000000..9aad1a3f2fbb
27 --- /dev/null
28 +++ b/app-arch/libarchive/libarchive-3.5.3.ebuild
29 @@ -0,0 +1,117 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +inherit multilib-minimal toolchain-funcs
35 +
36 +DESCRIPTION="Multi-format archive and compression library"
37 +HOMEPAGE="https://www.libarchive.org/"
38 +SRC_URI="https://www.libarchive.org/downloads/${P}.tar.gz"
39 +
40 +LICENSE="BSD BSD-2 BSD-4 public-domain"
41 +SLOT="0/13"
42 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
43 +IUSE="acl blake2 +bzip2 +e2fsprogs expat +iconv lz4 +lzma lzo nettle static-libs xattr +zlib zstd"
44 +
45 +RDEPEND="
46 + acl? ( virtual/acl[${MULTILIB_USEDEP}] )
47 + blake2? ( app-crypt/libb2[${MULTILIB_USEDEP}] )
48 + bzip2? ( app-arch/bzip2[${MULTILIB_USEDEP}] )
49 + expat? ( dev-libs/expat[${MULTILIB_USEDEP}] )
50 + !expat? ( dev-libs/libxml2[${MULTILIB_USEDEP}] )
51 + iconv? ( virtual/libiconv[${MULTILIB_USEDEP}] )
52 + kernel_linux? (
53 + xattr? ( sys-apps/attr[${MULTILIB_USEDEP}] )
54 + )
55 + dev-libs/openssl:0=[${MULTILIB_USEDEP}]
56 + lz4? ( >=app-arch/lz4-0_p131:0=[${MULTILIB_USEDEP}] )
57 + lzma? ( >=app-arch/xz-utils-5.2.5-r1[${MULTILIB_USEDEP}] )
58 + lzo? ( >=dev-libs/lzo-2[${MULTILIB_USEDEP}] )
59 + nettle? ( dev-libs/nettle:0=[${MULTILIB_USEDEP}] )
60 + zlib? ( sys-libs/zlib[${MULTILIB_USEDEP}] )
61 + zstd? ( app-arch/zstd[${MULTILIB_USEDEP}] )"
62 +DEPEND="${RDEPEND}
63 + kernel_linux? (
64 + virtual/os-headers
65 + e2fsprogs? ( sys-fs/e2fsprogs )
66 + )"
67 +
68 +multilib_src_configure() {
69 + export ac_cv_header_ext2fs_ext2_fs_h=$(usex e2fsprogs) #354923
70 +
71 + local myconf=(
72 + $(use_enable acl)
73 + $(use_enable static-libs static)
74 + $(use_enable xattr)
75 + $(use_with blake2 libb2)
76 + $(use_with bzip2 bz2lib)
77 + $(use_with expat)
78 + $(use_with !expat xml2)
79 + $(use_with iconv)
80 + $(use_with lz4)
81 + $(use_with lzma)
82 + $(use_with lzo lzo2)
83 + $(use_with nettle)
84 + $(use_with zlib)
85 + $(use_with zstd)
86 +
87 + # Windows-specific
88 + --without-cng
89 + )
90 + if multilib_is_native_abi ; then
91 + myconf+=(
92 + --enable-bsdcat=$(tc-is-static-only && echo static || echo shared)
93 + --enable-bsdcpio=$(tc-is-static-only && echo static || echo shared)
94 + --enable-bsdtar=$(tc-is-static-only && echo static || echo shared)
95 + )
96 + else
97 + myconf+=(
98 + --disable-bsdcat
99 + --disable-bsdcpio
100 + --disable-bsdtar
101 + )
102 + fi
103 +
104 + ECONF_SOURCE="${S}" econf "${myconf[@]}"
105 +}
106 +
107 +multilib_src_compile() {
108 + if multilib_is_native_abi ; then
109 + emake
110 + else
111 + emake libarchive.la
112 + fi
113 +}
114 +
115 +src_test() {
116 + mkdir -p "${T}"/bin || die
117 + # tests fail when lbzip2[symlink] is used in place of ref bunzip2
118 + ln -s "${BROOT}/bin/bunzip2" "${T}"/bin || die
119 + local -x PATH=${T}/bin:${PATH}
120 + multilib-minimal_src_test
121 +}
122 +
123 +multilib_src_test() {
124 + # sandbox is breaking long symlink behavior
125 + local -x SANDBOX_ON=0
126 + local -x LD_PRELOAD=
127 + # some locales trigger different output that breaks tests
128 + local -x LC_ALL=C
129 + emake check
130 +}
131 +
132 +multilib_src_install() {
133 + if multilib_is_native_abi ; then
134 + emake DESTDIR="${D}" install
135 + else
136 + local install_targets=(
137 + install-includeHEADERS
138 + install-libLTLIBRARIES
139 + install-pkgconfigDATA
140 + )
141 + emake DESTDIR="${D}" "${install_targets[@]}"
142 + fi
143 +
144 + # Libs.private: should be used from libarchive.pc instead
145 + find "${ED}" -type f -name "*.la" -delete || die
146 +}