Gentoo Archives: gentoo-commits

From: "Robin H. Johnson" <robbat2@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/checkpassword/
Date: Sat, 02 Nov 2019 04:44:04
Message-Id: 1572669789.6f5323b49f2e5980218b7b8663234cff6b213cf0.robbat2@gentoo
1 commit: 6f5323b49f2e5980218b7b8663234cff6b213cf0
2 Author: Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
3 AuthorDate: Thu Oct 31 20:50:52 2019 +0000
4 Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
5 CommitDate: Sat Nov 2 04:43:09 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f5323b4
7
8 net-mail/checkpassword: remove old
9
10 Signed-off-by: Rolf Eike Beer <eike <AT> sf-mail.de>
11 (cherry picked from commit 2b8b1cffbaf782c6a07b91b05a27b3105c0eb968)
12 Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>
13 Closes: https://github.com/gentoo/gentoo/pull/13332
14
15 .../checkpassword/checkpassword-0.90-r3.ebuild | 39 ----------------------
16 1 file changed, 39 deletions(-)
17
18 diff --git a/net-mail/checkpassword/checkpassword-0.90-r3.ebuild b/net-mail/checkpassword/checkpassword-0.90-r3.ebuild
19 deleted file mode 100644
20 index 75a2f74c558..00000000000
21 --- a/net-mail/checkpassword/checkpassword-0.90-r3.ebuild
22 +++ /dev/null
23 @@ -1,39 +0,0 @@
24 -# Copyright 1999-2018 Gentoo Foundation
25 -# Distributed under the terms of the GNU General Public License v2
26 -
27 -EAPI=0
28 -
29 -inherit eutils fixheadtails flag-o-matic qmail
30 -
31 -DESCRIPTION="A uniform password checking interface for root applications"
32 -HOMEPAGE="https://cr.yp.to/checkpwd.html"
33 -SRC_URI="https://cr.yp.to/checkpwd/${P}.tar.gz"
34 -
35 -LICENSE="all-rights-reserved"
36 -SLOT="0"
37 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
38 -IUSE="static"
39 -RESTRICT="mirror bindist"
40 -
41 -src_unpack() {
42 - unpack ${A}
43 - cd "${S}"
44 -
45 - epatch "${FILESDIR}"/${PV}-errno.patch
46 - epatch "${FILESDIR}"/${PV}-exit.patch
47 -
48 - ht_fix_file Makefile print-cc.sh
49 -
50 - use static && append-ldflags -static
51 -}
52 -
53 -src_compile() {
54 - qmail_set_cc
55 - make || die
56 -}
57 -
58 -src_install() {
59 - into /
60 - dobin checkpassword || die
61 - dodoc CHANGES README TODO VERSION FILES SYSDEPS TARGETS
62 -}