summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcoadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu>2015-08-26 01:10:16 -0300
committercoadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu>2015-08-26 01:10:16 -0300
commitf17c9169de91036cd4b9bb725d2cc6713ad06ce5 (patch)
treebdd6799c7e9f7d08b7b29b7a0dc7b9173a53e31f
parenta3601eb4037238761908d8c72a8cfa8dd81f2b6c (diff)
add config_abslibre_gnu+linux_legacy file
-rw-r--r--config_abslibre_gnu+linux_legacy69
1 files changed, 69 insertions, 0 deletions
diff --git a/config_abslibre_gnu+linux_legacy b/config_abslibre_gnu+linux_legacy
new file mode 100644
index 0000000..e9b0492
--- /dev/null
+++ b/config_abslibre_gnu+linux_legacy
@@ -0,0 +1,69 @@
+#!/hint/bash
+
+source "$(dirname "$(readlink -e "$0")")/config"
+
+# Parabola Platform
+PLATFORM_NAME='GNU/Linux-libre'
+PLATFORM='gnu+linux'
+
+# Multilib Support Archictectures
+MULTILIB_ARCHES=('x86_64')
+
+# Archictectures
+ARCHES=('i686' "${MULTILIB_ARCHES[@]}")
+
+# Main Repositories from Arch GNU/Linux
+MAIN_REPOS=('core' 'extra' 'testing' 'community' 'community-testing')
+# Libre Repositories from Parabola GNU/Linux-libre
+LIBRE_MAIN_REPOS=('libre' 'libre-testing')
+
+# Multilib Repositories from Arch GNU/Linux
+MULTILIB_REPOS=('multilib' 'multilib-testing')
+# Libre Multilib Repositories from Parabola GNU/Linux-libre
+LIBRE_MULTILIB_REPOS=('libre-multilib' 'libre-multilib-testing')
+
+# Extra Repositories
+EXTRA_REPOS=('nonprism' 'nonprism-testing' 'kernels' 'kernels-testing' 'cross' 'java')
+
+# Community Repositories
+COMMUNITY_REPOS=('pcr' 'pcr-testing' 'pur' '~aurelien' '~brendan' '~coadde' '~drtan' '~emulatorman' '~jorginho' '~lukeshu' '~smv' '~xihh')
+
+# Platform Repositories
+PLATFORM_REPOS=('nonsystemd' 'nonsystemd-testing')
+
+# Remote Repositories
+PKG_REPOS=("${EXTRA_REPOS[@]}" "${PLATFORM_REPOS[@]}" "${LIBRE_MAIN_REPOS[@]}" "${MAIN_REPOS[@]}" "${COMMUNITY_REPOS[@]}")
+PKG_MULTILIB_REPOS=("${LIBRE_MULTILIB_REPOS[@]}" "${MULTILIB_REPOS[@]}")
+
+# Directories where packages are shared between repos
+# *relative to REPO_DIR*
+PKG_POOL="pool/parabola"
+
+# Directories where sources are stored
+SRC_POOL="sources/parabola"
+
+# Build System and Repository scripts
+BS_MAIN_NAME="abslibre"
+BS_MAIN_DIR="${SRV_DIR}/${BS_MAIN_NAME}"
+BS_DERIVATION_NAME="abs"
+BS_DERIVATION_DIR="${SRV_DIR}/${BS_DERIVATION_NAME}"
+BS_GIT="${GIT_BASE}/abslibre/${BS_MAIN_NAME}.git"
+# BS_GIT='http://projects.parabola.gnu/abslibre/${BS_MAIN_NAME}.git'
+BS_GIT_TMP="${TMP_DIR}/${BS_MAIN_NAME}"
+BLACKLIST_NAME="blacklist.txt"
+BLACKLIST_FILE="${HOME}/blacklist/${BLACKLIST_NAME}.txt"
+BLACKLIST_TMP="${TMP_DIR}/${BLACKLIST_NAME}.txt"
+SYNC_DERIVATION_SERVER='rsync.archlinux.org'
+
+# Base Repository
+REPO_DIR="${SRV_DIR}/repo/main"
+
+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'