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 1E963138334 for ; Wed, 6 Mar 2019 11:24:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0A0DDE08F6; Wed, 6 Mar 2019 11:24:54 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 D35A1E08F6 for ; Wed, 6 Mar 2019 11:24:53 +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 5280A335C7A for ; Wed, 6 Mar 2019 11:24:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 317F7553 for ; Wed, 6 Mar 2019 11:24:50 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1551871443.0b5c7cac9be2e6cca05d00a35f81e717bbed38b7.grobian@gentoo> Subject: [gentoo-commits] repo/proj/prefix:master commit in: scripts/auto-bootstraps/ X-VCS-Repository: repo/proj/prefix X-VCS-Files: scripts/auto-bootstraps/dobootstrap scripts/auto-bootstraps/process_uploads.sh X-VCS-Directories: scripts/auto-bootstraps/ X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: 0b5c7cac9be2e6cca05d00a35f81e717bbed38b7 X-VCS-Branch: master Date: Wed, 6 Mar 2019 11:24:50 +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: ed5bfd8b-d4df-4b77-bb9c-ad231eca6f34 X-Archives-Hash: e03df947a5f4686a40eaa4434b25480e commit: 0b5c7cac9be2e6cca05d00a35f81e717bbed38b7 Author: Fabian Groffen gentoo org> AuthorDate: Wed Mar 6 11:24:03 2019 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Wed Mar 6 11:24:03 2019 +0000 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=0b5c7cac auto-bootstraps: copy etc/portage/make.conf as build result make.conf might show some build configuration Signed-off-by: Fabian Groffen gentoo.org> scripts/auto-bootstraps/dobootstrap | 1 + scripts/auto-bootstraps/process_uploads.sh | 2 ++ 2 files changed, 3 insertions(+) diff --git a/scripts/auto-bootstraps/dobootstrap b/scripts/auto-bootstraps/dobootstrap index 1d2cfa6296..12b25b4caa 100755 --- a/scripts/auto-bootstraps/dobootstrap +++ b/scripts/auto-bootstraps/dobootstrap @@ -143,6 +143,7 @@ do_prepare() { usr/portage/distfiles \ var/tmp/portage \ var/log/emerge.log \ + etc/portage/make.conf \ ${UPLOAD}/${HOSTNAME}-$$/${chost}/${dte}/ rsync -q /dev/null ${UPLOAD}/${HOSTNAME}-$$/${chost}/${dte}/push-complete/ fi diff --git a/scripts/auto-bootstraps/process_uploads.sh b/scripts/auto-bootstraps/process_uploads.sh index 402f9e4ae6..ca39789510 100755 --- a/scripts/auto-bootstraps/process_uploads.sh +++ b/scripts/auto-bootstraps/process_uploads.sh @@ -36,6 +36,7 @@ for d in ${UPLOADDIR}/* ; do emerge.log \ startprefix \ elapsedtime \ + make.conf \ distfiles ; do [[ -e "${d}/${dir}/${f}" ]] && \ @@ -43,6 +44,7 @@ for d in ${UPLOADDIR}/* ; do done if [[ -e "${d}/${dir}/portage" ]] ; then for pkg in "${d}/${dir}/portage"/*/* ; do + [[ -e ${pkg} ]] || continue w=${pkg#${d}/} mkdir -p "${RESULTSDIR}/${w}" [[ -e "${pkg}"/build-info ]] && \