spacepaste

  1.  
  2. # /etc/catalyst/catalyst.conf
  3. # Simple desriptions of catalyst settings. Please refer to the online
  4. # documentation for more information.
  5. # Creates a .DIGESTS file containing the hash output from any of the supported
  6. # options below. Adding them all may take a long time.
  7. # Supported hashes:
  8. # adler32, crc32, crc32b, gost, haval128, haval160, haval192, haval224,
  9. # haval256, md2, md4, md5, ripemd128, ripemd160, ripemd256, ripemd320, sha1,
  10. # sha224, sha256, sha384, sha512, snefru128, snefru256, tiger, tiger128,
  11. # tiger160, whirlpool
  12. digests="md5 sha1 sha512 whirlpool"
  13. # Creates a .CONTENTS file listing the contents of the file. Pick from any of
  14. # the supported options below:
  15. # auto - strongly recommended
  16. # tar-tv - does 'tar tvf FILE'
  17. # tar-tvz - does 'tar tvzf FILE'
  18. # tar-tvy - does 'tar tvyf FILE'
  19. # isoinfo-l - does 'isoinfo -l -i FILE'
  20. # isoinfo-f - does 'isoinfo -f -i FILE'
  21. # 'isoinfo-f' is the only option not chosen by the automatic algorithm.
  22. # If this variable is empty, no .CONTENTS will be generated at all.
  23. contents="auto"
  24. # distdir specifies where your distfiles are located. This setting should
  25. # work fine for most default installations.
  26. distdir="/usr/portage/distfiles"
  27. # envscript allows users to set options such as http proxies, MAKEOPTS,
  28. # GENTOO_MIRRORS, or any other environment variables needed for building.
  29. # The envscript file sets environment variables like so:
  30. # export FOO="bar"
  31. envscript="/etc/catalyst/catalystrc"
  32. # Internal hash function catalyst should use for things like autoresume,
  33. # seedcache, etc. The default and fastest is crc32. You should not ever need
  34. # to change this unless your OS does not support it.
  35. # Supported hashes:
  36. # adler32, crc32, crc32b, gost, haval128, haval160, haval192, haval224,
  37. # haval256, md2, md4, md5, ripemd128, ripemd160, ripemd256, ripemd320, sha1,
  38. # sha224, sha256, sha384, sha512, snefru128, snefru256, tiger, tiger128,
  39. # tiger160, whirlpool
  40. hash_function="crc32"
  41. # options set different build-time options for catalyst. Some examples are:
  42. # autoresume = Attempt to resume a failed build, clear the autoresume flags with
  43. # the -a option to the catalyst cmdline. -p will clear the autoresume flags
  44. # as well as your pkgcache and kerncache
  45. # ( This option is not fully tested, bug reports welcome )
  46. # bindist = enables the bindist USE flag, please see package specific definition,
  47. # however, it is suggested to enable this if redistributing builds.
  48. # ccache = enables build time ccache support
  49. # distcc = enable distcc support for building. You have to set distcc_hosts in
  50. # your spec file.
  51. # icecream = enables icecream compiler cluster support for building
  52. # kerncache = keeps a tbz2 of your built kernel and modules (useful if your
  53. # build stops in livecd-stage2)
  54. # pkgcache = keeps a tbz2 of every built package (useful if your build stops
  55. # prematurely)
  56. # preserve_libs = enables portage to preserve used libs when unmerging packages
  57. # (used on installcd-stage2 and stage4 targets)
  58. # seedcache = use the build output of a previous target if it exists to speed up
  59. # the copy
  60. # snapcache = cache the snapshot so that it can be bind-mounted into the chroot.
  61. # WARNING: moving parts of the portage tree from within fsscript *will* break
  62. # your cache. The cache is unlinked before any empty or rm processing, though.
  63. #
  64. # (These options can be used together)
  65. options="autoresume bindist kerncache pkgcache seedcache snapcache"
  66. # portdir specifies the source portage tree used by the snapshot target.
  67. portdir="/usr/portage"
  68. # sharedir specifies where all of the catalyst runtime executables are. Most
  69. # users do not need to change this.
  70. sharedir="/usr/lib64/catalyst"
  71. # snapshot_cache specifies where the snapshots will be cached to if snapcache is
  72. # enabled in the options.
  73. snapshot_cache="/var/tmp/catalyst/snapshot_cache"
  74. # storedir specifies where catalyst will store everything that it builds, and
  75. # also where it will put its temporary files and caches.
  76. storedir="/var/tmp/catalyst"
  77. # port_logdir is where all build logs will be kept. This dir will be automatically cleaned
  78. # of all logs over 30 days old. If left undefined the logs will remain in the build directory
  79. # as usual and get cleaned every time a stage build is restarted.
  80. # port_logdir="/var/tmp/catalyst/tmp"
  81. # var_tmpfs_portage will mount a tmpfs for /var/tmp/portage so building takes place in RAM
  82. # this feature requires a pretty large tmpfs ({open,libre}office needs ~8GB to build)
  83. # WARNING: If you use too much RAM everything will fail horribly and it is not our fault.
  84. # set size of /var/tmp/portage tmpfs in gigabytes
  85. # var_tmpfs_portage=16
  86.