blob: 5b5edad3ea93810fd3bbeeb827653730d4874629 (
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
|
#!/bin/bash
# $Id: db-unstable,v 1.15 2005/02/25 21:27:44 judd Exp $
uid=`id -u`
repoid=3
ftppath="/home/ftp/unstable/os/i686"
TMPDIR="/tmp/archpkg.$repoid.$uid"
cleanup() {
rm -rf $TMPDIR
# unlock
rm -f /tmp/.repolck.$repoid
exit 0
}
# check for locks
if [ -f /tmp/.repolck.$repoid ]; then
owner=`/bin/ls -l /tmp/.repolck.$repoid | awk '{print $3}'`
echo "error: db generation is already in progress (started by $owner)"
exit 1
fi
if [ -d /tmp/.gensync ]; then
echo "error: someone else is currently running gensync!"
exit 1
fi
# catch ^C breaks
trap cleanup SIGINT
# lock
touch /tmp/.repolck.$repoid
# RedHat's mktemp is broken...
if [ -d $TMPDIR ]; then
echo "==> Removing old temp dir..." >&2
rm -rf $TMPDIR || exit 1
fi
mkdir $TMPDIR; [ $? -gt 0 ] && exit 1
echo "==> Generating Pacman Database for UNSTABLE..." >&2
cd $TMPDIR
CVS_RSH=ssh CVSROOT=:ext:cvs.archlinux.org:/home/cvs-unstable cvs -q export -r CURRENT unstable
if [ $? -gt 0 ]; then
echo "==> CVS export failed!"
cleanup
exit 1
fi
# check again
if [ -d /tmp/.gensync ]; then
echo "error: someone else is currently running gensync!"
cleanup
exit 1
fi
/usr/bin/gensync $TMPDIR/unstable $TMPDIR/unstable.db.tar.gz $ftppath
[ -f $TMPDIR/unstable.db.tar.gz ] && mv -f $TMPDIR/unstable.db.tar.gz $ftppath
echo "==> Scanning for New/Updated/Deleted packages..." >&2
cd $TMPDIR/unstable
/arch/pkgdb1 $repoid | /arch/pkgdb2 $repoid $ftppath
echo "==> Scanning for missing packages..." >&2
/arch/genpkglist unstable
mv packages.txt $ftppath/packages.txt
cleanup
|