Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/slibtool/
Date: Sat, 01 Jan 2022 09:39:00
Message-Id: 1641029905.3855825e69fae63525cb928e1a5915c809a32c5f.sam@gentoo
1 commit: 3855825e69fae63525cb928e1a5915c809a32c5f
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 1 09:32:03 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 1 09:38:25 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3855825e
7
8 sys-devel/slibtool: drop 0.5.33
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 sys-devel/slibtool/Manifest | 2 --
13 sys-devel/slibtool/slibtool-0.5.33.ebuild | 36 -------------------------------
14 2 files changed, 38 deletions(-)
15
16 diff --git a/sys-devel/slibtool/Manifest b/sys-devel/slibtool/Manifest
17 index 7d24eaf382f6..0a7b2da67762 100644
18 --- a/sys-devel/slibtool/Manifest
19 +++ b/sys-devel/slibtool/Manifest
20 @@ -1,4 +1,2 @@
21 -DIST slibtool-0.5.33.tar.xz 74100 BLAKE2B ae4901fb116c1c9463d7a817dc0c3aff2de0983b19d0ca84d5081aa4ac0f6b7a386ccf4cc3916c799ecc8d053a1b8dd71f7f8aafeae358d3931ce4ebc68932e0 SHA512 d4fd15669f8792a09f162f124ff92544efbc0e963b0ed5e8b9f3521f8da204380c6d9f175cfac818e769d5e90ae5d52eddfccdecf82880c11083997dca676ae4
22 -DIST slibtool-0.5.33.tar.xz.sig 833 BLAKE2B dec6515251e85e91727ef85e31fc370975058142c81c5abaa7a5b300a88b785878768fb56b68d9d7da2d9dc063e6c188136f6ee9566605ebf0cba834d9ea96b6 SHA512 00bc2117b1b68b94618effbb5ce24c09c0a0e6b76a8d0d4c34d0e6a13081d14521aa909a3b629a9e6680db5c3b720c61afdc90c6e7b1989debe1abb7574d9977
23 DIST slibtool-0.5.34.tar.xz 79720 BLAKE2B 3a692d7485dcf2277f7ed99fe1ad67cf5fd33d8fe0a527d64634b0e7f956a5f58b92d812396f00d872ceb8509e058ae1a026f16a65feb2e79a9fff7bd60290da SHA512 3f7f6e4f45c4c2ae5ba5533152f08269cd77ca6fa2f3a515802bc23c7ac505b2d7340098fa98962c79035129cfd4077205596309f4acd1d634b9a1d6e2c0e96c
24 DIST slibtool-0.5.34.tar.xz.sig 833 BLAKE2B 52df017d8ae3056e259a5283b0a4cea119a5ab4ce95e6c894d0d2e98fc10db101039a57c9a2a771f677c9d0afaad9273095ebdb078fca146a3d67ea25e9261fb SHA512 9f8415431a0b43e7be9a808dd6ed138a9b34b7b2c4af3ab406bdbc456ec31c877f13bc0b056ab9a50bec0b0cf1b654a133085f8523e70c8cb7d3851652d34ff7
25
26 diff --git a/sys-devel/slibtool/slibtool-0.5.33.ebuild b/sys-devel/slibtool/slibtool-0.5.33.ebuild
27 deleted file mode 100644
28 index be4f199900aa..000000000000
29 --- a/sys-devel/slibtool/slibtool-0.5.33.ebuild
30 +++ /dev/null
31 @@ -1,36 +0,0 @@
32 -# Copyright 1999-2021 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=7
36 -
37 -inherit toolchain-funcs
38 -
39 -# git.foss21.org is the official repository per upstream
40 -DESCRIPTION="A skinny libtool implementation, written in C"
41 -HOMEPAGE="https://git.foss21.org/slibtool"
42 -if [[ "${PV}" == *9999 ]] ; then
43 - inherit git-r3
44 - EGIT_REPO_URI="https://git.foss21.org/slibtool"
45 -else
46 - VERIFY_SIG_OPENPGP_KEY_PATH=${BROOT}/usr/share/openpgp-keys/midipix.asc
47 - inherit verify-sig
48 -
49 - SRC_URI="https://dl.midipix.org/slibtool/${P}.tar.xz"
50 - SRC_URI+=" verify-sig? ( https://dl.midipix.org/slibtool/${P}.tar.xz.sig )"
51 -
52 - KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x64-macos"
53 -
54 - BDEPEND="verify-sig? ( sec-keys/openpgp-keys-midipix )"
55 -fi
56 -
57 -LICENSE="MIT"
58 -SLOT="0"
59 -
60 -src_configure() {
61 - # Custom configure script (not generated by autoconf)
62 - ./configure \
63 - --compiler=$(tc-getCC) \
64 - --host=${CHOST} \
65 - --prefix="${EPREFIX}"/usr \
66 - || die
67 -}