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 903DD1381F3 for ; Wed, 21 Nov 2012 05:21:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 40F3B21C085; Wed, 21 Nov 2012 05:21:03 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BA98921C085 for ; Wed, 21 Nov 2012 05:21:02 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AA2D333D7E4 for ; Wed, 21 Nov 2012 05:21:01 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 8938CE5436 for ; Wed, 21 Nov 2012 05:20:59 +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: <1352592978.81796dee7481246aa6ec0634ccdc2350746bfb20.mattst88@gentoo> Subject: [gentoo-commits] proj/catalyst:master commit in: targets/stage1/ X-VCS-Repository: proj/catalyst X-VCS-Files: targets/stage1/stage1-chroot.sh X-VCS-Directories: targets/stage1/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 81796dee7481246aa6ec0634ccdc2350746bfb20 X-VCS-Branch: master Date: Wed, 21 Nov 2012 05:20:59 +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: 4bf1de0e-7a18-40a0-94f3-b441a8882e3e X-Archives-Hash: 253a5fb3e9d1410bbca9e0fba98ea9a9 commit: 81796dee7481246aa6ec0634ccdc2350746bfb20 Author: Matt Turner gmail com> AuthorDate: Sat Nov 10 23:38:03 2012 +0000 Commit: Matt Turner gmail com> CommitDate: Sun Nov 11 00:16:18 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/catalyst.git;a=commit;h=81796dee Use update_seed's argument as an argument list to emerge Previously, update_seed caused the seed stage to be updated with --update --deep --newuse @world. This proved to be unnecessary in the majority of cases. Simply give run_merge the previously unused argument of update_seed as an argument list. This allows updating select packages in a seed stage. --- targets/stage1/stage1-chroot.sh | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/targets/stage1/stage1-chroot.sh b/targets/stage1/stage1-chroot.sh index a9536a6..377a7cf 100644 --- a/targets/stage1/stage1-chroot.sh +++ b/targets/stage1/stage1-chroot.sh @@ -24,7 +24,7 @@ clst_root_path=/ setup_pkgmgr # Update stage3 if [ -n "${clst_update_seed_cache}" ]; then echo "Updating seed stage..." - clst_root_path=/ run_merge "--update --deep --newuse @world" + clst_root_path=/ run_merge "${clst_update_seed_cache}" else echo "Skipping seed stage update..." fi