diff options
author | Zac Medico <zmedico@gentoo.org> | 2019-05-01 19:50:37 -0700 |
---|---|---|
committer | Ben Kohler <bkohler@gentoo.org> | 2019-05-24 09:39:51 -0500 |
commit | 91eb3317ee581f7d1eeacc68ebe88de5a1cdfd1a (patch) | |
tree | 0fe39a6f5871482a3459631a0ad69e099bfceae8 /etc | |
parent | Add builder for riscv64-unknown-linux-gnu (diff) | |
download | catalyst-91eb3317ee581f7d1eeacc68ebe88de5a1cdfd1a.tar.gz catalyst-91eb3317ee581f7d1eeacc68ebe88de5a1cdfd1a.tar.bz2 catalyst-91eb3317ee581f7d1eeacc68ebe88de5a1cdfd1a.zip |
New default PORTDIR, PKGDIR, and DISTDIR settings approved by council
The locations approved by the council:
DISTDIR="/var/cache/distfiles"
PKGDIR="/var/cache/binpkgs"
PORTDIR="/var/db/repos/gentoo"
Bug: https://bugs.gentoo.org/684908
Signed-off-by: Zac Medico <zmedico@gentoo.org>
Diffstat (limited to 'etc')
-rw-r--r-- | etc/catalyst.conf | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/etc/catalyst.conf b/etc/catalyst.conf index 7d7f7aba..5a5eedba 100644 --- a/etc/catalyst.conf +++ b/etc/catalyst.conf @@ -28,7 +28,7 @@ contents="auto" # distdir specifies where your distfiles are located. This setting should # work fine for most default installations. -distdir="/usr/portage/distfiles" +distdir="/var/cache/distfiles" # envscript allows users to set options such as http proxies, MAKEOPTS, # GENTOO_MIRRORS, or any other environment variables needed for building. @@ -84,18 +84,18 @@ hash_function="crc32" options="autoresume bindist kerncache pkgcache seedcache snapcache" # Source portdir specifies the source portage tree used by the snapshot target. -portdir="/usr/portage" +portdir="/var/db/repos/gentoo" # Target portdir setting. It needs to be in 2 parts. # They will be used separately, then added together where needed. # eg: -# repo_basedir="/var/lib/repos" +# repo_basedir="/var/db/repos" # repo_name="gentoo" # -repo_basedir="/usr" -repo_name="portage" -target_distdir="/usr/portage/distfiles" -target_pkgdir="/usr/portage/packages" +repo_basedir="/var/db/repos" +repo_name="gentoo" +target_distdir="/var/cache/distfiles" +target_pkgdir="/var/cache/binpkgs" # sharedir specifies where all of the catalyst runtime executables # and other shared lib objects are. |