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 260EE138359 for ; Sat, 26 Sep 2020 14:33:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 30C1DE085E; Sat, 26 Sep 2020 14:33:44 +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-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1B2A5E0848 for ; Sat, 26 Sep 2020 14:33:44 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 53E84340CB1 for ; Sat, 26 Sep 2020 14:33:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AC2AD388 for ; Sat, 26 Sep 2020 14:33:40 +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: <1601130809.41984d695640219731e8344f823b04a998bc85aa.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/shash/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/shash/shash-0.2.6-r2.ebuild X-VCS-Directories: app-crypt/shash/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: 41984d695640219731e8344f823b04a998bc85aa X-VCS-Branch: master Date: Sat, 26 Sep 2020 14:33:40 +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: e3f2419f-78c7-4769-9b8b-a80d6d499549 X-Archives-Hash: 7574e23810b67173493566cdb74c4e0e commit: 41984d695640219731e8344f823b04a998bc85aa Author: Aaron Bauman gentoo org> AuthorDate: Sat Sep 26 13:41:51 2020 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Sat Sep 26 14:33:29 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41984d69 app-crypt/shash: drop old EAPI=5 Signed-off-by: Aaron Bauman gentoo.org> app-crypt/shash/shash-0.2.6-r2.ebuild | 33 --------------------------------- 1 file changed, 33 deletions(-) diff --git a/app-crypt/shash/shash-0.2.6-r2.ebuild b/app-crypt/shash/shash-0.2.6-r2.ebuild deleted file mode 100644 index 98f92bc76d3..00000000000 --- a/app-crypt/shash/shash-0.2.6-r2.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit bash-completion-r1 eutils - -DESCRIPTION="Generate or check digests or MACs of files" -HOMEPAGE="http://mcrypt.hellug.gr/shash/" -SRC_URI="ftp://mcrypt.hellug.gr/pub/mcrypt/${PN}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos" -IUSE="static" - -DEPEND=">=app-crypt/mhash-0.8.18-r1" -RDEPEND="${DEPEND}" - -src_prepare() { - epatch "${FILESDIR}"/${PV}-manpage-fixes.patch - epatch "${FILESDIR}"/${P}-binary-files.patch -} - -src_configure() { - econf $(use_enable static static-link) -} - -src_install() { - emake install DESTDIR="${D}" - dodoc AUTHORS ChangeLog INSTALL NEWS doc/sample.shashrc doc/FORMAT - newbashcomp "${FILESDIR}"/shash.bash-completion ${PN} -}