Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libecap/
Date: Sat, 27 Feb 2021 02:25:16
Message-Id: 1614392699.c1aed01a000f5fae10b98f4cb6020a7d4f4ed877.sam@gentoo
1 commit: c1aed01a000f5fae10b98f4cb6020a7d4f4ed877
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 27 02:20:40 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 27 02:24:59 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1aed01a
7
8 net-libs/libecap: bump to 1.0.1
9
10 Closes: https://bugs.gentoo.org/731242
11 Closes: https://bugs.gentoo.org/724912
12 Package-Manager: Portage-3.0.15, Repoman-3.0.2
13 Signed-off-by: Sam James <sam <AT> gentoo.org>
14
15 net-libs/libecap/Manifest | 1 +
16 net-libs/libecap/libecap-1.0.1.ebuild | 35 +++++++++++++++++++++++++++++++++++
17 2 files changed, 36 insertions(+)
18
19 diff --git a/net-libs/libecap/Manifest b/net-libs/libecap/Manifest
20 index 24b4e78f22a..d370ec5dbb8 100644
21 --- a/net-libs/libecap/Manifest
22 +++ b/net-libs/libecap/Manifest
23 @@ -1 +1,2 @@
24 DIST libecap-1.0.0.tar.gz 343468 BLAKE2B 5a5a12365289daaee8b324016f42b6b56f5bf5b1f7893ae052517c8c20a792a798ebb31f4038c121b1c6eefd9d375562014050572e0285e3a9b91bbfb9989fa8 SHA512 7d34b5a9b6843d6b09efc4fa390c7a2d3dda7a2ae5e82d5021295e436ca9afb7c1f70bc6f25a68e4c430fb6e33ee9f602655c9c830fccd46a8f554774813b452
25 +DIST libecap-1.0.1.tar.gz 339799 BLAKE2B 6971391d0bde588f6bfb11704d343494eaf81fd1ac5e9c8c6d9f32ae0b03ed41aaf03c41cab1365ffefa8e032b65f72417af395c26d89af69c30d327252246b7 SHA512 0054ad11b3f558d7c623060a69207a1b8e679803cabdf1a2bce4b04335d71c016eec770fc9d2cbf3d0a93502c255cb528305f9f8e6df4e095fcb980667045919
26
27 diff --git a/net-libs/libecap/libecap-1.0.1.ebuild b/net-libs/libecap/libecap-1.0.1.ebuild
28 new file mode 100644
29 index 00000000000..24efca086b5
30 --- /dev/null
31 +++ b/net-libs/libecap/libecap-1.0.1.ebuild
32 @@ -0,0 +1,35 @@
33 +# Copyright 1999-2021 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +inherit autotools toolchain-funcs
39 +
40 +DESCRIPTION="API for implementing ICAP content analysis and adaptation"
41 +HOMEPAGE="https://www.e-cap.org/"
42 +SRC_URI="https://www.e-cap.org/archive/${P}.tar.gz"
43 +
44 +LICENSE="BSD-2"
45 +SLOT="1"
46 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
47 +
48 +RDEPEND="!net-libs/libecap:0
49 + !net-libs/libecap:0.2"
50 +
51 +DOCS=( CREDITS NOTICE README change.log )
52 +
53 +src_prepare() {
54 + default
55 + eautoreconf
56 +}
57 +
58 +src_configure() {
59 + # Horrific autotools failure in generated config.h w/o Bash
60 + ac_cv_path_AR="$(tc-getAR)" CONFIG_SHELL="${EPREFIX}/bin/bash" econf --disable-static
61 +}
62 +
63 +src_install() {
64 + default
65 +
66 + find "${ED}" -name '*.la' -delete || die
67 +}