summaryrefslogtreecommitdiff
path: root/app-shells/rc
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-05-12 16:42:50 +0300
committerV3n3RiX <venerix@koprulu.sector>2022-05-12 16:42:50 +0300
commit752d6256e5204b958b0ef7905675a940b5e9172f (patch)
tree330d16e6362a49cbed8875a777fe641a43376cd3 /app-shells/rc
parent0c100b7dd2b30e75b799d806df4ef899fd98e1ea (diff)
gentoo resync : 12.05.2022
Diffstat (limited to 'app-shells/rc')
-rw-r--r--app-shells/rc/Manifest1
-rw-r--r--app-shells/rc/rc-1.7.4-r1.ebuild42
2 files changed, 0 insertions, 43 deletions
diff --git a/app-shells/rc/Manifest b/app-shells/rc/Manifest
index 54188ad44431..029cf1b46058 100644
--- a/app-shells/rc/Manifest
+++ b/app-shells/rc/Manifest
@@ -1,4 +1,3 @@
DIST rc-1.7.4.tar.gz 215206 BLAKE2B df01f618cd4d3c5bbf155768ada49c20fe7916e2b999ae13d08487b00c4565c3c4d1d45d16dddef70fe58cf7c405d293832b31dc8a66d8b36b2503675b260db1 SHA512 49e124207b5370b88b8fba0376dda33451451a58bfb85fabfc06ae59eb88fedf38d7aeaaf292e4f380e2c00efc8301ba68d12180923186d1c53ef94f78f7e435
-EBUILD rc-1.7.4-r1.ebuild 890 BLAKE2B 10ade84c2dd5f77a63450c4ab9be6d30344162ac32a45e97cfc84403d774d88442768b2df2af138249f7c6f25d2724b36b41e145d376fc5be973cf11f7eb716a SHA512 9b915a58614610f4326d8359772f7f536349e6844a823976b8256affbdbb4f3cc61f0d28d7a14319a1cff2c5ffebbe4fe6e08e02ddfddc0b60a5b98ac35b116b
EBUILD rc-1.7.4-r2.ebuild 918 BLAKE2B c03a0faded61c2fbdbf5863ea3115a88a9346aa370e4ff81580db7594b3ebd522cd3003907fb17853126338f16bfd1806eca6a000d631d5b5a2202acfcbb42d0 SHA512 d99c536c0a2011a79b1ec27a42dc2f7ca3391f38aaeb52d0d27b1af58d3a9674d9f2cb749fe790ca1c08f3a90002cf2b77506e5d1799cf2ccb291f1400b78253
MISC metadata.xml 168 BLAKE2B 2e0e000b4c3b6ca04c12903fdbe278415c05a822623c52e9aa95cbbf3d50bcb1246b7edbda7d2f6b559af8950c6374e6e0a69b76319964cfe686bf50b0604a57 SHA512 4dcf45d1809e8390a2d8155c8ebfe0dd610203e392aeab0ccd8a10f42cc8532a4925eff32b35e7a6c35598a4efd288229034ec0732299dbd8cfa0acff705fed3
diff --git a/app-shells/rc/rc-1.7.4-r1.ebuild b/app-shells/rc/rc-1.7.4-r1.ebuild
deleted file mode 100644
index 473941979124..000000000000
--- a/app-shells/rc/rc-1.7.4-r1.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-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="readline? ( sys-libs/readline:0 )
- 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 '^/bin/rcsh$' "${EROOT}"/etc/shells ; then
- ebegin "Updating /etc/shells"
- echo "/bin/rcsh" >> "${EROOT}"/etc/shells
- eend $?
- fi
-}