summaryrefslogtreecommitdiff
path: root/config
blob: 9e3dc6b98ff7183e3dbd4143827c4877af203789 (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
#!/hint/bash
# Please try to refrain from adding new variables to this file.
# Instead, create separate ${toolname}.conf files.  Only add a
# variable here if multiple tools start needing the option.

FTP_BASE="/srv/repo/main"

PKGREPOS=(
	'core' 'testing' 'extra' 'community' 'multilib' 'multilib-testing'
	'libre' 'libre-testing' 'libre-multilib' 'libre-multilib-testing'
	'~smv' '~xihh' '~brendan' '~lukeshu' '~emulatorman' '~aurelien'
	'~jorginho' '~coadde' '~drtan' 'nonsystemd' 'nonsystemd-testing'
	'nonprism' 'nonprism-testing' 'nonprism-multilib'
	'nonprism-multilib-testing' 'pcr' 'pcr-testing' 'pcr-multilib'
	'pcr-multilib-testing' 'pcr-testing' 'kernels' 'kernels-testing'
	'cross' 'java' 'unmaintained' 'build-support')
PKGPOOL='pool/parabola'
SRCPOOL='sources/parabola'

CLEANUP_DESTDIR="/srv/repo/package-cleanup"
CLEANUP_DRYRUN=false
# Time in days to keep moved packages
CLEANUP_KEEP=30

SOURCE_CLEANUP_DESTDIR="/srv/repo/source-cleanup"
SOURCE_CLEANUP_DRYRUN=true
# Time in days to keep moved sourcepackages
SOURCE_CLEANUP_KEEP=30

LOCK_DELAY=10

[ -n "${STAGING:-}" ] || STAGING="$HOME/staging/unknown/staging"
TMPDIR="/tmp"
ARCHES=(x86_64 i686 armv7h)
DBEXT=".db.tar.gz"
FILESEXT=".files.tar.gz"
PKGEXT=".pkg.tar.?z"
SRCEXT=".src.tar.gz"

# Where to send error emails, and who they are from
LIST="maintenance@lists.parabola.nu"
FROM="repo@repo.parabola.nu"

# Override default config with config.local
LOCAL_CONFIG=${DBSCRIPTS_CONFIG:-"$(dirname ${BASH_SOURCE[0]})/config.local"}
if [[ -f "${LOCAL_CONFIG}" ]]; then . "${LOCAL_CONFIG}"; fi