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 55DEB1381F3 for ; Wed, 17 Feb 2021 03:09:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4F10DE0833; Wed, 17 Feb 2021 03:09:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 35BBCE0833 for ; Wed, 17 Feb 2021 03:09:27 +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 F03B234151D for ; Wed, 17 Feb 2021 03:09:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7175B4AF for ; Wed, 17 Feb 2021 03:09:24 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1613531356.eafc7c666d773cfd3b8295474a24cb6eef0919ce.sam@gentoo> Subject: [gentoo-commits] proj/tatt:master commit in: templates/ X-VCS-Repository: proj/tatt X-VCS-Files: templates/tatt_functions.sh X-VCS-Directories: templates/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: eafc7c666d773cfd3b8295474a24cb6eef0919ce X-VCS-Branch: master Date: Wed, 17 Feb 2021 03:09:24 +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: aee79c93-a4a1-4c76-aec1-d889c835ee62 X-Archives-Hash: a885eea25c51fb76538d1931ff1c22e7 commit: eafc7c666d773cfd3b8295474a24cb6eef0919ce Author: John Helmert III posteo net> AuthorDate: Wed Feb 17 03:08:09 2021 +0000 Commit: Sam James gentoo org> CommitDate: Wed Feb 17 03:09:16 2021 +0000 URL: https://gitweb.gentoo.org/proj/tatt.git/commit/?id=eafc7c66 templates/tatt_functions.sh: Don't use binpkgs when running the build test This should force building the package even if EMERGE_DEFAULT_OPTS has --usepkg=y or --getbinpkg=y, or if FEATURES=getbinpkg. Signed-off-by: John Helmert III posteo.net> Closes: https://github.com/gentoo/tatt/pull/71 Signed-off-by: Sam James gentoo.org> templates/tatt_functions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/tatt_functions.sh b/templates/tatt_functions.sh index 57d3d65..2893dc0 100644 --- a/templates/tatt_functions.sh +++ b/templates/tatt_functions.sh @@ -55,7 +55,7 @@ function tatt_test_pkg TFEATURES="${FEATURES}" fi - eout=$( FEATURES="${TFEATURES}" emerge -1 ${TATT_EMERGEOPTS} "${1:?}" 2>&1 1>/dev/tty ) + eout=$( FEATURES="${TFEATURES}" emerge -1 --getbinpkg=n --usepkg-exclude="${1:?}" ${TATT_EMERGEOPTS} "${1:?}" 2>&1 1>/dev/tty ) if [[ $? == 0 ]] ; then if [ -n "${TFEATURES}" ]; then echo -n "FEATURES='${TFEATURES}' " >> "${TATT_REPORTFILE}"