From 7623cce199104b5a79ff30b2e9451e6660e82544 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?coadde=20=5BM=C3=A1rcio=20Alexandre=20Silva=20Delgado=5D?= Date: Wed, 26 Aug 2015 19:32:59 -0300 Subject: import db-functions, merge main.cfg with xbs.cfg and fix some variables --- src/etc/xbs.cfg | 41 +++++++++++++++++++++++++++++++++++++++-- 1 file changed, 39 insertions(+), 2 deletions(-) (limited to 'src/etc/xbs.cfg') diff --git a/src/etc/xbs.cfg b/src/etc/xbs.cfg index 46854ef..2920dce 100644 --- a/src/etc/xbs.cfg +++ b/src/etc/xbs.cfg @@ -1,6 +1,43 @@ #!/bin/bash -# Platforms Distributions -ND_PLATFORMS=('gnu+linux_nd') # 'gnu+hurd_d' +# [ Native || Derivative ] Distribution Platforms +ND_PLATFORMS=('gnu+linux_nd') # 'gnu+hurd_nd' DD_PLATFORMS=('gnu+linux_dd' 'gnu+linux-arm_dd') # 'gnu+hurd_dd' PLATFORMS=("${ND_PLATFORMS[@]}" "${DD_PLATFORMS[@]}") + +# Software Development Distributions +SDD=('rolling' 'testing' 'stable') + +ROLLING_NAME='rolling' +TESTING_NAME='waterbird-v2' +STABLE_NAME='minicat-v1' + +PKG_POOL_DIR='pools' +SRC_POOL_DIR='sources' + +SHARE_DIR="$(dirname "$(readlink -e "$0")")/share/xbs" + +SRV_DIR='/srv' +TMP_DIR='/tmp' +PKG_POOL_DIR='pools' +SRC_POOL_DIR='sources' +GIT_BASE="${SRV_DIR}/git" +SYNC_ARGS='-mrtv --no-motd --delete-after --no-p --no-o --no-g --quiet' + +REQUIRE_SIGNATURE='true' + +LOCK_DELAY='10' +LOCK_TIMEOUT='300' + +[ -n "${STAGING:-}" ] || STAGING="${HOME}/staging/unknown/staging" +DB_EXT='.db.tar.gz' +FILES_EXT='.files.tar.gz' +PKG_EXT=".pkg.tar.?z" +SRC_EXT='.src.tar.gz' + +MIRROR_LIST='/etc/pacman.d/mirrorlist' +MAKEPKG_CONF='/etc/makepkg.conf' +MAKEPKG_ARCH="$(uname -m)" + +# web root +WEB_DIR="${SRV_DIR}/http/www.parabola.nu/web" -- cgit v1.2.3-2-g168b