Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/whois/
Date: Mon, 29 Jul 2019 11:06:52
Message-Id: 1564398397.10ed7ee6b7842d7e3be693419c5c51cf5538ab8b.polynomial-c@gentoo
1 commit: 10ed7ee6b7842d7e3be693419c5c51cf5538ab8b
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jul 29 11:06:37 2019 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Mon Jul 29 11:06:37 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10ed7ee6
7
8 net-misc/whois: Removed old.
9
10 Package-Manager: Portage-2.3.69, Repoman-2.3.16
11 Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
12
13 net-misc/whois/Manifest | 1 -
14 net-misc/whois/whois-5.3.2.ebuild | 65 ---------------------------------------
15 2 files changed, 66 deletions(-)
16
17 diff --git a/net-misc/whois/Manifest b/net-misc/whois/Manifest
18 index 5a576acf2f2..da52345564e 100644
19 --- a/net-misc/whois/Manifest
20 +++ b/net-misc/whois/Manifest
21 @@ -1,3 +1,2 @@
22 -DIST whois_5.3.2.tar.xz 82984 BLAKE2B 2e2d9ebf2e93831a1fa3e98a2f8922e531592b95175c9280358a37160a9033ee805baa6519304350399c112e619e293a2746df527ef5c580afbdde1542cbef06 SHA512 27d9576ee7b701778cac0dd7d4df2c4ae2d152fa5dfb3f84d7d5d592314e45872b2f3d6eca0754923ec3a0741e5365bf2238b2c0b366403c35e8a5b046e59434
23 DIST whois_5.4.3.tar.xz 83904 BLAKE2B 19b78ca984c86ad711c317ca6090003ae354eee2b39f353081e99f44396e254b3cb75d38c8f6df9fe88283c5036e9e02f38c74401de8245dbd4f5dae3a6e1a0a SHA512 762feec983d29696796bea87fb47c5bd7357ca96d701b2e30cccb186c248225c45b451289ab45936d7e3eed5c0ff4e8fa249255ceb061a4e1ba1f6cd8fcdf084
24 DIST whois_5.5.0.tar.xz 85600 BLAKE2B 37c90324e1b7c773793e1eaff70816f90a6429ab91bafcff36dfa02ea09b4eb5e83b8cd36e1ca0bc5eb3a043f1973f4479037de38cf41a7b7ac646845697636f SHA512 a26730613b8019385e48c7432bcc9871984a7035e53e56188a876e70e255a1adf23d546dfeb1706879af5c4a8f2231976fe89d2571b3d2cb6d615a7834a2d876
25
26 diff --git a/net-misc/whois/whois-5.3.2.ebuild b/net-misc/whois/whois-5.3.2.ebuild
27 deleted file mode 100644
28 index 6db3ffbd5bb..00000000000
29 --- a/net-misc/whois/whois-5.3.2.ebuild
30 +++ /dev/null
31 @@ -1,65 +0,0 @@
32 -# Copyright 1999-2019 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=6
36 -inherit toolchain-funcs
37 -
38 -MY_P="${P/-/_}"
39 -DESCRIPTION="improved Whois Client"
40 -HOMEPAGE="https://github.com/rfc1036/whois"
41 -SRC_URI="mirror://debian/pool/main/w/whois/${MY_P}.tar.xz"
42 -
43 -LICENSE="GPL-2"
44 -SLOT="0"
45 -KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux"
46 -IUSE="iconv idn nls"
47 -RESTRICT="test" #59327
48 -
49 -RDEPEND="iconv? ( virtual/libiconv )
50 - idn? ( net-dns/libidn2:= )
51 - nls? ( virtual/libintl )"
52 -DEPEND="${RDEPEND}
53 - app-arch/xz-utils
54 - >=dev-lang/perl-5
55 - virtual/pkgconfig
56 - nls? ( sys-devel/gettext )"
57 -
58 -PATCHES=(
59 - "${FILESDIR}"/${PN}-4.7.2-config-file.patch
60 - "${FILESDIR}"/${PN}-5.3.0-libidn_automagic.patch
61 -)
62 -
63 -src_prepare() {
64 - default
65 - if use nls ; then
66 - sed -i -e 's:#\(.*pos\):\1:' Makefile || die
67 - else
68 - sed -i -e '/ENABLE_NLS/s:define:undef:' config.h || die
69 -
70 - # don't generate po files when nls is disabled (bug #419889)
71 - sed -i -e '/^all:/s/ pos//' \
72 - -e '/^install:/s/ install-pos//' Makefile || die
73 - fi
74 -}
75 -
76 -src_configure() { :; } # expected no-op
77 -
78 -src_compile() {
79 - unset HAVE_ICONV HAVE_LIBIDN
80 - use iconv && export HAVE_ICONV=1
81 - use idn && export HAVE_LIBIDN=1
82 - tc-export CC
83 - emake CFLAGS="${CFLAGS} ${CPPFLAGS}"
84 -}
85 -
86 -src_install() {
87 - emake BASEDIR="${ED}" prefix=/usr install
88 - insinto /etc
89 - doins whois.conf
90 - dodoc README debian/changelog
91 -
92 - if [[ ${USERLAND} != "GNU" ]]; then
93 - mv "${ED%/}"/usr/share/man/man1/{whois,mdwhois}.1 || die
94 - mv "${ED%/}"/usr/bin/{whois,mdwhois} || die
95 - fi
96 -}