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 90C5213835A for ; Sat, 14 Nov 2020 15:06:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 786F1E075F; Sat, 14 Nov 2020 15:06:19 +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 618CAE075F for ; Sat, 14 Nov 2020 15:06:19 +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 243E8340E1B for ; Sat, 14 Nov 2020 15:06:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2FDC3453 for ; Sat, 14 Nov 2020 15:06:15 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1605366254.e4f5987edd6495cb5acdcabd518873f27dd30996.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/fastjar/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-arch/fastjar/fastjar-0.98-r3.ebuild X-VCS-Directories: app-arch/fastjar/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: e4f5987edd6495cb5acdcabd518873f27dd30996 X-VCS-Branch: master Date: Sat, 14 Nov 2020 15:06:15 +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: d385a0ec-2f4a-4c38-9ebd-cd67deb81b31 X-Archives-Hash: 73429879ec30451e0dc9a3dcfb7efe79 commit: e4f5987edd6495cb5acdcabd518873f27dd30996 Author: David Seifert gentoo org> AuthorDate: Sat Nov 14 15:04:14 2020 +0000 Commit: David Seifert gentoo org> CommitDate: Sat Nov 14 15:04:14 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4f5987e app-arch/fastjar: Port to EAPI 7 Package-Manager: Portage-3.0.9, Repoman-3.0.2 Signed-off-by: David Seifert gentoo.org> app-arch/fastjar/fastjar-0.98-r3.ebuild | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/app-arch/fastjar/fastjar-0.98-r3.ebuild b/app-arch/fastjar/fastjar-0.98-r3.ebuild index c33c9d06c5b..791e3081736 100644 --- a/app-arch/fastjar/fastjar-0.98-r3.ebuild +++ b/app-arch/fastjar/fastjar-0.98-r3.ebuild @@ -1,9 +1,7 @@ # Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 - -inherit eutils +EAPI=7 DESCRIPTION="A jar program written in C" HOMEPAGE="https://savannah.nongnu.org/projects/fastjar" @@ -13,12 +11,12 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 ~arm64 ppc ppc64 x86 ~amd64-linux ~x86-linux ~x86-macos ~sparc-solaris" -IUSE="" - -# bug #188542 -RDEPEND="!<=dev-java/kaffe-1.1.7-r5" +DEPEND="sys-libs/zlib" +RDEPEND=" + ${DEPEND} + !<=dev-java/kaffe-1.1.7-r5" # bug 188542 -src_prepare() { - # bug #325557 - epatch "${FILESDIR}/0.98-traversal.patch" -} +PATCHES=( + # bug 325557 + "${FILESDIR}"/0.98-traversal.patch +)