Advertisement
Necrose99

catalyst-vanilla--9999.conf

Oct 24th, 2017
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.84 KB | None | 0 0
  1. # /etc/catalyst/catalyst.conf
  2.  
  3. # Simple descriptions of catalyst settings. Please refer to the online
  4. # documentation for more information.
  5.  
  6. # Creates a .DIGESTS file containing the hash output from any of the supported
  7. # options below. Adding them all may take a long time on slower systems. The
  8. # special "auto" keyword will skip digests that the system does not support,
  9. # and if it's the only keyword given, will default to enabling all digests.
  10. # Supported hashes:
  11. # adler32, crc32, crc32b, gost, haval128, haval160, haval192, haval224,
  12. # haval256, md2, md4, md5, ripemd128, ripemd160, ripemd256, ripemd320, sha1,
  13. # sha224, sha256, sha384, sha512, snefru128, snefru256, tiger, tiger128,
  14. # tiger160, whirlpool
  15. digests="sha512 whirlpool"
  16.  
  17. # Creates a .CONTENTS file listing the contents of the file. Pick from any of
  18. # the supported options below:
  19. # auto - strongly recommended
  20. # tar_tv - does 'tar tvf FILE'
  21. # tar_tvz - does 'tar tvzf FILE'
  22. # tar_tvy - does 'tar tvyf FILE'
  23. # isoinfo_l - does 'isoinfo -l -i FILE'
  24. # isoinfo_f - does 'isoinfo -f -i FILE'
  25. # 'isoinfo_f' is the only option not chosen by the automatic algorithm.
  26. # If this variable is empty, no .CONTENTS will be generated at all.
  27. contents="auto"
  28.  
  29. # distdir specifies where your distfiles are located. This setting should
  30. # work fine for most default installations.
  31. distdir="/usr/portage/distfiles"
  32.  
  33. # envscript allows users to set options such as http proxies, MAKEOPTS,
  34. # GENTOO_MIRRORS, or any other environment variables needed for building.
  35. # The envscript file sets environment variables like so:
  36. # export FOO="bar"
  37. envscript="/etc/catalyst/catalystrc"
  38.  
  39. # Internal hash function catalyst should use for things like autoresume,
  40. # seedcache, etc. The default and fastest is crc32. You should not ever need
  41. # to change this unless your OS does not support it.
  42. # Supported hashes:
  43. # adler32, crc32, crc32b, gost, haval128, haval160, haval192, haval224,
  44. # haval256, md2, md4, md5, ripemd128, ripemd160, ripemd256, ripemd320, sha1,
  45. # sha224, sha256, sha384, sha512, snefru128, snefru256, tiger, tiger128,
  46. # tiger160, whirlpool
  47. hash_function="crc32"
  48.  
  49. # options set different build-time options for catalyst. Some examples are:
  50. # autoresume = Attempt to resume a failed build, clear the autoresume flags with
  51. # the -a option to the catalyst cmdline. -p will clear the autoresume flags
  52. # as well as your pkgcache and kerncache
  53. # ( This option is not fully tested, bug reports welcome )
  54. # bindist = enables the bindist USE flag, please see package specific definition,
  55. # however, it is suggested to enable this if redistributing builds.
  56. # ccache = enables build time ccache support
  57. # distcc = enable distcc support for building. You have to set distcc_hosts in
  58. # your spec file.
  59. # icecream = enables icecream compiler cluster support for building
  60. # keepwork = Prevents the removal of the working chroot path and any autoresume
  61. # files or points.
  62. # kerncache = keeps a tbz2 of your built kernel and modules (useful if your
  63. # build stops in livecd-stage2)
  64. # pkgcache = keeps a tbz2 of every built package (useful if your build stops
  65. # prematurely)
  66. # preserve_libs = enables portage to preserve used libs when unmerging packages
  67. # (used on installcd-stage2 and stage4 targets)
  68. # seedcache = use the build output of a previous target if it exists to speed up
  69. # the copy
  70. # snapcache = cache the snapshot so that it can be bind-mounted into the chroot.
  71. # WARNING: moving parts of the portage tree from within fsscript *will* break
  72. # your cache. The cache is unlinked before any empty or rm processing, though.
  73. #
  74. # (These options can be used together)
  75. options="autoresume bindist kerncache pkgcache seedcache snapcache"
  76.  
  77. # Source portdir specifies the source portage tree used by the snapshot target.
  78. portdir="/usr/portage"
  79.  
  80. # Target portdir setting. It needs to be in 2 parts.
  81. # They will be used separately, then added together where needed.
  82. # eg:
  83. # repo_basedir="/var/lib/repos"
  84. # repo_name="gentoo"
  85. #
  86. repo_basedir="/usr"
  87. repo_name="portage"
  88.  
  89. # sharedir specifies where all of the catalyst runtime executables
  90. # and other shared lib objects are.
  91. # Most users do not need to change this.
  92. sharedir="/usr/share/catalyst"
  93.  
  94. # shdir specifies where all of the catalyst runtime executables are.
  95. shdir="%(sharedir)s/targets"
  96.  
  97. # snapshot_cache specifies where the snapshots will be cached to if snapcache is
  98. # enabled in the options.
  99. snapshot_cache="/var/tmp/catalyst/snapshot_cache"
  100.  
  101. # storedir specifies where catalyst will store everything that it builds, and
  102. # also where it will put its temporary files and caches.
  103. storedir="/var/tmp/catalyst"
  104.  
  105. # source_matching specifies how catalyst will match non-specific file names
  106. # if the filename is not found as an exact match.
  107. # ie: a filename without the extension specified. "/path/to/foo"
  108. #
  109. # possible values are:
  110. # "strict" meaning if more than one file of that name is present with any
  111. # file extension, then it will raise an exception.
  112. # "loose" meaning it will search for an existing filename with an added
  113. # extension from an ordered list of extensions determined from the
  114. # decompressor_search_order specification in the spec file or (default)
  115. source_matching="strict"
  116.  
  117. # port_logdir is where all build logs will be kept. This dir will be automatically cleaned
  118. # of all logs over 30 days old. If left undefined the logs will remain in the build directory
  119. # as usual and get cleaned every time a stage build is restarted.
  120. # port_logdir="/var/tmp/catalyst/tmp"
  121.  
  122. # var_tmpfs_portage will mount a tmpfs for /var/tmp/portage so building takes place in RAM
  123. # this feature requires a pretty large tmpfs ({open,libre}office needs ~8GB to build)
  124. # WARNING: If you use too much RAM everything will fail horribly and it is not our fault.
  125. # set size of /var/tmp/portage tmpfs in gigabytes
  126. # var_tmpfs_portage=16
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement