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 5D039158087 for ; Mon, 24 Jan 2022 08:41:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B0B232BC00B; Mon, 24 Jan 2022 08:41:52 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 3E92D2BC00B for ; Mon, 24 Jan 2022 08:41:52 +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 300F4342C11 for ; Mon, 24 Jan 2022 08:41:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A915DD0 for ; Mon, 24 Jan 2022 08:41:49 +0000 (UTC) From: "Magnus Granberg" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Magnus Granberg" Message-ID: <1643013694.d3fb5e15c10d25fa06c6862fbbcd996a2d6182df.zorry@gentoo> Subject: [gentoo-commits] proj/tinderbox-cluster:master commit in: buildbot_gentoo_ci/steps/ X-VCS-Repository: proj/tinderbox-cluster X-VCS-Files: buildbot_gentoo_ci/steps/portage.py X-VCS-Directories: buildbot_gentoo_ci/steps/ X-VCS-Committer: zorry X-VCS-Committer-Name: Magnus Granberg X-VCS-Revision: d3fb5e15c10d25fa06c6862fbbcd996a2d6182df X-VCS-Branch: master Date: Mon, 24 Jan 2022 08:41:49 +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: 0fafb4bf-f67b-463d-84d2-945bfd96aae9 X-Archives-Hash: aab38800a74aa00e547f0086c386b58c commit: d3fb5e15c10d25fa06c6862fbbcd996a2d6182df Author: Magnus Granberg gentoo org> AuthorDate: Mon Jan 24 08:41:34 2022 +0000 Commit: Magnus Granberg gentoo org> CommitDate: Mon Jan 24 08:41:34 2022 +0000 URL: https://gitweb.gentoo.org/proj/tinderbox-cluster.git/commit/?id=d3fb5e15 set ACCEPT_LICENSE by project Signed-off-by: Magnus Granberg gentoo.org> buildbot_gentoo_ci/steps/portage.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/buildbot_gentoo_ci/steps/portage.py b/buildbot_gentoo_ci/steps/portage.py index 08ab559..e5d0a25 100644 --- a/buildbot_gentoo_ci/steps/portage.py +++ b/buildbot_gentoo_ci/steps/portage.py @@ -224,8 +224,9 @@ class SetMakeConf(BuildStep): for v in makeconf_variables_values_data: if v['build_id'] == 0: makeconf_variable_list.append(v['value']) - if k['variable'] == 'ACCEPT_LICENSE' and makeconf_variable_list != []: - makeconf_variable_list.append('ACCEPT_LICENSE="*"') + #NOTE: set it by project + #if k['variable'] == 'ACCEPT_LICENSE' and makeconf_variable_list != []: + # makeconf_variable_list.append('ACCEPT_LICENSE="*"') if makeconf_variable_list != []: makeconf_variable_string = k['variable'] + '="' + separator2.join(makeconf_variable_list) + '"' makeconf_list.append(makeconf_variable_string)