aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndré Erdmann <dywi@mailerd.de>2012-07-05 17:51:40 +0200
committerAndré Erdmann <dywi@mailerd.de>2012-07-05 17:51:40 +0200
commit1bca2ba4460766fb4025a97fd249fb727db69918 (patch)
tree566983e1042dc014be678e86f5259d1754adb1a7 /roverlay/config/const.py
parentmain script: --print-config (diff)
downloadR_overlay-1bca2ba4460766fb4025a97fd249fb727db69918.tar.gz
R_overlay-1bca2ba4460766fb4025a97fd249fb727db69918.tar.bz2
R_overlay-1bca2ba4460766fb4025a97fd249fb727db69918.zip
config: entries for logging
modified: roverlay/config/const.py modified: roverlay/config/entrymap.py modified: roverlay/config/loader.py
Diffstat (limited to 'roverlay/config/const.py')
-rw-r--r--roverlay/config/const.py14
1 files changed, 8 insertions, 6 deletions
diff --git a/roverlay/config/const.py b/roverlay/config/const.py
index 80763ce..fed4a65 100644
--- a/roverlay/config/const.py
+++ b/roverlay/config/const.py
@@ -6,31 +6,33 @@ import copy
import time
_CONSTANTS = dict (
+ DEBUG = False,
+
+ # logging defaults are in recipe/easylogger
+
DESCRIPTION = dict (
field_separator = ':',
comment_chars = '#;',
list_split_regex = '\s*[,;]{1}\s*',
file_name = 'DESCRIPTION',
),
+
R_PACKAGE = dict (
suffix_regex = '[.](tgz|tbz2|tar|(tar[.](gz|bz2)))',
name_ver_separator = '_',
),
+
EBUILD = dict (
- # indent is currently not in use, FIXME
- #indent = '\t',
default_header = '\n'.join ( (
'# Copyright 1999-%i Gentoo Foundation' % ( time.gmtime() [0] ),
'# Distributed under the terms of the GNU General Public License v2',
'# $Header: $',
'',
'EAPI=4',
- '',
- # FIXME: don't include eclasses here, calculate their names
- # using OVERLAY.eclass_files
- 'inherit R-packages'
+ # inherit <eclasses> is no longer part of the default header
) ),
),
+
OVERLAY = dict (
category = 'sci-R',
),