diff options
Diffstat (limited to 'config_abslibre_gnu+linux_arm')
-rw-r--r-- | config_abslibre_gnu+linux_arm | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/config_abslibre_gnu+linux_arm b/config_abslibre_gnu+linux_arm new file mode 100644 index 0000000..7c76002 --- /dev/null +++ b/config_abslibre_gnu+linux_arm @@ -0,0 +1,55 @@ +#!/hint/bash + +. ./config + +# Parabola GNU/Linux-libre configuration with Arch GNU/Linux ARM derivation +DERIVATION='true' + +# Archictectures +ARCHES=('arm' 'armv6h' 'armv7h' 'aarch64') + +# Multilib Support +MULTILIB=() + +# Main Repositories from Arch GNU/Linux ARM +MAIN_REPOS=('core' 'extra' 'community' 'aur' 'alarm') +# Libre Repositories from Parabola GNU/Linux-libre +LIBRE_MAIN_REPOS=('libre' 'libre-testing') + +# Multilib Repositories from Arch GNU/Linux ARM +MULTILIB_REPOS=('multilib') +# 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 +PATFORM_REPOS=('nonsystemd' 'nonsystemd-testing') + +# Remote Repositories +PKG_ANY_REPOS=("${EXTRA_REPOS[@]}" "${PATFORM_REPOS[@]}" "${LIBRE_MAIN_REPOS[@]}" "${MAIN_REPOS[@]}" "${COMMUNITY_REPOS[@]}") +PKG_MULTILIB_REPOS=("${EXTRA_REPOS[@]}" "${PATFORM_REPOS[@]}" "${LIBRE_MAIN_REPOS[@]}" "${MAIN_REPOS[@]}" "${LIBRE_MULTILIB_REPOS[@]}" "${MULTILIB_REPOS[@]}" "${COMMUNITY_REPOS[@]}") + +# Directories where packages are shared between repos +# *relative to FTP_BASE* +PKG_POOL='abslibre_gnu+linux_arm' + +# Directories where sources are stored +SRC_POOL='abslibre_gnu+linux_arm' + +# Build System and Repository scripts +BS_MAIN_NAME='abslibre_gnu+linux_arm' +BS_MAIN_DIR="${SRV_DIR}/${BS_MAIN_NAME}" +BS_DERIVATION_NAME='abs_gnu+linux_arm' +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_gnu+linux_arm.txt' +BLACKLIST_FILE="${HOME}/blacklist/${BLACKLIST_NAME}.txt" +BLACKLIST_TMP="${TMP_DIR}/${BLACKLIST_NAME}.txt" +SYNC_DERIVATION_SERVER='rsync.archlinuxarm.org' |