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