summaryrefslogtreecommitdiff
path: root/sys-fs
diff options
context:
space:
mode:
authorArthur Zamarin <arthurzam@gentoo.org>2024-07-05 16:28:38 +0300
committerArthur Zamarin <arthurzam@gentoo.org>2024-07-05 16:28:38 +0300
commit73550ee25df12c6624e7d53794e5a0188a3809e5 (patch)
tree3027a5c29ac65b60da22943dc465dc2b0f1c337a /sys-fs
parentmedia-gfx/graphviz: Stabilize 11.0.0 arm64, #935533 (diff)
downloadgentoo-73550ee25df12c6624e7d53794e5a0188a3809e5.tar.gz
gentoo-73550ee25df12c6624e7d53794e5a0188a3809e5.tar.bz2
gentoo-73550ee25df12c6624e7d53794e5a0188a3809e5.zip
sys-fs/reiser4progs: treeclean
Bug: https://bugs.gentoo.org/754924 Bug: https://bugs.gentoo.org/528106 Bug: https://bugs.gentoo.org/887119 Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'sys-fs')
-rw-r--r--sys-fs/reiser4progs/Manifest1
-rw-r--r--sys-fs/reiser4progs/files/reiser4progs-1.0.7-readline-6.3.patch16
-rw-r--r--sys-fs/reiser4progs/metadata.xml8
-rw-r--r--sys-fs/reiser4progs/reiser4progs-2.0.5.ebuild54
4 files changed, 0 insertions, 79 deletions
diff --git a/sys-fs/reiser4progs/Manifest b/sys-fs/reiser4progs/Manifest
deleted file mode 100644
index e0c527b6cabe..000000000000
--- a/sys-fs/reiser4progs/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST reiser4progs-2.0.5.tar.gz 997516 BLAKE2B 38799bd2161ac3ad631b3f11f4f01f647fa8210786fa4aeb290a84dac95080cdf979be1cb4526abf08567e88f25aad54a3d776be85900e702a7325e674ddd0e1 SHA512 1e1f263828bd5f44837bcbdde072a94b2cc5a099dbf52d3e0f7f6851812fb2e8b77a3edcf5448f678304e23240c63919547a9671d36b816f97f989b17b494d27
diff --git a/sys-fs/reiser4progs/files/reiser4progs-1.0.7-readline-6.3.patch b/sys-fs/reiser4progs/files/reiser4progs-1.0.7-readline-6.3.patch
deleted file mode 100644
index 9de53bd41203..000000000000
--- a/sys-fs/reiser4progs/files/reiser4progs-1.0.7-readline-6.3.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-https://bugs.gentoo.org/504472
-
-fix building w/readline-6.3 -- the old CPPFunction define has been deleted
-
---- a/libmisc/ui.c
-+++ b/libmisc/ui.c
-@@ -256,8 +256,7 @@ static void _init(void) {
-
- #if defined(HAVE_LIBREADLINE) && defined(HAVE_READLINE_READLINE_H)
- rl_initialize();
-- rl_attempted_completion_function =
-- (CPPFunction *)misc_complete;
-+ rl_attempted_completion_function = misc_complete;
- #endif
-
- aal_exception_set_handler(misc_exception_handler);
diff --git a/sys-fs/reiser4progs/metadata.xml b/sys-fs/reiser4progs/metadata.xml
deleted file mode 100644
index b350297aa2ec..000000000000
--- a/sys-fs/reiser4progs/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<!-- maintainer-needed -->
-<upstream>
- <remote-id type="sourceforge">reiser4</remote-id>
-</upstream>
-</pkgmetadata>
diff --git a/sys-fs/reiser4progs/reiser4progs-2.0.5.ebuild b/sys-fs/reiser4progs/reiser4progs-2.0.5.ebuild
deleted file mode 100644
index daa7aabd0454..000000000000
--- a/sys-fs/reiser4progs/reiser4progs-2.0.5.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit multilib toolchain-funcs usr-ldscript
-
-DESCRIPTION="reiser4progs: mkfs, fsck, etc..."
-HOMEPAGE="https://sourceforge.net/projects/reiser4/"
-SRC_URI="https://downloads.sourceforge.net/reiser4/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~loong ppc ppc64 -sparc x86"
-IUSE="debug readline static static-libs"
-
-LIB_DEPEND=">=sys-libs/libaal-1.0.7:=[static-libs(+)]
- readline? ( sys-libs/readline:0=[static-libs(+)] )"
-RDEPEND="!static? ( ${LIB_DEPEND//\[static-libs(+)]} )
- static-libs? ( >=sys-libs/libaal-1.0.7:=[static-libs(+)] )"
-DEPEND="${RDEPEND}
- static? ( ${LIB_DEPEND} )"
-
-PATCHES=( "${FILESDIR}"/${PN}-1.0.7-readline-6.3.patch )
-
-src_prepare() {
- printf '#!/bin/sh\ntrue\n' > run-ldconfig
- # Delete hardcoded link/compile flags.
- sed -i -r \
- -e '/CFLAGS=/s: -static":":' \
- -e '/CFLAGS/s: (-O[123s]|-g)\>::g' \
- configure || die
-
- default
-}
-
-src_configure() {
- local myeconfargs=(
- $(use_enable static full-static)
- $(use_enable static-libs static)
- $(use_enable debug)
- $(use_with readline)
- --disable-Werror
- --enable-libminimal
- --sbindir=/sbin
- )
- econf "${myeconfargs[@]}"
-}
-
-src_install() {
- default
- gen_usr_ldscript -a reiser4{,-minimal} repair
- find "${ED}" -type f -name "*.la" -delete || die
-}