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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9721315808B for ; Wed, 6 Apr 2022 15:47:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0150AE0AFB; Wed, 6 Apr 2022 15:47:33 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 353A6E0AFB for ; Wed, 6 Apr 2022 15:47:31 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 681763411F1 for ; Wed, 6 Apr 2022 15:47:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CB25F2A7 for ; Wed, 6 Apr 2022 15:47:28 +0000 (UTC) From: "Mathieu Tortuyaux" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mathieu Tortuyaux" Message-ID: <1649260020.d6e3b57acea6ae8ee79af6414a7decf59ed3b8b3.MathieuTortuyaux@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-metrics/scaphandre/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-metrics/scaphandre/scaphandre-0.4.1.ebuild X-VCS-Directories: app-metrics/scaphandre/ X-VCS-Committer: MathieuTortuyaux X-VCS-Committer-Name: Mathieu Tortuyaux X-VCS-Revision: d6e3b57acea6ae8ee79af6414a7decf59ed3b8b3 X-VCS-Branch: dev Date: Wed, 6 Apr 2022 15:47:28 +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: a6006bb1-7d95-4486-8f05-a7ee452528a2 X-Archives-Hash: 0fd6731d01523e3f78c6ec285d40fcca commit: d6e3b57acea6ae8ee79af6414a7decf59ed3b8b3 Author: Mathieu Tortuyaux gmail com> AuthorDate: Wed Apr 6 15:46:10 2022 +0000 Commit: Mathieu Tortuyaux gmail com> CommitDate: Wed Apr 6 15:47:00 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d6e3b57a app-metrics/scaphandre: restrict test some tests rely on the assumption that /proc/modules is present. Closes: https://bugs.gentoo.org/836916 Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Mathieu Tortuyaux gmail.com> app-metrics/scaphandre/scaphandre-0.4.1.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app-metrics/scaphandre/scaphandre-0.4.1.ebuild b/app-metrics/scaphandre/scaphandre-0.4.1.ebuild index a551256cf..9752431d6 100644 --- a/app-metrics/scaphandre/scaphandre-0.4.1.ebuild +++ b/app-metrics/scaphandre/scaphandre-0.4.1.ebuild @@ -206,7 +206,8 @@ DESCRIPTION="Electrical power consumption measurement agent." # does not provide this value so instead repository is used HOMEPAGE="https://github.com/hubblo-org/scaphandre" SRC_URI="https://github.com/hubblo-org/${PN}/archive/refs/tags/v${PV}.zip -> ${P}.zip $(cargo_crate_uris ${CRATES})" -RESTRICT="mirror" +# restricting test because '/proc/modules' does not appear to be present in the CI +RESTRICT="mirror test" # License set may be more restrictive as OR is not respected # use cargo-license for a more accurate license picture LICENSE="Apache-2.0 Apache-2.0 ISC MIT MPL-2.0 Unlicense"