From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 0AF80138A1F for ; Fri, 26 Sep 2014 02:17:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 055B6E0997; Fri, 26 Sep 2014 02:17:24 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4AC26E0996 for ; Fri, 26 Sep 2014 02:17:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4E0CD340220 for ; Fri, 26 Sep 2014 02:17:22 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 036E96474 for ; Fri, 26 Sep 2014 02:17:21 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1411694533.a45a9a05f80e157f6d4af8904a4c72e465e9a9d9.dol-sen@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: bin/ X-VCS-Repository: proj/portage X-VCS-Files: bin/misc-functions.sh X-VCS-Directories: bin/ X-VCS-Committer: dol-sen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: a45a9a05f80e157f6d4af8904a4c72e465e9a9d9 X-VCS-Branch: master Date: Fri, 26 Sep 2014 02:17:21 +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: 2aa9bf9e-2430-4169-84ae-fd6fcb4bca53 X-Archives-Hash: 6da07783cc63c8cf820803b891badf2f commit: a45a9a05f80e157f6d4af8904a4c72e465e9a9d9 Author: Michał Górny gentoo org> AuthorDate: Thu Sep 11 16:56:18 2014 +0000 Commit: Brian Dolbec gmail com> CommitDate: Fri Sep 26 01:22:13 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=a45a9a05 Run install-qa-check.d scripts from repositories --- (following the remaster of install_qa_check()) --- bin/misc-functions.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/bin/misc-functions.sh b/bin/misc-functions.sh index d701ba6..bd43360 100755 --- a/bin/misc-functions.sh +++ b/bin/misc-functions.sh @@ -182,6 +182,19 @@ install_qa_check() { ) done + # Run QA checks from repositories + # (yes, PORTAGE_ECLASS_LOCATIONS contains repo paths...) + local repo_location + for repo_location in "${PORTAGE_ECLASS_LOCATIONS[@]}"; do + for f in "${repo_location}"/metadata/install-qa-check.d/*; do + if [[ -f ${f} ]]; then + ( + source "${f}" || eerror "Post-install QA check ${f##*/} failed to run" + ) + fi + done + done + export STRIP_MASK prepall ___eapi_has_docompress && prepcompress