summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2021-04-18 18:58:10 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2021-04-30 21:02:58 +0200
commitf3e16a81d1ed5cf0f9ca3d894e871f7e04fd9adb (patch)
treebc3ad111fa365498dc7d238e9e0f7512bdfb88dc
parentsys-devel/flex: Drop 2.6.1, 2.6.3, 2.6.3-r1 and 2.6.4 (r0) (diff)
downloadgentoo-f3e16a81d1ed5cf0f9ca3d894e871f7e04fd9adb.tar.gz
gentoo-f3e16a81d1ed5cf0f9ca3d894e871f7e04fd9adb.tar.bz2
gentoo-f3e16a81d1ed5cf0f9ca3d894e871f7e04fd9adb.zip
sys-fs/reiserfsprogs: Drop 3.6.25, EAPI5--
Bug: https://bugs.gentoo.org/560318 Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
-rw-r--r--sys-fs/reiserfsprogs/Manifest1
-rw-r--r--sys-fs/reiserfsprogs/reiserfsprogs-3.6.25.ebuild48
2 files changed, 0 insertions, 49 deletions
diff --git a/sys-fs/reiserfsprogs/Manifest b/sys-fs/reiserfsprogs/Manifest
index 560d7271c9f3..29d210555400 100644
--- a/sys-fs/reiserfsprogs/Manifest
+++ b/sys-fs/reiserfsprogs/Manifest
@@ -1,2 +1 @@
-DIST reiserfsprogs-3.6.25.tar.xz 448984 BLAKE2B d9f032e51f70497cf84f5877172b68e8acacf8fecb3fee7d7c3d82c98cbd5c70f870baa96471b02f092345a86bb02501bd53156cc8e7e3230660a7a6865c2421 SHA512 247ca392d227680fb24e94cd490319e77e82d00d7d357516690d2cab6f0bbe8b35879f8a25ed5046bd3a7a3e1f2b140a8a82404043aa0e7f6f60f57d069857ae
DIST reiserfsprogs-3.6.27.tar.xz 449176 BLAKE2B cd22120faa4d6d11ab545349fde5304f41cf3ca88b2c988255b7ca0e87961c9ccaa3095cad086e479a2b50627ad9bf3e90b2af46ddda64abc119e2a6755b8341 SHA512 bc524aa1ad7f8502238761fd185bfb8473048947bd579e2803c73371928c6b245e0d90bd9d458f4bebcbf163892dbc9f4bae65aec68ebbaa436be7451c13f50c
diff --git a/sys-fs/reiserfsprogs/reiserfsprogs-3.6.25.ebuild b/sys-fs/reiserfsprogs/reiserfsprogs-3.6.25.ebuild
deleted file mode 100644
index 558d74239bf3..000000000000
--- a/sys-fs/reiserfsprogs/reiserfsprogs-3.6.25.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-inherit epatch flag-o-matic usr-ldscript
-
-DESCRIPTION="Reiserfs Utilities"
-HOMEPAGE="https://www.kernel.org/pub/linux/utils/fs/reiserfs/"
-SRC_URI="https://www.kernel.org/pub/linux/utils/fs/reiserfs/${P}.tar.xz
- https://www.kernel.org/pub/linux/kernel/people/jeffm/${PN}/v${PV}/${P}.tar.xz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 -sparc x86 ~amd64-linux ~x86-linux"
-IUSE="static-libs"
-
-PATCHES=(
- "${FILESDIR}/${PN}-3.6.25-no_acl.patch"
-)
-
-src_prepare() {
- epatch "${PATCHES[@]}"
-}
-
-src_configure() {
- append-flags -std=gnu89 #427300
- local myeconfargs=(
- --bindir="${EPREFIX}/bin"
- --libdir="${EPREFIX}/$(get_libdir)"
- --sbindir="${EPREFIX}/sbin"
- $(use_enable static-libs static)
- )
- econf "${myeconfargs[@]}"
-}
-
-src_install() {
- default
- dodir /usr/$(get_libdir)
- mv "${D}"/$(get_libdir)/pkgconfig "${D}"/usr/$(get_libdir) || die
-
- if use static-libs ; then
- mv "${D}"/$(get_libdir)/*a "${D}"/usr/$(get_libdir) || die
- gen_usr_ldscript libreiserfscore.so
- else
- find "${D}" -type f \( -name "*.a" -o -name "*.la" \) -delete
- fi
-}