blob: 36c0f9918619e7db993d69bd3c4548da2ef8ca21 (
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
|
#!/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')
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
REQUIRE_SIGNATURE=true
LOCK_DELAY=10
[ -n "${STAGING:-}" ] || STAGING="$HOME/staging/unknown/staging"
TMPDIR="/tmp"
ARCHES=(i686 x86_64 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"
|