blob: 3906f0b5cac520ec249fc2c524c61bcdac499826 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
# R overlay -- config file for testing/running without installation
DISTFILES = distfiles-root
OVERLAY_DIR = overlay-root
ECLASS = eclass/R-packages.eclass
DISTDIR = distfiles-root/ALL
# try hard links first, then fall back to symbolic ones
DISTDIR_STRATEGY = "hardlink symlink"
# write description data from R packages to a directory
DESCRIPTION_DIR = desc-files
# = logging =
LOG_LEVEL = INFO
LOG_CONSOLE = yes
LOG_LEVEL_CONSOLE = WARNING
LOG_FILE = log/roverlay.log
LOG_LEVEL_FILE = WARN
# this enables per-run log files
LOG_FILE_ROTATE = yes
# number of backup log files to keep
LOG_FILE_ROTATE_COUNT = 5
# log unresolvable dependencies into an extra file
LOG_FILE_UNRESOLVABLE = log/dep_unresolvable.log
# = misc =
# bandwidth limit for rsync (in kilobytes per second)
# RSYNC_BWLIMIT = 12000
# = extra config files =
# PACKAGE_RULES lists the per-package files that control package processing
# PACKAGE_RULES ::= "<file|dir>[ <file|dir>]"
PACKAGE_RULES="config/package_rules"
# SIMPLE_RULES_FILE lists the rule files for dependency resolution
# SIMPLE_RULES_FILE ::= "<file>[ <file>]"
SIMPLE_RULES_FILE = "config/simple-deprules.d"
# the repo config file, this can also be a whitespace-separated list of files
# REPO_CONFIG ::= "<file>[ <file>]"
REPO_CONFIG = config/repo.list
# the field definition file that controls how R packages are read
FIELD_DEFINITION = config/description_fields.conf
|