blob: 37141c7113a06bde33db9b669d49be915adcd95a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
#!/bin/bash
if [ $# -ne 3 -a $# -ne 4 ]; then
echo "usage: $(basename $0) [-f] <packagename> <repo> <arch>"
echo " -f Force building. Skip license checks"
exit 1
fi
. "$(dirname $0)/../db-functions"
. "$(dirname $0)/../config"
FORCE=0
if [ "$1" = "-f" ]; then
FORCE=1
shift
fi
packagename="$1"
reponame="$2"
_arch="$3"
srcpath="$FTP_BASE/sources/"
logpath="/var/log/sourceballs/"
WORKDIR="/tmp/make-sourceball.$packagename.$UID"
cleanup() {
restore_umask
rm -rf "$WORKDIR"
[ "$1" ] && exit $1
}
ctrl_c() {
echo "Interrupted" >&2
cleanup 0
}
die() {
echo -e "$*" >&2
cleanup 1
}
create_srcpackage() {
if [ -d "$1" ]; then
pushd "$1" >/dev/null
. "$BUILDSCRIPT"
if ! [ $FORCE == 1 ] && ! chk_license ${license[@]} ; then
#Removed so as not to clutter failed.txt
#echo -e "\t$packagename license (${license[@]}) does not require source tarballs" >&2
cleanup 0
else
echo "Creating source tarball for $packagename-$pkgver-$pkgrel"
fi
local logfile="$logpath/$packagename"
if ! /usr/bin/makepkg --allsource --ignorearch >"$logfile" 2>&1; then
popd >/dev/null
/bin/gzip -f -9 "$logfile"
die "\tFailed to download source for $packagename-$pkgver-$pkgrel ($reponame-$_arch)"
fi
/bin/rm -f "$logfile"{,.gz}
local pkg_file="${packagename}-${pkgver}-${pkgrel}${SRCEXT}"
if [ ! -d "$srcpath" ]; then
mkdir -p "$srcpath"
fi
cp "$pkg_file" "$srcpath"
popd >/dev/null
return 0
fi
}
trap ctrl_c 2
trap cleanup 0 1
set_umask
/bin/mkdir -p "$WORKDIR"
/bin/mkdir -p "$logpath"
cd "$WORKDIR"
if [[ "$reponame" = "community" || "$reponame" = "community-testing" ]]; then
if /usr/bin/svn export -q "$SVNREPOCOMMUNITY/$packagename" $packagename; then
create_srcpackage "$packagename/repos/$reponame-$_arch"
else
die "\tPackage '$packagename' does not exist in repo '$reponame-$_arch'"
fi
else
if /usr/bin/svn export -q "$SVNREPO/$packagename" $packagename; then
create_srcpackage "$packagename/repos/$reponame-$_arch"
else
die "\tPackage '$packagename' does not exist in repo '$reponame-$_arch'"
fi
fi
|