Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/jwhois/
Date: Sun, 03 Jun 2018 02:59:19
Message-Id: 1527994722.a018483bf87f579cb709ecfdbfd11aa59d71e7c7.bman@gentoo
1 commit: a018483bf87f579cb709ecfdbfd11aa59d71e7c7
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 3 00:12:52 2018 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 3 02:58:42 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a018483b
7
8 net-misc/jwhois: drop old EAPI
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 net-misc/jwhois/Manifest | 1 -
13 net-misc/jwhois/jwhois-3.2.3-r1.ebuild | 37 ----------------------------------
14 net-misc/jwhois/jwhois-4.0.ebuild | 30 ---------------------------
15 3 files changed, 68 deletions(-)
16
17 diff --git a/net-misc/jwhois/Manifest b/net-misc/jwhois/Manifest
18 index 967a02798f7..436a8c411d4 100644
19 --- a/net-misc/jwhois/Manifest
20 +++ b/net-misc/jwhois/Manifest
21 @@ -1,2 +1 @@
22 -DIST jwhois-3.2.3.tar.gz 430792 BLAKE2B 9708af6ee3a63c283cbcf581cfe78c22a7b9dad01a4133c3db85c019730e937dfc95a369fd8264c19f99193f8ae842365050e7a4fa9934da76945ae3ca05673f SHA512 92ffeef5d9134800d54326c2281eb38c030acf812d2420031438e1f9171875403384ac847bb6d9670aae3e3efa8cdfe2079c822f82550dc8b0450dcb05baf60d
23 DIST jwhois-4.0.tar.gz 493007 BLAKE2B f578f2a57a95ce78829b859c3135c5ace8431b539bb3447e54633a262996a2d1d3c9802706171437acd325d99cc62773901d7473067307a322b4805d529b0292 SHA512 5d625c3f1031a8eb8ef766ef5d47a8c1a4396d1ad3344fc9449f80dd71ad84aadf21ba67f5c2f99348f732a4df998eefe699fcec4efcadf87f579b70302a44ae
24
25 diff --git a/net-misc/jwhois/jwhois-3.2.3-r1.ebuild b/net-misc/jwhois/jwhois-3.2.3-r1.ebuild
26 deleted file mode 100644
27 index 6c78a893b72..00000000000
28 --- a/net-misc/jwhois/jwhois-3.2.3-r1.ebuild
29 +++ /dev/null
30 @@ -1,37 +0,0 @@
31 -# Copyright 1999-2018 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=0
35 -
36 -inherit eutils
37 -
38 -DESCRIPTION="Advanced Internet Whois client capable of recursive queries"
39 -HOMEPAGE="https://www.gnu.org/software/jwhois/"
40 -SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
41 -
42 -LICENSE="GPL-2"
43 -SLOT="0"
44 -KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
45 -IUSE="nls"
46 -
47 -DEPEND=""
48 -
49 -src_unpack() {
50 - unpack ${A}
51 - cd "${S}"
52 - epatch "${FILESDIR}"/${P}-whois-de.patch #159776
53 -}
54 -
55 -src_compile() {
56 - econf \
57 - --localstatedir=/var/cache \
58 - --without-cache \
59 - $(use_enable nls) \
60 - || die "econf failed"
61 - emake || die
62 -}
63 -
64 -src_install() {
65 - make DESTDIR="${D}" install || die
66 - dodoc AUTHORS ChangeLog NEWS README TODO
67 -}
68
69 diff --git a/net-misc/jwhois/jwhois-4.0.ebuild b/net-misc/jwhois/jwhois-4.0.ebuild
70 deleted file mode 100644
71 index f0d604d77d7..00000000000
72 --- a/net-misc/jwhois/jwhois-4.0.ebuild
73 +++ /dev/null
74 @@ -1,30 +0,0 @@
75 -# Copyright 1999-2018 Gentoo Foundation
76 -# Distributed under the terms of the GNU General Public License v2
77 -
78 -EAPI=0
79 -
80 -DESCRIPTION="Advanced Internet Whois client capable of recursive queries"
81 -HOMEPAGE="https://www.gnu.org/software/jwhois/"
82 -SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
83 -
84 -LICENSE="GPL-3"
85 -SLOT="0"
86 -KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ~ppc ppc64 s390 sh sparc x86"
87 -IUSE="idn nls"
88 -
89 -DEPEND="idn? ( net-dns/libidn )"
90 -
91 -src_compile() {
92 - econf \
93 - --localstatedir=/var/cache \
94 - --without-cache \
95 - $(use_enable nls) \
96 - $(use_with idn libidn) \
97 - || die "econf failed"
98 - emake || die
99 -}
100 -
101 -src_install() {
102 - emake DESTDIR="${D}" install || die
103 - dodoc AUTHORS ChangeLog NEWS README TODO
104 -}