Gentoo Archives: gentoo-commits

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