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 60E1B138334 for ; Mon, 2 Sep 2019 10:29:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 88865E0921; Mon, 2 Sep 2019 10:29:15 +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 6BB5FE077C for ; Mon, 2 Sep 2019 10:29:15 +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 4799A34AA29 for ; Mon, 2 Sep 2019 10:29:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 02B3F77F for ; Mon, 2 Sep 2019 10:29:12 +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: <1567420147.696aac797796455ed50faca69d18a7c67ba49c49.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: 696aac797796455ed50faca69d18a7c67ba49c49 X-VCS-Branch: master Date: Mon, 2 Sep 2019 10:29:12 +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: e190f679-45ab-41c8-b38d-270e3b7b9f0a X-Archives-Hash: 7187b514af39c730380a6e5d0098c67a commit: 696aac797796455ed50faca69d18a7c67ba49c49 Author: Lars Wendler gentoo org> AuthorDate: Mon Sep 2 10:26:39 2019 +0000 Commit: Lars Wendler gentoo org> CommitDate: Mon Sep 2 10:29:07 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=696aac79 sys-process/numactl: Synced live ebuild Package-Manager: Portage-2.3.75, Repoman-2.3.17 Signed-off-by: Lars Wendler gentoo.org> sys-process/numactl/numactl-9999.ebuild | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/sys-process/numactl/numactl-9999.ebuild b/sys-process/numactl/numactl-9999.ebuild index 312ab570210..e38e4a77477 100644 --- a/sys-process/numactl/numactl-9999.ebuild +++ b/sys-process/numactl/numactl-9999.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 inherit autotools toolchain-funcs multilib-minimal @@ -41,7 +41,7 @@ multilib_src_compile() { multilib_src_test() { if multilib_is_native_abi ; then - if [ -d /sys/devices/system/node ]; then + if [[ -d /sys/devices/system/node ]] ; then einfo "The only generically safe test is regress2." einfo "The other test cases require 2 NUMA nodes." emake regress2 @@ -54,12 +54,12 @@ multilib_src_test() { multilib_src_install() { emake DESTDIR="${D}" \ install$(multilib_is_native_abi || echo "-libLTLIBRARIES install-includeHEADERS") - find "${ED%/}"/usr/ -name libnuma.la -delete || die + find "${ED}"/usr/ -type f -name libnuma.la -delete || die } multilib_src_install_all() { local DOCS=( README.md ) einstalldocs # delete man pages provided by the man-pages package #238805 - rm -r "${ED%/}"/usr/share/man/man[25] || die + rm -r "${ED}"/usr/share/man/man[25] || die }