summaryrefslogtreecommitdiff
path: root/src/etc/xbs.d/gnu+linux_rolling.cfg
blob: c09bb9a2de5c7532029c3a4ddb8180b11872b793 (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#!/bin/bash

# Platform Distribution
PLATFORM_NAME='GNU/Linux-libre'
PLATFORM='gnu+linux'

# Software Development Distributions
SDD_NAME='Rolling Release' # rolling-release
SDD='rolling-release'

# Multilib Support Archictectures
MULTILIB_ARCHES=() # 'x86_64'

# Archictectures
ARCHES=('mips64el' "${MULTILIB_ARCHES[@]}") # 'i686'

# Main Repositories
MAIN_REPOS=('core' 'extra' 'firmwares' 'interpretes' 'testing')
# Main Repositories from a Derative Distribution
DD_REPOS=()

# Multilib Repositories
MAIN_MULTILIB_REPOS=('multilib' 'multilib-testing')
# Multilib Repositories from a Derative Distribution
DD_MULTILIB_REPOS=()

# Extra Repositories
EXTRA_REPOS=('nonprism' 'nonprism-testing' 'kernels' 'kernels-testing' 'cross')

# Community Repositories
COMMUNITY_REPOS=('pcr' 'pcr-testing' 'pur' '~aurelien' '~brendan' '~coadde' '~drtan' '~emulatorman' '~jorginho' '~lukeshu' '~smv' '~xihh')

# Platform Repositories
PLATFORM_REPOS=()

# Remote Repositories
PKG_REPOS=("${EXTRA_REPOS[@]}" "${PLATFORM_REPOS[@]}" "${MAIN_REPOS[@]}" "${DD_REPOS[@]}" "${COMMUNITY_REPOS[@]}")
PKG_MULTILIB_REPOS=("${MAIN_MULTILIB_REPOS[@]}" "${DD_MULTILIB_REPOS[@]}")

# Base Repository
REPO_DIR="${ROOT_DIR}/${PLATFORM}_${SDD}"

# Directories where packages are shared between repos
PKG_MAIN_POOLS=("${REPO_DIR}/pools/parabola")
PKG_DD_POOLS=()
PKG_POOLS=("${PKG_MAIN_POOLS[@]}" "${PKG_DD_POOLS[@]}")

# Directories where sources are stored
SRC_MAIN_POOLS=("${REPO_DIR}/sources/parabola")
SRC_DD_POOLS=()
SRC_POOLS=("${SRC_MAIN_POOLS[@]}" "${SRC_DD_POOLS[@]}")

# Build System and Repository scripts
BS_MAIN_NAME='pbs'
BS_MAIN_DIR="${SRV_DIR}/${BS_MAIN_NAME}/${SDD}_${PLATFORM}"
BS_DD_NAME=
BS_DD_DIR=
BS_GIT="${GIT_DIR}/${BS_MAIN_NAME}/pmr.git" # [ ${GIT_BASE} || http://projects.parabola.gnu ]
BS_GIT_TMP="${TMP_DIR}/${BS_MAIN_NAME}/${SDD}_${PLATFORM}"
BLACKLIST_NAME=
BLACKLIST_FILE=
BLACKLIST_TMP=
SYNC_DD_SERVER=

CLEANUP_DESTDIR="${REPO_DIR}/old/packages"
CLEANUP_DRYRUN='false'
# Time in days to keep moved packages
CLEANUP_KEEP='30'

SOURCE_CLEANUP_DESTDIR="${REPO_DIR}/old/sources"
SOURCE_CLEANUP_DRYRUN='true'
# Time in days to keep moved sourcepackages
SOURCE_CLEANUP_KEEP='30'