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 8D4B81382C5 for ; Wed, 16 Dec 2020 16:00:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CDFAAE0845; Wed, 16 Dec 2020 16:00:55 +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 B60CFE0845 for ; Wed, 16 Dec 2020 16:00:55 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 A322D340D17 for ; Wed, 16 Dec 2020 16:00:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 157934C for ; Wed, 16 Dec 2020 16:00:53 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1608003772.d1ce4b31637d143eda05472d2216db40d001169c.mattst88@gentoo> Subject: [gentoo-commits] proj/catalyst:master commit in: targets/stage1/ X-VCS-Repository: proj/catalyst X-VCS-Files: targets/stage1/chroot.sh X-VCS-Directories: targets/stage1/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: d1ce4b31637d143eda05472d2216db40d001169c X-VCS-Branch: master Date: Wed, 16 Dec 2020 16:00:53 +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: 5ecf9181-4d72-4020-a8d2-e9788fd2f7c7 X-Archives-Hash: cf2c5ca344f9eed5318662985337db34 commit: d1ce4b31637d143eda05472d2216db40d001169c Author: Matt Turner gentoo org> AuthorDate: Tue Dec 15 03:42:52 2020 +0000 Commit: Matt Turner gentoo org> CommitDate: Tue Dec 15 03:42:52 2020 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=d1ce4b31 targets: Rename clst_buildpkgs -> buildpkgs And remove the unnecessary export. Signed-off-by: Matt Turner gentoo.org> targets/stage1/chroot.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/targets/stage1/chroot.sh b/targets/stage1/chroot.sh index 2a8dc59b..dac52dfc 100755 --- a/targets/stage1/chroot.sh +++ b/targets/stage1/chroot.sh @@ -3,7 +3,7 @@ source /tmp/chroot-functions.sh # We do this first, so we know our package list for --debug -export clst_buildpkgs="$(/tmp/build.py)" +buildpkgs="$(/tmp/build.py)" # Setup our environment [ -n "${clst_BINDIST}" ] && BINDIST="bindist" @@ -12,7 +12,7 @@ BOOTSTRAP_USE="$(portageq envvar BOOTSTRAP_USE)" FEATURES="${FEATURES} nodoc noman noinfo" ## Sanity check profile -if [ -z "${clst_buildpkgs}" ] +if [ -z "${buildpkgs}" ] then echo "Your profile seems to be broken." echo "Could not build a list of build packages." @@ -72,7 +72,7 @@ if [ -e ${clst_make_conf} ]; then done fi -run_merge "--oneshot ${clst_buildpkgs}" +run_merge "--oneshot ${buildpkgs}" # TODO: Drop this when locale-gen in stable glibc supports ROOT. # 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 1B4331382C5 for ; Mon, 18 Jan 2021 19:53:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3C645E077F; Mon, 18 Jan 2021 19:53:48 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 20C11E077A for ; Mon, 18 Jan 2021 19:53:48 +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 D8099340DE1 for ; Mon, 18 Jan 2021 19:53:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6A4BB49F for ; Mon, 18 Jan 2021 19:53:45 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1608003772.d1ce4b31637d143eda05472d2216db40d001169c.mattst88@gentoo> Subject: [gentoo-commits] proj/catalyst:pending/mattst88 commit in: targets/stage1/ X-VCS-Repository: proj/catalyst X-VCS-Files: targets/stage1/chroot.sh X-VCS-Directories: targets/stage1/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: d1ce4b31637d143eda05472d2216db40d001169c X-VCS-Branch: pending/mattst88 Date: Mon, 18 Jan 2021 19:53:45 +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: 35a80e1a-9003-4fde-b444-badf4e156fbb X-Archives-Hash: fea3fc1461aef2f0077d28ab223ab9f3 Message-ID: <20210118195345.WlxT1V9RhiR_BKQ9ng05ZHkBm56IgrRQU7Q0Tld9u9s@z> commit: d1ce4b31637d143eda05472d2216db40d001169c Author: Matt Turner gentoo org> AuthorDate: Tue Dec 15 03:42:52 2020 +0000 Commit: Matt Turner gentoo org> CommitDate: Tue Dec 15 03:42:52 2020 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=d1ce4b31 targets: Rename clst_buildpkgs -> buildpkgs And remove the unnecessary export. Signed-off-by: Matt Turner gentoo.org> targets/stage1/chroot.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/targets/stage1/chroot.sh b/targets/stage1/chroot.sh index 2a8dc59b..dac52dfc 100755 --- a/targets/stage1/chroot.sh +++ b/targets/stage1/chroot.sh @@ -3,7 +3,7 @@ source /tmp/chroot-functions.sh # We do this first, so we know our package list for --debug -export clst_buildpkgs="$(/tmp/build.py)" +buildpkgs="$(/tmp/build.py)" # Setup our environment [ -n "${clst_BINDIST}" ] && BINDIST="bindist" @@ -12,7 +12,7 @@ BOOTSTRAP_USE="$(portageq envvar BOOTSTRAP_USE)" FEATURES="${FEATURES} nodoc noman noinfo" ## Sanity check profile -if [ -z "${clst_buildpkgs}" ] +if [ -z "${buildpkgs}" ] then echo "Your profile seems to be broken." echo "Could not build a list of build packages." @@ -72,7 +72,7 @@ if [ -e ${clst_make_conf} ]; then done fi -run_merge "--oneshot ${clst_buildpkgs}" +run_merge "--oneshot ${buildpkgs}" # TODO: Drop this when locale-gen in stable glibc supports ROOT. # 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 C5F8013835C for ; Sat, 19 Dec 2020 19:56:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 19A9BE09AE; Sat, 19 Dec 2020 19:56:06 +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 EF9A6E09AE for ; Sat, 19 Dec 2020 19:56:05 +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 11C14341044 for ; Sat, 19 Dec 2020 19:56:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A5DE142F for ; Sat, 19 Dec 2020 19:56:02 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1608003772.d1ce4b31637d143eda05472d2216db40d001169c.mattst88@gentoo> Subject: [gentoo-commits] proj/catalyst:wip/mattst88 commit in: targets/stage1/ X-VCS-Repository: proj/catalyst X-VCS-Files: targets/stage1/chroot.sh X-VCS-Directories: targets/stage1/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: d1ce4b31637d143eda05472d2216db40d001169c X-VCS-Branch: wip/mattst88 Date: Sat, 19 Dec 2020 19:56:02 +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: 19d62ae5-8991-4f4d-8b06-e7d7f9d68228 X-Archives-Hash: b6da9177489744febedc990ce8428681 Message-ID: <20201219195602.5yWDpp2XTFMBV_U2YrMSJ2ku48NpAspkTFqzK9CbnMM@z> commit: d1ce4b31637d143eda05472d2216db40d001169c Author: Matt Turner gentoo org> AuthorDate: Tue Dec 15 03:42:52 2020 +0000 Commit: Matt Turner gentoo org> CommitDate: Tue Dec 15 03:42:52 2020 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=d1ce4b31 targets: Rename clst_buildpkgs -> buildpkgs And remove the unnecessary export. Signed-off-by: Matt Turner gentoo.org> targets/stage1/chroot.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/targets/stage1/chroot.sh b/targets/stage1/chroot.sh index 2a8dc59b..dac52dfc 100755 --- a/targets/stage1/chroot.sh +++ b/targets/stage1/chroot.sh @@ -3,7 +3,7 @@ source /tmp/chroot-functions.sh # We do this first, so we know our package list for --debug -export clst_buildpkgs="$(/tmp/build.py)" +buildpkgs="$(/tmp/build.py)" # Setup our environment [ -n "${clst_BINDIST}" ] && BINDIST="bindist" @@ -12,7 +12,7 @@ BOOTSTRAP_USE="$(portageq envvar BOOTSTRAP_USE)" FEATURES="${FEATURES} nodoc noman noinfo" ## Sanity check profile -if [ -z "${clst_buildpkgs}" ] +if [ -z "${buildpkgs}" ] then echo "Your profile seems to be broken." echo "Could not build a list of build packages." @@ -72,7 +72,7 @@ if [ -e ${clst_make_conf} ]; then done fi -run_merge "--oneshot ${clst_buildpkgs}" +run_merge "--oneshot ${buildpkgs}" # TODO: Drop this when locale-gen in stable glibc supports ROOT. #