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 463F3138359 for ; Sat, 26 Sep 2020 14:33:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E050EE086E; Sat, 26 Sep 2020 14:33:45 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 C8F51E086E for ; Sat, 26 Sep 2020 14:33:45 +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 AF502340E3B for ; Sat, 26 Sep 2020 14:33:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 39EEF392 for ; Sat, 26 Sep 2020 14:33:41 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1601130814.3dbe81817e23da6edbb1285dc354554a539e3c73.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/sandy/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-editors/sandy/sandy-0.4.ebuild X-VCS-Directories: app-editors/sandy/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: 3dbe81817e23da6edbb1285dc354554a539e3c73 X-VCS-Branch: master Date: Sat, 26 Sep 2020 14:33:41 +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: 6b63b3ca-ce73-45b9-9637-97652aa4378c X-Archives-Hash: 4737b9b5d185864fbef0be5bc6f9ed3f commit: 3dbe81817e23da6edbb1285dc354554a539e3c73 Author: Aaron Bauman gentoo org> AuthorDate: Sat Sep 26 14:31:43 2020 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Sat Sep 26 14:33:34 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3dbe8181 app-editors/sandy: drop old EAPI=5 Signed-off-by: Aaron Bauman gentoo.org> app-editors/sandy/sandy-0.4.ebuild | 30 ------------------------------ 1 file changed, 30 deletions(-) diff --git a/app-editors/sandy/sandy-0.4.ebuild b/app-editors/sandy/sandy-0.4.ebuild deleted file mode 100644 index d401639ce64..00000000000 --- a/app-editors/sandy/sandy-0.4.ebuild +++ /dev/null @@ -1,30 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit eutils flag-o-matic toolchain-funcs - -DESCRIPTION="an ncurses text editor with an easy-to-read, hackable C source" -HOMEPAGE="https://tools.suckless.org/sandy" -SRC_URI="https://git.suckless.org/${PN}/snapshot/${P}.tar.bz2" - -LICENSE="MIT-with-advertising" -SLOT="0" -KEYWORDS="~amd64" - -DEPEND="sys-libs/ncurses:0=" -RDEPEND="${DEPEND}" - -src_prepare() { - epatch "${FILESDIR}"/${PN}-0.4-gentoo.patch -} - -src_compile() { - tc-export CC PKG_CONFIG - append-cflags -D_DEFAULT_SOURCE - emake PREFIX=/usr ${PN} -} - -src_install() { - emake PREFIX=/usr DESTDIR="${D}" install -}