From fbd249636f43493fa97bc8a743cedf6b7502be3a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?coadde=20=5BM=C3=A1rcio=20Alexandre=20Silva=20Delgado=5D?= Date: Sat, 22 Aug 2015 15:09:24 -0300 Subject: add initial configurations --- config | 65 +++++++++++++++++++---------------------------- config_abslibre_gnu+hurd | 39 ++++++++++++++++++++++++++++ config_abslibre_gnu+linux | 39 ++++++++++++++++++++++++++++ config_gnu+hurd | 35 +++++++++++++++++++++++++ config_gnu+linux | 35 +++++++++++++++++++++++++ 5 files changed, 174 insertions(+), 39 deletions(-) create mode 100644 config_abslibre_gnu+hurd create mode 100644 config_abslibre_gnu+linux create mode 100644 config_gnu+hurd create mode 100644 config_gnu+linux diff --git a/config b/config index be502cb..8dbf8fc 100644 --- a/config +++ b/config @@ -1,57 +1,44 @@ #!/hint/bash -FTP_BASE="/srv/repo/main" - -# Repos from Arch -ARCHREPOS=('core' 'testing' 'extra' 'community' 'multilib' 'multilib-testing') -# Official Parabola repos -OURREPOS=('libre' 'libre-testing' 'libre-multilib' 'libre-multilib-testing') -# User repos -USERREPOS=('~smv' '~xihh' '~brendan' '~lukeshu' '~emulatorman' '~aurelien' '~jorginho' '~coadde' '~drtan') -# Community project repos -PROJREPOS=('nonsystemd' 'nonsystemd-testing' 'nonprism' 'nonprism-testing' 'pcr' 'kernels' 'cross' 'java') -# Remote repos -PKGREPOS=("${ARCHREPOS[@]}" "${OURREPOS[@]}" "${USERREPOS[@]}" "${PROJREPOS[@]}") -PKGPOOL='pool/parabola' -SRCPOOL='sources/parabola' - -# Directories where packages are shared between repos -# *relative to FTP_BASE* -ARCHPKGPOOLS=(pool/{packages,community}) -OURPKGPOOLS=(pool/parabola) -PKGPOOLS=(${OURPKGPOOLS[@]} ${ARCHPKGPOOLS[@]}) -# Directories where sources are stored -ARCHSRCPOOLS=(sources/{packages,community}) -OURPKGPOOLS=(sources/parabola) -SRCPOOLS=(${OURSRCPOOLS[@]} ${ARCHSRCPOOLS[@]}) +FTP_BASE='/srv/repo/main' + +# Parabola Platforms +PLATFORMS=('ABSLibre_GNU/linux') # 'GNU/Hurd' 'GNU/Linux' 'ABSLibre_GNU/Hurd' + +# Parabola Software Development +PSD=('rolling' 'testing' 'stable') + +ROLLING_NAME='rolling' +TESTING_NAME='waterbird-v2' +STABLE_NAME='minicat-v1' + +PKG_POOL_DIR='pools' +SRC_POOL_DIR='sources' CLEANUP_DESTDIR="$FTP_BASE/old/packages" -CLEANUP_DRYRUN=false +CLEANUP_DRYRUN='false' # Time in days to keep moved packages -CLEANUP_KEEP=30 +CLEANUP_KEEP='30' SOURCE_CLEANUP_DESTDIR="$FTP_BASE/old/sources" -SOURCE_CLEANUP_DRYRUN=true +SOURCE_CLEANUP_DRYRUN='true' # Time in days to keep moved sourcepackages -SOURCE_CLEANUP_KEEP=30 +SOURCE_CLEANUP_KEEP='30' -REQUIRE_SIGNATURE=true +REQUIRE_SIGNATURE='true' -LOCK_DELAY=10 -LOCK_TIMEOUT=300 +LOCK_DELAY='10' +LOCK_TIMEOUT='300' [ -n "${STAGING:-}" ] || STAGING="$HOME/staging/unknown/staging" -TMPDIR="/tmp" -ARCHARCHES=(i686 x86_64) -OURARCHES=(armv7h) -ARCHES=(${ARCHARCHES[@]} ${OURARCHES[@]}) -DBEXT=".db.tar.gz" -FILESEXT=".files.tar.gz" +TMPDIR='/tmp' +DBEXT='.db.tar.gz' +FILESEXT='.files.tar.gz' PKGEXT=".pkg.tar.?z" -SRCEXT=".src.tar.gz" +SRCEXT='.src.tar.gz' MAKEPKGCONF="~/.makepkg.conf" BLACKLIST_FILE="$HOME/blacklist/blacklist.txt" # parabolaweb root -WEB_DIR=/srv/http/parabolagnulinux.org/web +WEB_DIR='/srv/http/www.parabola.nu/web' diff --git a/config_abslibre_gnu+hurd b/config_abslibre_gnu+hurd new file mode 100644 index 0000000..90b412e --- /dev/null +++ b/config_abslibre_gnu+hurd @@ -0,0 +1,39 @@ +#!/hint/bash + +# Parabola GNU/Hurd configuration with Arch GNU/Hurd derivation + +# Archictectures +ARCHES=('i686') + +# Multilib Support +MULTILIB=() + +# Main Repositories from Arch GNU/Linux +MAIN_REPOS=('core' 'extra' 'testing' 'staging-core' 'staging-extra') +# 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 +PATFORM_REPOS=() + +# 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+hurd' + +# Directories where sources are stored +SRC_POOL='abslibre_gnu+hurd' diff --git a/config_abslibre_gnu+linux b/config_abslibre_gnu+linux new file mode 100644 index 0000000..e157b9c --- /dev/null +++ b/config_abslibre_gnu+linux @@ -0,0 +1,39 @@ +#!/hint/bash + +# Parabola GNU/Linux-libre configuration with Arch GNU/Linux derivation + +# Archictectures +ARCHES=('i686' 'x86_64') + +# Multilib Support +MULTILIB=('x86_64') + +# 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 +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' + +# Directories where sources are stored +SRC_POOL='abslibre_gnu+linux' diff --git a/config_gnu+hurd b/config_gnu+hurd new file mode 100644 index 0000000..45ee43f --- /dev/null +++ b/config_gnu+hurd @@ -0,0 +1,35 @@ +#!/hint/bash + +# Parabola GNU/Hurd configuration without any distribution derivation + +# Archictectures +ARCHES=('i686') + +# Multilib Support +MULTILIB=() + +# Main Repositories +MAIN_REPOS=('core' 'extra' 'testing') + +# Multilib Repositories +MULTILIB_REPOS=('multilib' '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=() + +# Remote Repositories +PKG_ANY_REPOS=("${EXTRA_REPOS[@]}" "${PATFORM_REPOS[@]}" "${MAIN_REPOS[@]}" "${COMMUNITY_REPOS[@]}") +PKG_MULTILIB_REPOS=("${EXTRA_REPOS[@]}" "${PATFORM_REPOS[@]}" "${MAIN_REPOS[@]}" "${MULTILIB_REPOS[@]}" "${COMMUNITY_REPOS[@]}") + +# Directories where packages are shared between repos +# *relative to FTP_BASE* +PKG_POOL='gnu+hurd' + +# Directories where sources are stored +SRC_POOL='gnu+hurd' diff --git a/config_gnu+linux b/config_gnu+linux new file mode 100644 index 0000000..479061c --- /dev/null +++ b/config_gnu+linux @@ -0,0 +1,35 @@ +#!/hint/bash + +# Parabola GNU/Linux-libre configuration without any distribution derivation + +# Archictectures +ARCHES=('i686' 'x86_64') + +# Multilib Support +MULTILIB=('x86_64') + +# Main Repositories +MAIN_REPOS=('core' 'extra' 'testing') + +# Multilib Repositories +MULTILIB_REPOS=('multilib' '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=() + +# Remote Repositories +PKG_ANY_REPOS=("${EXTRA_REPOS[@]}" "${PATFORM_REPOS[@]}" "${MAIN_REPOS[@]}" "${COMMUNITY_REPOS[@]}") +PKG_MULTILIB_REPOS=("${EXTRA_REPOS[@]}" "${PATFORM_REPOS[@]}" "${MAIN_REPOS[@]}" "${MULTILIB_REPOS[@]}" "${COMMUNITY_REPOS[@]}") + +# Directories where packages are shared between repos +# *relative to FTP_BASE* +PKG_POOL='gnu+linux' + +# Directories where sources are stored +SRC_POOL='gnu+linux' -- cgit v1.2.3