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 1EEC1138334 for ; Tue, 10 Jul 2018 08:54:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 03772E0872; Tue, 10 Jul 2018 08:54:41 +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 D0AEBE0872 for ; Tue, 10 Jul 2018 08:54:40 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 A6EFB335C39 for ; Tue, 10 Jul 2018 08:54:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3EE592E3 for ; Tue, 10 Jul 2018 08:54:38 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1531212494.eda3aca923a08d3adda7a818c087370ed2b2e601.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-process/numactl/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-process/numactl/numactl-9999.ebuild X-VCS-Directories: sys-process/numactl/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: eda3aca923a08d3adda7a818c087370ed2b2e601 X-VCS-Branch: master Date: Tue, 10 Jul 2018 08:54:38 +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: 499f2f80-1d47-4ee4-a22b-9b50266454ae X-Archives-Hash: f3104a83b48c54c233ecf1f9761b9c3c commit: eda3aca923a08d3adda7a818c087370ed2b2e601 Author: Lars Wendler gentoo org> AuthorDate: Tue Jul 10 08:48:14 2018 +0000 Commit: Lars Wendler gentoo org> CommitDate: Tue Jul 10 08:48:14 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eda3aca9 sys-process/numactl: Minor adjustments to the live ebuild. Package-Manager: Portage-2.3.41, Repoman-2.3.9 sys-process/numactl/numactl-9999.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys-process/numactl/numactl-9999.ebuild b/sys-process/numactl/numactl-9999.ebuild index 3dad0c6eace..312ab570210 100644 --- a/sys-process/numactl/numactl-9999.ebuild +++ b/sys-process/numactl/numactl-9999.ebuild @@ -7,11 +7,11 @@ inherit autotools toolchain-funcs multilib-minimal DESCRIPTION="Utilities and libraries for NUMA systems" HOMEPAGE="https://github.com/numactl/numactl" -if [[ "${PV}" = 9999* ]] ; then +if [[ "${PV}" == 9999 ]] ; then inherit git-r3 EGIT_REPO_URI="https://github.com/numactl/numactl.git" else - SRC_URI="ftp://oss.sgi.com/www/projects/libnuma/download/${P}.tar.gz" + SRC_URI="https://github.com/numactl/numactl/releases/download/v${PV}/${P}.tar.gz" # ARM lacks the __NR_migrate_pages syscall. KEYWORDS="~amd64 -arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~x86 ~amd64-linux" fi @@ -58,7 +58,7 @@ multilib_src_install() { } multilib_src_install_all() { - local DOCS=( README TODO CHANGES DESIGN ) + local DOCS=( README.md ) einstalldocs # delete man pages provided by the man-pages package #238805 rm -r "${ED%/}"/usr/share/man/man[25] || die