dev-build/slibtool: drop 0.6.1

Signed-off-by: orbea <orbea@riseup.net>
Part-of: https://github.com/gentoo/gentoo/pull/42636
Closes: https://github.com/gentoo/gentoo/pull/42636
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
orbea
2025-06-16 20:02:19 -07:00
committed by Sam James
parent e4efacbacb
commit 702ed83427
2 changed files with 0 additions and 43 deletions

View File

@@ -1,5 +1,3 @@
DIST slibtool-0.6.1.tar.xz 129584 BLAKE2B 99c90f580a45d450c9c213519c761dbdca1dcac916cc85782e71f7214584c1232f8d183f8ebb8afe91e39b5244a9bf7386eb93082044297c07320dbca3ec5f11 SHA512 71c36243c3a8c3dc63304b07a64ba8c948b8ec463783a63426c74ea6a51702ddd9a52c2397948300db4ddaa0851ef8c7cca3cef6b4d185d2cbc47a45212bcfe8
DIST slibtool-0.6.1.tar.xz.sig 833 BLAKE2B 135a34d295b2b8ceef3e41edfa0901b99026a503c025859d1364108bb8e12fe378d24bc77ae5c85f831c69c69cf005f1ea880e27d53538fc7cd5dd13641ba526 SHA512 82318cdfd15c8f103255b086921902ff3fcf01e4273fffeddf0515292644f0b677d4580be9810ffce85447b7a069a4c936e4bc42b346bd56f2bd755b38355ea6
DIST slibtool-0.7.0.tar.xz 129996 BLAKE2B b3f0c6cd188b4824b63cf8a0636f7ae514f09a342601d46571527a81f0681d9d657aac702a0d773ed532011227de513d9cd26e312551784203dad913b46d1f04 SHA512 5c5ca11ab5a60df5adb33037c0b2835c965ebc0c3589ac5f4c2e61aebd8aa51d7609125263d3e665c14a916dedad4340816e4c3d70d55090dbb9941d1c2d8522
DIST slibtool-0.7.0.tar.xz.sig 833 BLAKE2B 2985b8acb6871fb90d62759ba91fe0e5f7211af0203bb3580a23f015381779242ba3a490e0fb8004500bfcdb0f7669cf2be4df83451ed1b01d168a68f42a3f1e SHA512 91431527b7378d9792f9e4173fad3f8fbfcec25d0f81fac631f80bc8ff51524ce27d2599ca48a8a0f807fb9beedc9462511a36599ab0fbbb649431ebe4e42192
DIST slibtool-0.7.1.tar.xz 131700 BLAKE2B 9483f82feb0eb77346d88945fea3eee29f268ff78d4f1dd7e58f35c10d5f63fc8020fdec2c9bb25f3dbefe390aeecce0227dbaa386942694c4cd0f30971e8262 SHA512 78669f288306a2bf39933b0618d0ec76ec7cbfaf32ac3a06018b6036131f0ccba4af049e1292d2fa7aff946409fbdd76ff8a6e19091431e410c8554e52855afe

View File

@@ -1,41 +0,0 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit toolchain-funcs
# git.foss21.org is the official repository per upstream
DESCRIPTION="A strong libtool implementation, written in C"
HOMEPAGE="https://git.foss21.org/slibtool"
if [[ "${PV}" == *9999 ]] ; then
inherit git-r3
EGIT_REPO_URI="https://git.foss21.org/slibtool"
else
VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/midipix.asc
inherit verify-sig
SRC_URI="https://dl.foss21.org/slibtool/${P}.tar.xz"
SRC_URI+=" verify-sig? ( https://dl.foss21.org/slibtool/${P}.tar.xz.sig )"
KEYWORDS="~alpha amd64 arm arm64 hppa ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos"
fi
BDEPEND="sys-devel/m4"
if [[ ${PV} != *9999 ]] ; then
BDEPEND+=" verify-sig? ( >=sec-keys/openpgp-keys-midipix-20240315 )"
fi
LICENSE="MIT"
SLOT="0"
src_configure() {
# Custom configure script (not generated by autoconf)
./configure \
--compiler="$(tc-getCC)" \
--host=${CHOST} \
--prefix="${EPREFIX}"/usr \
--libdir="${EPREFIX}/usr/$(get_libdir)" \
|| die
}