summaryrefslogtreecommitdiff
path: root/db-functions
diff options
context:
space:
mode:
authorParabola <parabolavnx@lions.dreamhost.com>2011-02-20 17:12:07 -0800
committerParabola <parabolavnx@lions.dreamhost.com>2011-02-20 17:12:07 -0800
commit6b52145fff48af649956cb5be145dff157d3ca58 (patch)
tree2335c04a1ca4e86a6f76ae5923d89cf367a93ad1 /db-functions
parentc6516eca2803b780a01a6b2bf3e081c8bd570301 (diff)
parent0162a16595059e269ba2d7b47e69212bc2ab1336 (diff)
Merge branch 'master' of http://projects.parabolagnulinux.org/dbscripts
Conflicts: db-functions
Diffstat (limited to 'db-functions')
-rw-r--r--db-functions20
1 files changed, 5 insertions, 15 deletions
diff --git a/db-functions b/db-functions
index e790fb6..e2731cb 100644
--- a/db-functions
+++ b/db-functions
@@ -1,5 +1,7 @@
#!/bin/bash
+. config
+
# Some PKGBUILDs need CARCH to be set
CARCH="x86_64"
@@ -16,7 +18,7 @@ restore_umask () {
}
# set up general environment
-WORKDIR=$(mktemp -d /home/parabolavnx/tmp/$(basename $0).XXXXXXXXXX)
+WORKDIR=$(mktemp -d ${TMPDIR}/$(basename $0).XXXXXXXXXX)
LOCKS=()
# check if messages are to be printed using color
@@ -359,26 +361,14 @@ check_splitpkgs() {
if [ ! -f "${WORKDIR}/pkgbuilds/${repo}-${_pkgarch}/${_pkgbase}" ]; then
mkdir -p "${WORKDIR}/pkgbuilds/${repo}-${_pkgarch}"
-# Decide whether to look for PKGBUILD on [libre] or [libre-testing]
- case $repo in
- testing)
- altrepo=libre-testing
- ;;
- *)
- altrepo=libre
- ;;
- esac
-
cp -r ${SVNREPO}/$repo/$_pkgbase/PKGBUILD "${WORKDIR}/pkgbuilds/${repo}-${_pkgarch}/${_pkgbase}" >/dev/null 2>&1 || \
- cp -r ${SVNREPO}/$altrepo/$_pkgbase/PKGBUILD "${WORKDIR}/pkgbuilds/${repo}-${_pkgarch}/$_pkgbase">/dev/null 2>&1
+ cp -r ${SVNREPO}/libre/$_pkgbase/PKGBUILD "${WORKDIR}/pkgbuilds/${repo}-${_pkgarch}/${_pkgbase}" >/dev/null 2>&1 || \
+ cp -r ${SVNREPO}/libre-testing/$_pkgbase/PKGBUILD "${WORKDIR}/pkgbuilds/${repo}-${_pkgarch}/$_pkgbase">/dev/null 2>&1
[[ $? -ge 1 ]] && {
echo "Failed $_pkgbase-$_pkgver-$_pkgarch"
return 1
}
-
- sleep 20s
-
fi
local svnnames=($(. "${WORKDIR}/pkgbuilds/${repo}-${_pkgarch}/${_pkgbase}"; echo ${pkgname[@]}))