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 C7540158086 for ; Sat, 23 Oct 2021 15:00:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2DA06E089C; Sat, 23 Oct 2021 15:00:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 65791E0891 for ; Sat, 23 Oct 2021 15:00:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 30AC3343370 for ; Sat, 23 Oct 2021 15:00:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 70499189 for ; Sat, 23 Oct 2021 15:00:00 +0000 (UTC) From: "Jakov Smolić" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jakov Smolić" Message-ID: <1635001161.57f36ff12225e273f939efbfea1c9bd2f45d55c7.jsmolic@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/rlwrap/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/rlwrap/rlwrap-0.42.ebuild X-VCS-Directories: app-misc/rlwrap/ X-VCS-Committer: jsmolic X-VCS-Committer-Name: Jakov Smolić X-VCS-Revision: 57f36ff12225e273f939efbfea1c9bd2f45d55c7 X-VCS-Branch: master Date: Sat, 23 Oct 2021 15:00:00 +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: 8824759f-638a-48c8-b90e-0c838a21887d X-Archives-Hash: 1e6c9fef776e51c9d2befaa65d3bfb8b commit: 57f36ff12225e273f939efbfea1c9bd2f45d55c7 Author: Jakov Smolić gentoo org> AuthorDate: Sat Oct 23 14:55:51 2021 +0000 Commit: Jakov Smolić gentoo org> CommitDate: Sat Oct 23 14:59:21 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57f36ff1 app-misc/rlwrap: Drop EAPI-5 ebuild Signed-off-by: Jakov Smolić gentoo.org> app-misc/rlwrap/rlwrap-0.42.ebuild | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/app-misc/rlwrap/rlwrap-0.42.ebuild b/app-misc/rlwrap/rlwrap-0.42.ebuild deleted file mode 100644 index b6153dfe38f..00000000000 --- a/app-misc/rlwrap/rlwrap-0.42.ebuild +++ /dev/null @@ -1,26 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -DESCRIPTION="GNU readline wrapper" -HOMEPAGE="https://github.com/hanslub42/rlwrap" -SRC_URI="http://utopia.knoware.nl/~hlub/uck/rlwrap/${P}.tar.gz" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="amd64 ~mips ppc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos" -IUSE="debug" - -RDEPEND="sys-libs/readline:0=" -DEPEND="${RDEPEND}" - -src_configure() { - econf \ - $(use_enable debug) -} - -src_install() { - emake DESTDIR="${D}" install - dodoc AUTHORS BUGS ChangeLog NEWS README # PLEA TODO -}