# Hey emacs! This is a -*- Perl -*- script!
# config -- configuration file for Lintian reporting harness

$HOME = "/srv/lintian.debian.org";
$LINTIAN_ARCHIVEDIR = "/srv/ftp.debian.org/ftp";
$LINTIAN_MIRROR_NAME = "ftp-master.debian.org";
$LINTIAN_DIST = "sid";
$LINTIAN_AREA = "main";
$LINTIAN_ARCH = "i386";

$LINTIAN_ROOT = "$HOME/root";
$LINTIAN_LAB = "$HOME/laboratory";
$LOG_DIR = "$HOME/logs";
$HTML_DIR = "$HOME/www";
$HTML_TMP_DIR = "$HTML_DIR.new";
$HARNESS_STATE_DIR = "$HOME/harness-state";

# Link to the Lintian source code
$LINTIAN_SOURCE = "http://anonscm.debian.org/gitweb/?p=lintian/lintian.git";

$HISTORY = 0;
$HISTORY_DIR = "$HOME/history";

# Whether or not to create graphs from $HISTORY
#   Requires that $HISTORY is enabled.
$GRAPHS = 1;
# Make graphs of the data in the time interval
#   [today() - $GRAPHS_RANGE_DAYS ; now()]
$GRAPHS_RANGE_DAYS = 240;

# Extra options passed to Lintian
# - note that some options cannot/should be used
#   (e.g. --cfg will be ignored)
@EXTRA_LINTIAN_OPTIONS = ('-U', 'changelog-file');

$statistics_file = "$LOG_DIR/statistics";

1;
