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 0F2761396D9 for ; Sat, 21 Oct 2017 16:52:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5CF0F2BC027; Sat, 21 Oct 2017 16:52:06 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 333DD2BC01A for ; Sat, 21 Oct 2017 16:52:04 +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 CCF5933BEB4 for ; Sat, 21 Oct 2017 16:52:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 72DEE324 for ; Sat, 21 Oct 2017 16:52:02 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1508604689.27f3fd55732909f1acb9aef6099fccbce67128ae.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/ntpclient/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/ntpclient/ntpclient-2017.246.ebuild X-VCS-Directories: net-misc/ntpclient/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 27f3fd55732909f1acb9aef6099fccbce67128ae X-VCS-Branch: master Date: Sat, 21 Oct 2017 16:52:02 +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: f4c4811b-cb33-47f5-8e9f-50e414cb17ee X-Archives-Hash: 0c7dfc121ee22efb6ed1ce6d10a57d9f commit: 27f3fd55732909f1acb9aef6099fccbce67128ae Author: Patrice Clement gentoo org> AuthorDate: Sat Oct 21 11:00:18 2017 +0000 Commit: Patrice Clement gentoo org> CommitDate: Sat Oct 21 16:51:29 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27f3fd55 net-misc/ntpclient: rework ebuild. Package-Manager: Portage-2.3.8, Repoman-2.3.3 net-misc/ntpclient/ntpclient-2017.246.ebuild | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/net-misc/ntpclient/ntpclient-2017.246.ebuild b/net-misc/ntpclient/ntpclient-2017.246.ebuild index 37daca2fed8..12af1add9c4 100644 --- a/net-misc/ntpclient/ntpclient-2017.246.ebuild +++ b/net-misc/ntpclient/ntpclient-2017.246.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -7,19 +7,20 @@ inherit eutils DESCRIPTION="A NTP (RFC-1305) client for unix-alike computers" HOMEPAGE="https://github.com/troglobit/ntpclient" -SRC_URI="https://github.com/troglobit/ntpclient/releases/download/2017_246/ntpclient-2017_246.tar.xz" +SRC_URI="https://github.com/troglobit/ntpclient/releases/download/2017_217/ntpclient-2017_246.tar.xz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" +DOCS=( README.md "doc/HOWTO.md" "doc/rate.awk" "doc/rate2.awk" ) + src_unpack() { default mv "${WORKDIR}"/${PN}* ${P} || die } src_install() { - dobin "src/${PN}" - local DOCS=( README.md "doc/HOWTO.md" "doc/rate.awk" "doc/rate2.awk" ) einstalldocs + dobin "src/${PN}" }