From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E3FBA138330 for ; Sat, 1 Oct 2016 20:55:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5690CE0962; Sat, 1 Oct 2016 20:55:07 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3CCECE0962 for ; Sat, 1 Oct 2016 20:55:07 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BBED033FD3F for ; Sat, 1 Oct 2016 20:55:05 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 90C562491 for ; Sat, 1 Oct 2016 20:55:03 +0000 (UTC) From: "Robin H. Johnson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Robin H. Johnson" Message-ID: <1473525241.312e3e6942e6145df201a9ece34b665278e162f2.robbat2@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/iputils/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/iputils/iputils-99999999.ebuild X-VCS-Directories: net-misc/iputils/ X-VCS-Committer: robbat2 X-VCS-Committer-Name: Robin H. Johnson X-VCS-Revision: 312e3e6942e6145df201a9ece34b665278e162f2 X-VCS-Branch: master Date: Sat, 1 Oct 2016 20:55:03 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 1f223db7-5683-49e8-9733-e94bddf83f71 X-Archives-Hash: 88af8e0ff72a3a176a2e5f3c3a6ff693 commit: 312e3e6942e6145df201a9ece34b665278e162f2 Author: Pavel Šimerda pavlix net> AuthorDate: Sat Sep 10 14:22:12 2016 +0000 Commit: Robin H. Johnson gentoo org> CommitDate: Sat Sep 10 16:34:01 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=312e3e69 net-misc/iputils: make 99999999 buildable Apply necessary changes to `iputils-99999999.patch` that are not needed in `iputils-20160308.ebuild` from which it was copied. * Don't use `S` variable when `PV=99999999` * Quote variables to make `repoman -d full` happy * Reflect the rename of `INSTALL` to `INSTALL.md` net-misc/iputils/iputils-99999999.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net-misc/iputils/iputils-99999999.ebuild b/net-misc/iputils/iputils-99999999.ebuild index 65a2110..e2da683 100644 --- a/net-misc/iputils/iputils-99999999.ebuild +++ b/net-misc/iputils/iputils-99999999.ebuild @@ -56,7 +56,7 @@ fi REQUIRED_USE="ipv6? ( ssl? ( ^^ ( gcrypt nettle openssl ) ) )" -S=${WORKDIR}/${PN}-s${PV} +[ "${PV}" = "99999999" ] || S="${WORKDIR}/${PN}-s${PV}" PATCHES=( "${FILESDIR}/021109-uclibc-no-ether_ntohost.patch" @@ -153,7 +153,7 @@ src_install() { newconfd "${FILESDIR}"/rarpd.conf.d rarpd fi - dodoc INSTALL RELNOTES + dodoc INSTALL.md RELNOTES use doc && dohtml doc/*.html }