summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaciej Barć <xgqt@gentoo.org>2023-09-16 14:50:50 +0200
committerMaciej Barć <xgqt@gentoo.org>2023-09-16 16:47:34 +0200
commitda93f7b9af693d21c7b880775509c0427673e3de (patch)
tree05e9456752a60e597f1688b90b03739d8c86fcc0 /app-arch
parentapp-emulation/uxn: drop old 0_p20230609 (diff)
downloadgentoo-da93f7b9af693d21c7b880775509c0427673e3de.tar.gz
gentoo-da93f7b9af693d21c7b880775509c0427673e3de.tar.bz2
gentoo-da93f7b9af693d21c7b880775509c0427673e3de.zip
app-arch/bzip3: drop old 1.3.1
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'app-arch')
-rw-r--r--app-arch/bzip3/Manifest1
-rw-r--r--app-arch/bzip3/bzip3-1.3.1.ebuild32
2 files changed, 0 insertions, 33 deletions
diff --git a/app-arch/bzip3/Manifest b/app-arch/bzip3/Manifest
index ab96b9457091..7552adae5f7d 100644
--- a/app-arch/bzip3/Manifest
+++ b/app-arch/bzip3/Manifest
@@ -1,2 +1 @@
-DIST bzip3-1.3.1.tar.xz 277248 BLAKE2B 37044fae19a2743d2e5bd48c65f034578ccd30c316d9c19c0c8786f1248babe1dcb942cc18d3a65e0756210b551af8c7a15a1675d98dbd77d4832beff0598a9a SHA512 41616eaa53422eb5bb8780db731ecd0371599e688622810be5d1fac04aa489d212db3273a5f0d15702507c8c92b36e9a4006c52bc67da7ac6ce41c73ff412e51
DIST bzip3-1.3.2.tar.xz 277768 BLAKE2B 6ee7e5d7f1ab11c19664937fc631e51f5707b6893441bdd6e1beb52e9e2e46255e31c782f61939eba3f966f2be74b422a89f5fcd9d3f42caea07784f2f858efd SHA512 76521377adfe737b30e77f5c3241c1c12214165492fba5acbc5ba09c8e7b91396b772f9fec936d6603413c3ef179a13597b13509df99bd8a2d56cbf14a70a84f
diff --git a/app-arch/bzip3/bzip3-1.3.1.ebuild b/app-arch/bzip3/bzip3-1.3.1.ebuild
deleted file mode 100644
index 5a859349b58a..000000000000
--- a/app-arch/bzip3/bzip3-1.3.1.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2023 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
-}