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 6482D13997D for ; Sun, 10 Nov 2019 16:35:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8FAE8E0A63; Sun, 10 Nov 2019 16:35:00 +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 72F5FE0A63 for ; Sun, 10 Nov 2019 16:35:00 +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 783E434CB49 for ; Sun, 10 Nov 2019 16:34:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3171A8AB for ; Sun, 10 Nov 2019 16:34:58 +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: <1573403673.7886d8be7430fe807be2ba9b64d50ab95e80502f.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/checkpassword/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-mail/checkpassword/checkpassword-0.90-r2.ebuild X-VCS-Directories: net-mail/checkpassword/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: 7886d8be7430fe807be2ba9b64d50ab95e80502f X-VCS-Branch: master Date: Sun, 10 Nov 2019 16:34:58 +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: 0c747501-e1dd-478c-a50d-07bf94c38ed6 X-Archives-Hash: 1db242e91fd9486fc6889e93a389f73a commit: 7886d8be7430fe807be2ba9b64d50ab95e80502f Author: Aaron Bauman gentoo org> AuthorDate: Sun Nov 10 16:34:33 2019 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Sun Nov 10 16:34:33 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7886d8be net-mail/checkpassword: drop old EAPI Signed-off-by: Aaron Bauman gentoo.org> .../checkpassword/checkpassword-0.90-r2.ebuild | 37 ---------------------- 1 file changed, 37 deletions(-) diff --git a/net-mail/checkpassword/checkpassword-0.90-r2.ebuild b/net-mail/checkpassword/checkpassword-0.90-r2.ebuild deleted file mode 100644 index 5cd7a09218f..00000000000 --- a/net-mail/checkpassword/checkpassword-0.90-r2.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -inherit eutils toolchain-funcs flag-o-matic - -DESCRIPTION="A uniform password checking interface for root applications" -HOMEPAGE="https://cr.yp.to/checkpwd.html" -SRC_URI="https://cr.yp.to/checkpwd/${P}.tar.gz" - -LICENSE="all-rights-reserved" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86" -IUSE="static" -RESTRICT="mirror bindist" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/${P}-errno.patch - epatch "${FILESDIR}"/${PV}-head-1.patch - - use static && append-ldflags -static -} - -src_compile() { - echo "$(tc-getCC) ${CFLAGS}" > conf-cc - echo "$(tc-getCC) ${LDFLAGS}" > conf-ld - make || die "Error in make" -} - -src_install() { - into / - dobin checkpassword || die - dodoc CHANGES README TODO VERSION FILES SYSDEPS TARGETS -}