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 67CE9138331 for ; Sat, 26 May 2018 18:16:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7E0ABE0950; Sat, 26 May 2018 18:16:56 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 56246E0950 for ; Sat, 26 May 2018 18:16:56 +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 C75DE335C79 for ; Sat, 26 May 2018 18:16:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2F6DB292 for ; Sat, 26 May 2018 18:16:53 +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: <1527358590.02a9ed788665e91ca7c1f29b79010601ffd1f036.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/screenie/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/screenie/screenie-1.30.0-r1.ebuild X-VCS-Directories: app-misc/screenie/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: 02a9ed788665e91ca7c1f29b79010601ffd1f036 X-VCS-Branch: master Date: Sat, 26 May 2018 18:16:53 +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-Archives-Salt: d7c1c92e-4332-4f02-89bd-086a35ab3d83 X-Archives-Hash: c2545ca71491c8794965304a3a34d978 commit: 02a9ed788665e91ca7c1f29b79010601ffd1f036 Author: Aaron Bauman gentoo org> AuthorDate: Sat May 26 15:56:18 2018 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Sat May 26 18:16:30 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02a9ed78 app-misc/screenie: bump EAPI and drop eutils Package-Manager: Portage-2.3.40, Repoman-2.3.9 Closes: https://github.com/gentoo/gentoo/pull/8599 app-misc/screenie/screenie-1.30.0-r1.ebuild | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/app-misc/screenie/screenie-1.30.0-r1.ebuild b/app-misc/screenie/screenie-1.30.0-r1.ebuild index 248b1f0c3a4..24d0adb2af8 100644 --- a/app-misc/screenie/screenie-1.30.0-r1.ebuild +++ b/app-misc/screenie/screenie-1.30.0-r1.ebuild @@ -1,9 +1,7 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI="2" - -inherit eutils +EAPI=6 DESCRIPTION="screen(1) frontend that is designed to be a session handler" HOMEPAGE="http://pubwww.hsz-t.ch/~mgloor/screenie.html" @@ -16,11 +14,9 @@ IUSE="" RDEPEND="app-misc/screen" -src_prepare() { - epatch "${FILESDIR}/${PN}-CVE-2008-5371.patch" -} +PATCHES=( "${FILESDIR}/${PN}-CVE-2008-5371.patch" ) src_install() { dobin screenie || die "dobin failed" - dodoc AUTHORS ChangeLog INSTALL README TODO || die "dodoc failed" + default }