Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libthreadar/
Date: Mon, 31 May 2021 08:20:13
Message-Id: 1622448984.3475f79ae1f7a995e48f0f1335e5a239bae012d9.sam@gentoo
1 commit: 3475f79ae1f7a995e48f0f1335e5a239bae012d9
2 Author: Viorel Munteanu <ceamac.paragon <AT> gmail <DOT> com>
3 AuthorDate: Tue May 25 03:34:59 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Mon May 31 08:16:24 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3475f79a
7
8 dev-libs/libthreadar: drop 1.3.1
9
10 Redundant; also, 1.3.2 is stable
11
12 Bug: https://bugs.gentoo.org/791385
13 Package-Manager: Portage-3.0.18, Repoman-3.0.2
14 Signed-off-by: Viorel Munteanu <ceamac.paragon <AT> gmail.com>
15 Closes: https://github.com/gentoo/gentoo/pull/20976
16 Signed-off-by: Sam James <sam <AT> gentoo.org>
17
18 dev-libs/libthreadar/Manifest | 1 -
19 dev-libs/libthreadar/libthreadar-1.3.1.ebuild | 35 ---------------------------
20 2 files changed, 36 deletions(-)
21
22 diff --git a/dev-libs/libthreadar/Manifest b/dev-libs/libthreadar/Manifest
23 index 31be7e76347..7317ba6194d 100644
24 --- a/dev-libs/libthreadar/Manifest
25 +++ b/dev-libs/libthreadar/Manifest
26 @@ -1,2 +1 @@
27 -DIST libthreadar-1.3.1.tar.gz 441062 BLAKE2B 48ab120290f93c5585c1d1d9992f80836a27bf88bf250c74bff12cad7f87dd192a706ef75fe5b8815ceb2108c20d71dd932432bf37bf6ee3f01af4c3bf935647 SHA512 6eefe4d2262a170ed04e6e9e7efaae2945b68012cfed2e4606f0d6089050f3e4059d4dca2141ae862c158f5161c5ebaaa35c3eeb431fab10263787e5b74deddf
28 DIST libthreadar-1.3.2.tar.gz 442260 BLAKE2B 2a743fbcd8ae0b462910b7ccde34a3fcb90239df9bf608c9d249dd9bf100315ade3b2151339ae55b1121709446c23044c3fd7bb420efb009ae8d5fe0a21a496a SHA512 6edc3a1a6eb41a3b9ada35327d712fcf3562875dbddd0bd2f3f016492cb0f10fe669ed1ac3a65573d88261b4de50201b2abe8dcbffa0abc5cc257d7a8c3c4df2
29
30 diff --git a/dev-libs/libthreadar/libthreadar-1.3.1.ebuild b/dev-libs/libthreadar/libthreadar-1.3.1.ebuild
31 deleted file mode 100644
32 index 7ba08a0fde3..00000000000
33 --- a/dev-libs/libthreadar/libthreadar-1.3.1.ebuild
34 +++ /dev/null
35 @@ -1,35 +0,0 @@
36 -# Copyright 2021 Gentoo Authors
37 -# Distributed under the terms of the GNU General Public License v2
38 -
39 -EAPI=7
40 -
41 -DESCRIPTION="Threading library used by dar archiver"
42 -HOMEPAGE="https://sourceforge.net/projects/libthreadar/"
43 -SRC_URI="mirror://sourceforge/libthreadar/${P}.tar.gz"
44 -
45 -LICENSE="LGPL-3"
46 -SLOT="0"
47 -KEYWORDS="~amd64 ~ppc ~sparc ~x86"
48 -
49 -DOCS=( AUTHORS ChangeLog NEWS README THANKS )
50 -
51 -src_configure() {
52 - # Copy this comment from app-backup/dar as it applies here too
53 - #
54 - # configure.ac is totally funked up regarding the AC_ARG_ENABLE
55 - # logic.
56 - # For example "--enable-dar-static" causes configure to DISABLE
57 - # static builds of dar.
58 - # Do _not_ use $(use_enable) until you have verified that the
59 - # logic has been fixed by upstream.
60 -
61 - econf --disable-static
62 -}
63 -
64 -src_install() {
65 - emake DESTDIR="${D}" pkgdatadir="${EPREFIX}"/usr/share/doc/${PF}/html install
66 -
67 - einstalldocs
68 -
69 - find "${ED}" -name '*.la' -delete || die
70 -}