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-misc/iputils/
Date: Sat, 01 Oct 2016 20:55:10
Message-Id: 1473525241.312e3e6942e6145df201a9ece34b665278e162f2.robbat2@gentoo
1 commit: 312e3e6942e6145df201a9ece34b665278e162f2
2 Author: Pavel Šimerda <pavlix <AT> pavlix <DOT> net>
3 AuthorDate: Sat Sep 10 14:22:12 2016 +0000
4 Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 10 16:34:01 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=312e3e69
7
8 net-misc/iputils: make 99999999 buildable
9
10 Apply necessary changes to `iputils-99999999.patch` that are not needed
11 in `iputils-20160308.ebuild` from which it was copied.
12
13 * Don't use `S` variable when `PV=99999999`
14 * Quote variables to make `repoman -d full` happy
15 * Reflect the rename of `INSTALL` to `INSTALL.md`
16
17 net-misc/iputils/iputils-99999999.ebuild | 4 ++--
18 1 file changed, 2 insertions(+), 2 deletions(-)
19
20 diff --git a/net-misc/iputils/iputils-99999999.ebuild b/net-misc/iputils/iputils-99999999.ebuild
21 index 65a2110..e2da683 100644
22 --- a/net-misc/iputils/iputils-99999999.ebuild
23 +++ b/net-misc/iputils/iputils-99999999.ebuild
24 @@ -56,7 +56,7 @@ fi
25
26 REQUIRED_USE="ipv6? ( ssl? ( ^^ ( gcrypt nettle openssl ) ) )"
27
28 -S=${WORKDIR}/${PN}-s${PV}
29 +[ "${PV}" = "99999999" ] || S="${WORKDIR}/${PN}-s${PV}"
30
31 PATCHES=(
32 "${FILESDIR}/021109-uclibc-no-ether_ntohost.patch"
33 @@ -153,7 +153,7 @@ src_install() {
34 newconfd "${FILESDIR}"/rarpd.conf.d rarpd
35 fi
36
37 - dodoc INSTALL RELNOTES
38 + dodoc INSTALL.md RELNOTES
39
40 use doc && dohtml doc/*.html
41 }