Drop metadata_overlay support from catalyst - fixes bug 393659.
[catalyst.git] / files / catalyst.conf
index d95d62471673af824e401c95fc881ab60efccf35..f2d342e16b98bc775d359f43735c5b111a4f6f0c 100644 (file)
@@ -3,10 +3,47 @@
 # Simple desriptions of catalyst settings. Please refer to the online
 # documentation for more information.
 
+# Creates a .DIGESTS file containing the hash output from any of the supported
+# options below.  Adding them all may take a long time.
+# Supported hashes:
+# adler32, crc32, crc32b, gost, haval128, haval160, haval192, haval224,
+# haval256, md2, md4, md5, ripemd128, ripemd160, ripemd256, ripemd320, sha1,
+# sha224, sha256, sha384, sha512, snefru128, snefru256, tiger, tiger128,
+# tiger160, whirlpool
+digests="md5 sha1 sha512 whirlpool"
+
+# Creates a .CONTENTS file listing the contents of the file. Pick from any of
+# the supported options below:
+# auto         - strongly recommended
+# tar-tv       - does 'tar tvf FILE'
+# tar-tvz      - does 'tar tvzf FILE'
+# tar-tvy      - does 'tar tvyf FILE'
+# isoinfo-l    - does 'isoinfo -l -i FILE'
+# isoinfo-f    - does 'isoinfo -f -i FILE'
+# 'isoinfo-f' is the only option not chosen by the automatic algorithm.
+# If this variable is empty, no .CONTENTS will be generated at all.
+contents="auto"
+
 # distdir specifies where your distfiles are located. This setting should
 # work fine for most default installations.
 distdir="/usr/portage/distfiles"
 
+# envscript allows users to set options such as http proxies, MAKEOPTS,
+# GENTOO_MIRRORS, or any other environment variables needed for building.
+# The envscript file sets environment variables like so:
+# export FOO="bar"
+envscript="/etc/catalyst/catalystrc"
+
+# Internal hash function catalyst should use for things like autoresume, 
+# seedcache, etc.  The default and fastest is crc32.  You should not ever need
+# to change this unless your OS does not support it.
+# Supported hashes:
+# adler32, crc32, crc32b, gost, haval128, haval160, haval192, haval224,
+# haval256, md2, md4, md5, ripemd128, ripemd160, ripemd256, ripemd320, sha1,
+# sha224, sha256, sha384, sha512, snefru128, snefru256, tiger, tiger128,
+# tiger160, whirlpool
+hash_function="crc32"
+
 # options set different build-time options for catalyst. Some examples are:
 # autoresume = Attempt to resume a failed build, clear the autoresume flags with
 #      the -a option to the catalyst cmdline.  -p will clear the autoresume flags
@@ -15,10 +52,11 @@ distdir="/usr/portage/distfiles"
 # ccache = enables build time ccache support (highly recommended)
 # distcc = enable distcc support for building. You have to set distcc_hosts in
 #      your spec file.
-# pkgcache = keeps a tbz2 of every built package (useful if your build stops
-#      prematurely)
+# icecream = enables icecream compiler cluster support for building
 # kerncache = keeps a tbz2 of your built kernel and modules (useful if your
 #      build stops in livecd-stage2)
+# pkgcache = keeps a tbz2 of every built package (useful if your build stops
+#      prematurely)
 # seedcache = use the build output of a previous target if it exists to speed up
 #      the copy
 # snapcache = cache the snapshot so that it can be bind-mounted into the chroot.
@@ -28,37 +66,18 @@ distdir="/usr/portage/distfiles"
 # (These options can be used together)
 options="autoresume kerncache pkgcache seedcache snapcache"
 
+# portdir specifies the source portage tree used by the snapshot target.
+portdir="/usr/portage"
+
 # sharedir specifies where all of the catalyst runtime executables are. Most
 # users do not need to change this.
 sharedir="/usr/lib/catalyst"
 
-# storedir specifies where catalyst will store everything that it builds, and
-# also where it will put its temporary files and caches.
-storedir="/var/tmp/catalyst"
-
-# portdir specifies the source portage tree used by the snapshot target.
-# portdir="/usr/portage"
-
 # snapshot_cache specifies where the snapshots will be cached to if snapcache is
 # enabled in the options.
-# snapshot_cache="<path_to_new_cache_dir>"
-
-# Internal hash function catalyst should use for things like autoresume, 
-# seedcache, etc.  The default and fastest is crc32.  You should not ever need
-# to change this unless your OS does not support it.
-# Supported options: sha1, sha224, ripemd128, ripemd320, sha384, crc32,
-#      ripemd256, sha256, sha512, ripemd160, md5
-hash_function="crc32"
+snapshot_cache="/var/tmp/catalyst/snapshot_cache"
 
-# Creates a .digests file containing the hash output from any of the supported
-# options below.  Adding them all may take a long time.
-# Supported options: sha1, sha224, ripemd128, ripemd320, sha384, crc32,
-#      ripemd256, sha256, sha512, ripemd160, md5
-digests="md5 sha1"
-
-# envscript allows users to set options such as http proxies, MAKEOPTS,
-# GENTOO_MIRRORS, or any other environment variables needed for building.
-# The envscript file sets environment variables like so:
-# export FOO="bar"
+# storedir specifies where catalyst will store everything that it builds, and
+# also where it will put its temporary files and caches.
+storedir="/var/tmp/catalyst"
 
-#envscript="/root/.catalystrc"