From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 40C2B138334 for ; Wed, 29 May 2019 18:07:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A4B59E0896; Wed, 29 May 2019 18:07:36 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8B88EE0896 for ; Wed, 29 May 2019 18:07:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8C186345229 for ; Wed, 29 May 2019 18:07:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A7A22601 for ; Wed, 29 May 2019 18:07:32 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1559153228.750248f43aba9b75dda5b53f503f7d15fd2897fb.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-shells/rc/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-shells/rc/rc-1.7.4.ebuild X-VCS-Directories: app-shells/rc/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 750248f43aba9b75dda5b53f503f7d15fd2897fb X-VCS-Branch: master Date: Wed, 29 May 2019 18:07:32 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 77822f5a-c668-4e30-9187-2af95ec0b783 X-Archives-Hash: a139c2c93cbce9cfda8c9c84e827f41e commit: 750248f43aba9b75dda5b53f503f7d15fd2897fb Author: Michael Mair-Keimberger gmail com> AuthorDate: Thu May 16 19:10:47 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed May 29 18:07:08 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=750248f4 app-shells/rc: drop old Signed-off-by: Michael Mair-Keimberger gmail.com> Signed-off-by: Andreas Sturmlechner gentoo.org> app-shells/rc/rc-1.7.4.ebuild | 42 ------------------------------------------ 1 file changed, 42 deletions(-) diff --git a/app-shells/rc/rc-1.7.4.ebuild b/app-shells/rc/rc-1.7.4.ebuild deleted file mode 100644 index 71bf031e21a..00000000000 --- a/app-shells/rc/rc-1.7.4.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -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}" - -src_configure() { - local myconf="--with-history" - use readline && myconf="--with-edit=readline" - use libedit && myconf="--with-edit=edit" - - econf \ - --disable-dependency-tracking \ - "${myconf}" -} - -src_install() { - into / - newbin rc rcsh - newman rc.1 rcsh.1 - dodoc AUTHORS ChangeLog NEWS README -} - -pkg_postinst() { - if ! grep -q '^/bin/rcsh$' "${EROOT}"/etc/shells ; then - ebegin "Updating /etc/shells" - echo "/bin/rcsh" >> "${EROOT}"/etc/shells - eend $? - fi -}