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 BF8FA138335 for ; Fri, 18 Oct 2019 12:19:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A80BEE0885; Fri, 18 Oct 2019 12:19:57 +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 8E5E5E0884 for ; Fri, 18 Oct 2019 12:19:57 +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 6F1F734C000 for ; Fri, 18 Oct 2019 12:19:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EDB20836 for ; Fri, 18 Oct 2019 12:19:53 +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: <1571401101.de7ba60dcf987660a593d68e44d00fcea245fcd1.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/hashalot/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/hashalot/hashalot-0.3-r2.ebuild X-VCS-Directories: app-crypt/hashalot/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: de7ba60dcf987660a593d68e44d00fcea245fcd1 X-VCS-Branch: master Date: Fri, 18 Oct 2019 12:19: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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: d068e236-47e2-44b6-b08d-e153b766c23e X-Archives-Hash: ae76bf1a322278ac9238b10a7d177b2e commit: de7ba60dcf987660a593d68e44d00fcea245fcd1 Author: David Seifert gentoo org> AuthorDate: Fri Oct 18 12:18:21 2019 +0000 Commit: David Seifert gentoo org> CommitDate: Fri Oct 18 12:18:21 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de7ba60d app-crypt/hashalot: Port to EAPI 7 Closes: https://bugs.gentoo.org/697416 Package-Manager: Portage-2.3.77, Repoman-2.3.17 Signed-off-by: David Seifert gentoo.org> app-crypt/hashalot/hashalot-0.3-r2.ebuild | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) diff --git a/app-crypt/hashalot/hashalot-0.3-r2.ebuild b/app-crypt/hashalot/hashalot-0.3-r2.ebuild index eddabd64838..092b8284421 100644 --- a/app-crypt/hashalot/hashalot-0.3-r2.ebuild +++ b/app-crypt/hashalot/hashalot-0.3-r2.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=0 +EAPI=7 DESCRIPTION="CryptoAPI utils" HOMEPAGE="http://www.kerneli.org/" @@ -10,15 +10,3 @@ SRC_URI="http://www.paranoiacs.org/~sluskyb/hacks/hashalot/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86" -IUSE="" - -DEPEND="" - -src_test() { - make check-TESTS || die -} - -src_install() { - make DESTDIR="${D}" install || die "install error" - dodoc ChangeLog NEWS README -}