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 4B875138334 for ; Fri, 19 Jul 2019 11:06:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6E3D7E0826; Fri, 19 Jul 2019 11:06:52 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 52C50E0826 for ; Fri, 19 Jul 2019 11:06:52 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 926F33480BA for ; Fri, 19 Jul 2019 11:06:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1501E66B for ; Fri, 19 Jul 2019 11:06:48 +0000 (UTC) From: "Thomas Deutschmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Deutschmann" Message-ID: <1563534111.8fab61d0c84583dc7ebdf2a5c43a40d5eaf9914e.whissi@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: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: 8fab61d0c84583dc7ebdf2a5c43a40d5eaf9914e X-VCS-Branch: master Date: Fri, 19 Jul 2019 11:06:48 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: bafae242-2ebf-41a7-a025-7071dce7e5a5 X-Archives-Hash: 7ecb28d14adf3899c445e58261864d77 commit: 8fab61d0c84583dc7ebdf2a5c43a40d5eaf9914e Author: Thomas Deutschmann gentoo org> AuthorDate: Fri Jul 19 11:01:51 2019 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Fri Jul 19 11:01:51 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fab61d0 net-misc/iputils: update live ebuild Package-Manager: Portage-2.3.68, Repoman-2.3.16 Signed-off-by: Thomas Deutschmann gentoo.org> net-misc/iputils/iputils-99999999.ebuild | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/net-misc/iputils/iputils-99999999.ebuild b/net-misc/iputils/iputils-99999999.ebuild index 4e19ac8bb2b..ffc2311cad4 100644 --- a/net-misc/iputils/iputils-99999999.ebuild +++ b/net-misc/iputils/iputils-99999999.ebuild @@ -7,7 +7,7 @@ # To regenerate man/html pages emerge iputils-99999999[doc] with # EGIT_COMMIT set to release tag and tar ${S}/doc folder. -EAPI="6" +EAPI="7" PLOCALES="ja" @@ -29,6 +29,11 @@ LICENSE="BSD GPL-2+ rdisc" SLOT="0" IUSE="+arping caps clockdiff doc gcrypt idn ipv6 libressl nettle nls rarpd rdisc SECURITY_HAZARD ssl static tftpd tracepath traceroute6" +BDEPEND=" + virtual/os-headers + virtual/pkgconfig +" + LIB_DEPEND=" caps? ( sys-libs/libcap[static-libs(+)] ) idn? ( net-dns/libidn2:=[static-libs(+)] ) @@ -53,12 +58,12 @@ RDEPEND=" traceroute6? ( !net-analyzer/traceroute ) !static? ( ${LIB_DEPEND//\[static-libs(+)]} ) " + DEPEND=" ${RDEPEND} static? ( ${LIB_DEPEND} ) - virtual/os-headers - virtual/pkgconfig " + if [[ ${PV} == "99999999" ]] ; then DEPEND+=" app-text/docbook-xml-dtd:4.2 @@ -160,7 +165,6 @@ src_install() { local -a man_pages local -a html_man_pages - local oifs=${IFS} while IFS= read -r -u 3 -d $'\0' my_bin do my_bin=$(basename "${my_bin}") @@ -174,7 +178,6 @@ src_install() { html_man_pages+=( ${my_bin}.html ) fi done 3< <(find "${ED%/}"/{bin,usr/bin,usr/sbin} -type f -perm -a+x -print0 2>/dev/null) - IFS=${oifs} pushd doc &>/dev/null || die doman "${man_pages[@]}"