blob: 7f75fe8fcbc8c90b9e92f4f63196fc801ff5614f (
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
97
98
99
100
101
102
103
|
#!/bin/bash
if [ $# -ne 3 ]; then
echo "usage: $(basename $0) <packagename> <repo> <arch>"
exit 1
fi
. "$(dirname $0)/../db-functions"
source_makepkg
packagename="$1"
reponame="$2"
arch="$3"
##### Arch specific stuff. TODO make this configurable #####
srcpath="/home/ftp/sources/"
svnpath="file:///home/svn-packages/$packagename/"
############################################################
WORKDIR="/tmp/make-sourceball.$packagename.$UID"
cleanup() {
# unlock
rm -rf "$WORKDIR"
[ "$1" ] && exit $1
}
ctrl_c() {
echo "Interrupted" >&2
cleanup 0
}
die() {
echo "$*" >&2
cleanup 1
}
create_srcpackage() {
if [ -d "$1" ]; then
pushd "$1" >/dev/null
. "$BUILDSCRIPT"
if ! /usr/bin/makepkg --allsource >/dev/null 2>&1; then
popd >/dev/null
return 1
fi
popd >/dev/null
local pkg_file="${pkgname}-${pkgver}-${pkgrel}${SRCEXT}"
echo ":: Source package complete: $pkg_file"
if [ ! -d "$srcpath" ]; then
mkdir -p "$srcpath"
fi
#Remove old sourceballs
for pkg in "$srcpath/$pkgname-*"; do
pkg="$(basename $pkg)"
if "$(getpkgname $pkg)" == "$pkgname" ]; then
rm -f "$srcpath/$pkg"
fi
done
cp $pkg_file "$srcpath"
return 0
fi
}
trap ctrl_c 2
trap cleanup 0 1
/bin/mkdir -p "$WORKDIR"
cd "$WORKDIR"
echo "Creating Source tarball for $packagename ($reponame-$arch)"
if /usr/bin/svn export -q "$svnpath/repos/$reponame-$arch" $packagename; then
create_srcpackage "$packagename"
if [ $? -eq 0 ]; then
exit 0
elif [ $? -eq 1 ]; then
#trunk sometimes has updated URLs
echo ":: Failed to download source, attempting trunk build"
rm -rf "$packagename"
if /usr/bin/svn export -q "$svnpath/trunk" "$packagename"; then
create_srcpackage "$packagename"
if [ $? -eq 0 ]; then
echo ":: Source package complete: $pkg_file"
exit 0
elif [ $? -eq 1 ]; then
die ":: Failed to download source"
elif [ $? -eq 2 ]; then
die ":: Failed to compress package"
else
die ":: Unknown failure reason"
fi
fi
exit 1
elif [ $? -eq 2 ]; then
die ":: Failed to compress package"
fi
else
die "Package '$packagename' does not exist in repo $reponame-$arch"
fi
|