blob: 2669990ba790a862a8a7af77aac85910d7505a20 (
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
|
#!/bin/bash
#
# add changes file
#reprepro --ask-passphrase -b . -V -C main include edgy CHANGES_FILE
#
# remove package
#reprepro --ask-passphrase -b . -V -C main remove edgy PACKAGE_NAME
#
# generate snapshot
# reprepro --ask-passphrase -b . -V -C main gensnapshot unstable 20Ago2007
#
get_version() {
case $1 in
*etch*)
echo "etch"
;;
*lenny*)
echo "lenny"
;;
*squeeze*)
echo "squeeze"
;;
*testing*)
echo "testing"
;;
*hardy*)
echo "hardy"
;;
*intrepid*)
echo "intrepid"
;;
*maverick*)
echo "maverick"
;;
*lucid*)
echo "lucid"
;;
*karmic*)
echo "karmic"
;;
*jaunty*)
echo "jaunty"
;;
*gutsy*)
echo "gutsy"
;;
*feisty*)
echo "feisty"
;;
*edgy*)
echo "edgy"
;;
*dapper*)
echo "dapper"
;;
*)
echo "unstable"
;;
esac
}
if [ "$SECTION" = "" ]; then
SECTION="main"
echo "WARNING: using section main, overwrite with SECTION=xxxx"
echo
fi
PKGRESULT=/var/cache/pbuilder/result/
[ -d /home/pbuilder/result ] && PKGRESULT=/home/pbuilder/result/
newpkg=$(find $PKGRESULT -name "*$1*changes")
arch=""
if [ "$2" != "" ]; then
arch="-A $2"
fi
for pkg in $newpkg; do
echo "reprepro --ask-passphrase -b . $arch -V -C $SECTION include $(get_version $pkg) $pkg ;\\"
done
echo "echo DONE"
|