commit: 521b57a8bb320cb29ea11c33fb37b3052c34ad83
Author: Petr Vaněk <arkamar <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 26 06:30:09 2025 +0000
Commit: Petr Vaněk <arkamar <AT> gentoo <DOT> org>
CommitDate: Sat Jul 26 06:33:36 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=521b57a8
app-shells/rc: drop 1.7.4-r2
Bug 944459 was fixed together with bug 925558 in commit a4bfadcafd63
("app-shells/rc: fix build failure, port to C23 For libedit, we need to
carefully truncate size_t to int but that's number of lines, so it
should work in sane situations").
Bug: https://bugs.gentoo.org/925558
Closes: https://bugs.gentoo.org/944459
Signed-off-by: Petr Vaněk <arkamar <AT> gentoo.org>
app-shells/rc/rc-1.7.4-r2.ebuild | 43 ----------------------------------------
1 file changed, 43 deletions(-)
diff --git a/app-shells/rc/rc-1.7.4-r2.ebuild b/app-shells/rc/rc-1.7.4-r2.ebuild
deleted file mode 100644
index a38be60805e8..000000000000
--- a/app-shells/rc/rc-1.7.4-r2.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DESCRIPTION="A reimplementation of the Plan 9 shell"
-HOMEPAGE="http://static.tobold.org/"
-SRC_URI="http://static.tobold.org/${PN}/${P}.tar.gz"
-
-LICENSE="rc"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="libedit readline"
-
-RDEPEND="sys-libs/ncurses:=
- readline? ( sys-libs/readline:= )
- libedit? ( dev-libs/libedit )"
-DEPEND="${RDEPEND}"
-
-DOCS=( AUTHORS ChangeLog NEWS README )
-
-src_configure() {
- local myconf="--with-history"
- use readline && myconf="--with-edit=readline"
- use libedit && myconf="--with-edit=edit"
-
- econf "${myconf}"
-}
-
-src_install() {
- into /usr
- newbin "${PN}" "${PN}sh"
- newman "${PN}.1" "${PN}sh.1"
- einstalldocs
-}
-
-pkg_postinst() {
- if ! grep -q '^/usr/bin/rcsh$' "${EROOT}"/etc/shells ; then
- ebegin "Updating /etc/shells"
- echo "/usr/bin/rcsh" >> "${EROOT}"/etc/shells
- eend $?
- fi
-}