diff options
author | Maciej Barć <xgqt@gentoo.org> | 2022-10-26 01:00:05 +0200 |
---|---|---|
committer | Maciej Barć <xgqt@gentoo.org> | 2022-10-26 01:01:58 +0200 |
commit | 6867f38146b320d92c8e58d8d93bddc6ebc1d6e9 (patch) | |
tree | be07f380ad8e2c4a02c9995a00d50110c247d883 /app-arch/bzip3 | |
parent | app-arch/bzip3: bump to 1.1.8 (diff) | |
download | gentoo-6867f38146b320d92c8e58d8d93bddc6ebc1d6e9.tar.gz gentoo-6867f38146b320d92c8e58d8d93bddc6ebc1d6e9.tar.bz2 gentoo-6867f38146b320d92c8e58d8d93bddc6ebc1d6e9.zip |
app-arch/bzip3: drop old 1.1.7
Bug: https://github.com/kspalaiologos/bzip3/issues/60
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'app-arch/bzip3')
-rw-r--r-- | app-arch/bzip3/Manifest | 1 | ||||
-rw-r--r-- | app-arch/bzip3/bzip3-1.1.7.ebuild | 32 |
2 files changed, 0 insertions, 33 deletions
diff --git a/app-arch/bzip3/Manifest b/app-arch/bzip3/Manifest index 2fe50b460477..d5c786793fc9 100644 --- a/app-arch/bzip3/Manifest +++ b/app-arch/bzip3/Manifest @@ -1,4 +1,3 @@ DIST bzip3-1.1.5.tar.xz 265340 BLAKE2B 0226a97d564f1c9d9d1089b43ae79a9e43d0b77628298ef953c45505ad8d62caaf17bf6fa357857f123cf072b8ccd3003bfe138f25284baa5a5a5cdd8a555f71 SHA512 589c2e8e675a61014c7c4e82d0f2067201e3fb97bf7cfa6b7aa23690dc739824226089ac710509cc085b22eeb671ed5e23c6493967a433d3b284cb638af71be8 DIST bzip3-1.1.6.tar.xz 265708 BLAKE2B 9429dcb3e9deef8aafdf890215ba95669dbcb135d6d2896f18cc70b482bab321497d3a26f36be59700ad0da879578b7c906f20629c72642aa15fc3b1507a788a SHA512 19120d3a850495a5bcc43b124e4a8eddf41bac55119d0898bf1e7c5b744f4bcc84c41b9018615f577fe3bfdceab8dd2ab6f2722cb9fbf86bf1c0a2da9ca32916 -DIST bzip3-1.1.7.tar.xz 266436 BLAKE2B 46ca29e0632fbf12fc61c4d9e7c55d2f571a4e882c17f4535e54b7448bb01bd120e0ee518f2c0aa4dc97dd878fe772d5a63562469a77984b2aec5e5c875ccbdc SHA512 3e92a7cb70850fead28df7209185c5c468308acc3d8a75af2906fe85fd81efedc856ad151876f64a01fc3b7f5f9a724838d32c9ef19fc7182e8b3b632901a6ba DIST bzip3-1.1.8.tar.xz 269668 BLAKE2B fe85ba2ecca8e2433501c13e57856720da731b6c959340a68dd4654a516c12e034a90ff6cd6aed55dd2160c3860fdc3e60cddd47ffd00737a657a2e6c73704af SHA512 36141a48f0d5b35de4b06117ceca3c5d5cdc3df6be187856f1436751984b0154942e0eece531ee7b191cc0cd7056960de6a1ca3ec0fc2bcc7ff1d50444cd1e3e diff --git a/app-arch/bzip3/bzip3-1.1.7.ebuild b/app-arch/bzip3/bzip3-1.1.7.ebuild deleted file mode 100644 index 0d9329da48ca..000000000000 --- a/app-arch/bzip3/bzip3-1.1.7.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit toolchain-funcs - -DESCRIPTION="A better and stronger spiritual successor to BZip2" -HOMEPAGE="https://github.com/kspalaiologos/bzip3" - -if [[ ${PV} == *9999* ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/kspalaiologos/${PN}.git" -else - SRC_URI="https://github.com/kspalaiologos/${PN}/releases/download/${PV}/${P}.tar.xz" - KEYWORDS="~amd64 ~arm64 ~loong ~x86" -fi - -LICENSE="LGPL-3+" -SLOT="0" - -src_configure() { - # ./configure script will default to Clang if it is found on the system, - # force the use of CC selected by the user with CC=$(tc-getCC) - econf CC=$(tc-getCC) -} - -src_install() { - default - - find "${ED}" -type f -name '*.la' -delete || die -} |