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 1B33C138334 for ; Tue, 11 Dec 2018 14:29:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F230EE0B00; Tue, 11 Dec 2018 14:29:13 +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 C8E4EE0B00 for ; Tue, 11 Dec 2018 14:29:12 +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 D1167335C9F for ; Tue, 11 Dec 2018 14:29:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 25E71463 for ; Tue, 11 Dec 2018 14:29:09 +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: <1544538469.f81e23a7667ec3a0ed4b2af80c611be1b2d4d6d5.grobian@gentoo> Subject: [gentoo-commits] repo/proj/prefix:master commit in: scripts/ X-VCS-Repository: repo/proj/prefix X-VCS-Files: scripts/bootstrap-prefix.sh X-VCS-Directories: scripts/ X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: f81e23a7667ec3a0ed4b2af80c611be1b2d4d6d5 X-VCS-Branch: master Date: Tue, 11 Dec 2018 14:29:09 +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: 218d9cef-62e5-4c78-9865-e9d94e9663a8 X-Archives-Hash: ae8ff582f16e67aaa28c535eb63e0ed0 commit: f81e23a7667ec3a0ed4b2af80c611be1b2d4d6d5 Author: Fabian Groffen gentoo org> AuthorDate: Tue Dec 11 14:27:49 2018 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Tue Dec 11 14:27:49 2018 +0000 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=f81e23a7 scripts/bootstrap-prefix: add some dep-cycle workarounds from Sam Pfeiffer Basically implements Error 1 from https://pad.crans.org/p/gentoo-prefix Signed-off-by: Fabian Groffen gentoo.org> scripts/bootstrap-prefix.sh | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh index cdcb8346d1..c4f8f18bb7 100755 --- a/scripts/bootstrap-prefix.sh +++ b/scripts/bootstrap-prefix.sh @@ -1553,9 +1553,21 @@ bootstrap_stage2() { # on systems without a c++ compiler. echo '> "${ROOT}"/tmp/etc/portage/package.unmask - # cmake has some external dependencies which require autoconf, etc. - # unless we only build the buildtool, bug #603012 - echo "dev-util/cmake -server" >> "${ROOT}"/tmp/etc/portage/package.use + + # kill some dependencies here while we're still fragile + { + # cmake has some external dependencies which require autoconf, etc. + # unless we only build the buildtool, bug #603012 + echo "dev-util/cmake -server" + # avoid sys-apps/acl -> attr -> gettext cycle on Linux + echo "sys-devel/gettext -acl" + # gdbm depends on berkdb by default, which pulls in binutils + echo "dev-lang/perl -gdbm -berkdb" + # package needs perl, nls pulls in specific package + echo "sys-apps/help2man -nls" + # avoid hefty set of deps from glib + echo "dev-util/pkgconfig internal-glib" + } >> "${ROOT}"/tmp/etc/portage/package.use for pkg in ${compiler_stage1} ; do #