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 C309413835A 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 D0380E07F9; Mon, 18 Jan 2021 19:53:48 +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 A661AE07F9 for ; Mon, 18 Jan 2021 19:53:48 +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 E8C56340E25 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 57A3C487 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: <1605371697.2861038ae8c3c67f3000c976ed8177f63169712c.mattst88@gentoo> Subject: [gentoo-commits] proj/catalyst:pending/mattst88 commit in: examples/, doc/ X-VCS-Repository: proj/catalyst X-VCS-Files: doc/catalyst-spec.5.txt examples/generic_stage_template.spec examples/livecd-stage1_template.spec examples/livecd-stage2_template.spec examples/netboot_template.spec examples/stage4_template.spec X-VCS-Directories: examples/ doc/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 2861038ae8c3c67f3000c976ed8177f63169712c 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: 1b8831c2-4def-42ac-88ae-c92acf0c1ed0 X-Archives-Hash: d3fcba7f23a4f447fab63ffbdc47d7fa Message-ID: <20210118195345.ICxzW22R2sMwpoXWvNdGcF_vTpMJkkmM9DVvVeO10cE@z> commit: 2861038ae8c3c67f3000c976ed8177f63169712c Author: Felix Bier rohde-schwarz com> AuthorDate: Tue Nov 10 00:56:19 2020 +0000 Commit: Matt Turner gentoo org> CommitDate: Sat Nov 14 16:34:57 2020 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=2861038a doc: Make existing multi-overlay support more explicit The code already supports multiple repositories. This commit adapts the documentation to make this more explicit. Signed-off-by: Felix Bier rohde-schwarz.com> Signed-off-by: Matt Turner gentoo.org> doc/catalyst-spec.5.txt | 5 +++-- examples/generic_stage_template.spec | 5 +++-- examples/livecd-stage1_template.spec | 5 +++-- examples/livecd-stage2_template.spec | 5 +++-- examples/netboot_template.spec | 5 +++-- examples/stage4_template.spec | 5 +++-- 6 files changed, 18 insertions(+), 12 deletions(-) diff --git a/doc/catalyst-spec.5.txt b/doc/catalyst-spec.5.txt index 31e69820..4c1df857 100644 --- a/doc/catalyst-spec.5.txt +++ b/doc/catalyst-spec.5.txt @@ -81,8 +81,9 @@ This is an optional directory containing portage configuration files problems. *portage_overlay*:: -This option specifies the location to a portage overlay that you would -like to use when building this target (example: `/usr/local/portage`). +This option specifies the location of the ebuild repositories that you would +like to have used when building this target. It takes a space-separated list +of directory names. (example: `/usr/local/portage`). *pkgcache_path*:: This allows the optional directory containing the output packages for diff --git a/examples/generic_stage_template.spec b/examples/generic_stage_template.spec index 8f0375c4..8c8889bf 100644 --- a/examples/generic_stage_template.spec +++ b/examples/generic_stage_template.spec @@ -89,8 +89,9 @@ decompressor_search_order: lbzip2 bzip2 tar pixz xz gzip squashfs # portage_confdir: /etc/portage portage_confdir: -# This option specifies the location to a portage overlay that you would like to -# have used when building this target. +# This option specifies the location of the ebuild repositories that you would +# like to have used when building this target. It takes a space-separated list +# of directory names. # example: # portage_overlay: /usr/local/portage portage_overlay: diff --git a/examples/livecd-stage1_template.spec b/examples/livecd-stage1_template.spec index b921372a..269a1e3d 100644 --- a/examples/livecd-stage1_template.spec +++ b/examples/livecd-stage1_template.spec @@ -52,8 +52,9 @@ source_subpath: # portage_confdir: /etc/portage portage_confdir: -# This option specifies the location to a portage overlay that you would like to -# have used when building this target. +# This option specifies the location of the ebuild repositories that you would +# like to have used when building this target. It takes a space-separated list +# of directory names. # example: # portage_overlay: /usr/local/portage portage_overlay: diff --git a/examples/livecd-stage2_template.spec b/examples/livecd-stage2_template.spec index ac1cd3e4..4f50919f 100644 --- a/examples/livecd-stage2_template.spec +++ b/examples/livecd-stage2_template.spec @@ -52,8 +52,9 @@ source_subpath: # portage_confdir: /etc/portage portage_confdir: -# This option specifies the location to a portage overlay that you would like to -# have used when building this target. +# This option specifies the location of the ebuild repositories that you would +# like to have used when building this target. It takes a space-separated list +# of directory names. # example: # portage_overlay: /usr/local/portage portage_overlay: diff --git a/examples/netboot_template.spec b/examples/netboot_template.spec index 4f76b8ff..ad9d993c 100644 --- a/examples/netboot_template.spec +++ b/examples/netboot_template.spec @@ -6,8 +6,9 @@ profile: uclibc/mips snapshot: 20060107 source_subpath: default/stage3-mips-uclibc-mips3-2006.126 -# This option specifies the location to a portage overlay that you would like to -# have used when building this target. +# This option specifies the location of the ebuild repositories that you would +# like to have used when building this target. It takes a space-separated list +# of directory names. # example: # portage_overlay: /usr/local/portage portage_overlay: diff --git a/examples/stage4_template.spec b/examples/stage4_template.spec index c901eabc..aea70e86 100644 --- a/examples/stage4_template.spec +++ b/examples/stage4_template.spec @@ -52,8 +52,9 @@ source_subpath: # portage_confdir: /etc/portage portage_confdir: -# This option specifies the location to a portage overlay that you would like to -# have used when building this target. +# This option specifies the location of the ebuild repositories that you would +# like to have used when building this target. It takes a space-separated list +# of directory names. # example: # portage_overlay: /usr/local/portage portage_overlay: