blob: 760b041fae75a6c164dc2464ff2c5445af40ca89 (
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
|
#!/bin/sh
# Needs: build-essential fakeroot lsb-release svn [...]
# Static variables
PACKAGES="live-helper live-initramfs live-webhelper"
DEBEMAIL="debian-live-devel@lists.alioth.debian.org"
EMAIL="debian-live-devel@lists.alioth.debian.org"
DEBFULLNAME="Debian Live Autobuilder"
NAME="Debian Live Autobuilder"
export DEBEMAIL EMAIL DEBFULLNAME NAME
TEMPDIR="/srv/tmp/svn-snapshots"
SERVER="/srv/debian-unofficial/ftp/debian-live/debian-snapshots"
DATE_START="`date -R`"
# Checking lock file
if [ -f "${SERVER}"/Archive-Update-in-Progress ]
then
echo "E: locked."
exit 1
fi
# Creating server directory
if [ ! -d "${SERVER}" ]
then
mkdir -p "${SERVER}"
fi
# Creating lock trap
trap "test -f ${SERVER}/Archive-Update-in-Progress && rm -f ${SERVER}/Archive-Update-in-Progress; exit 0" 0 1 2 3 9 15
# Creating lock file
echo "${DATE_START}" > "${SERVER}"/Archive-Update-in-Progress
echo "`date +%b\ %d\ %H:%M:%S` ${HOSTNAME} live-helper: begin snapshot build." >> /var/log/live
# Processing packages
for PACKAGE in ${PACKAGES}
do
# Cleaning build directory
if [ -d "${TEMPDIR}" ]
then
rm -rf "${TEMPDIR}"
fi
# Creating build directory
mkdir -p "${TEMPDIR}"
# Getting sources
cd "${TEMPDIR}"
svn co svn://svn.debian.org/debian-live/dists/trunk/${PACKAGE} ${PACKAGE}
# Getting version
cd "${TEMPDIR}"/${PACKAGE}
VERSION="`dpkg-parsechangelog | awk '/Version:/ { print $2 }' | awk -F- '{ print $1 }'`"
# Getting revision
cd "${TEMPDIR}"/${PACKAGE}
REVISION="`svn info | awk '/Last Changed Rev:/ { print $4 }'`"
# Check for existing package
if [ ! -f "${SERVER}"/${PACKAGE}_${VERSION}~${REVISION}.dsc ] || [ "${1}" = "--force" ]
then
UPDATE_INDICES="true"
# Renaming directory
mv "${TEMPDIR}"/${PACKAGE} "${TEMPDIR}"/${PACKAGE}-${VERSION}~${REVISION}
# Building package
cd "${TEMPDIR}"/${PACKAGE}-${VERSION}~${REVISION}
find . -type d -name .svn | xargs rm -rf
dch --force-bad-version --newversion ${VERSION}~${REVISION} --distribution UNRELEASED Autobuild snapshot of SVN r${REVISION}.
dpkg-buildpackage -rfakeroot -sa -uc -us
# Removing sources
rm -rf "${TEMPDIR}"/${PACKAGE}-${VERSION}~${REVISION}
# Creating directory
if [ ! -d "${SERVER}" ]
then
mkdir -p "${SERVER}"
fi
# Removing old packages
if ls "${SERVER}"/"${PACKAGE}"* &> /dev/null
then
rm -f "${SERVER}"/"${PACKAGE}"*
fi
# Moving packages
mv "${TEMPDIR}"/${PACKAGE}* "${SERVER}"
else
# Remove sources
rm -rf "${TEMPDIR}"/${PACKAGE}
fi
done
if [ "${UPDATE_INDICES}" = "true" ]
then
LAST_UPDATE="`date -R`"
cd "${SERVER}"
# Updating binary indices
apt-ftparchive packages ./ > Packages
gzip -9 -c Packages > Packages.gz
# Updating source indices
apt-ftparchive sources ./ > Sources
gzip -9 -c Sources > Sources.gz
fi
# Reading timestamp
if [ -z "${LAST_UPDATE}" ]
then
LAST_UPDATE="`awk -F: '/Last update:/ { print $2":"$3":"$4 }' ${SERVER}/LAST_BUILD | sed -e 's/ //'`"
fi
# Writing timestamp
cat > "${SERVER}"/LAST_BUILD << EOF
Last run begin: ${DATE_START}
Last run end: `date -R`
Last update: ${LAST_UPDATE}
EOF
# Removing build directory
rm -rf "${TEMPDIR}"
echo "`date +%b\ %d\ %H:%M:%S` ${HOSTNAME} live-helper: end snapshot build." >> /var/log/live
|