blob: ec56c65f6c2a569e104d73d4481c789420e5101d (
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
|
#!/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' 'pcr' 'kernels' 'cross' 'java')
PKGPOOL='pool/parabola_gnu+linux'
SRCPOOL='src/parabola_gnu+linux'
# Directories where packages are shared between repos
# *relative to FTP_BASE*
PKGPOOLS=(pool/parabola_gnu+linux # Parabola GNU/Linux-libre
pool/arch_gnu+linux_arm # Arch Linux ARM
pool/{packages,community} # Arch Linux
)
# Directories where sources are stored
SRCPOOLS=(src/parabola_gnu+linux # Parabola GNU/Linux-libre
src/arch_gnu+linux_arm # Arch Linux ARM
sources/{packages,community} # Arch Linux
)
CLEANUP_DESTDIR="$FTP_BASE/old/pkg"
CLEANUP_DRYRUN=false
# Time in days to keep moved packages
CLEANUP_KEEP=30
SOURCE_CLEANUP_DESTDIR="$FTP_BASE/old/src"
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"
|