Commit | Line | Data |
---|---|---|
460b9539 | 1 | #! /bin/bash |
2 | # | |
3 | # This file is part of DisOrder | |
7bfa7f4c | 4 | # Copyright (C) 2005-2009, 2011 Richard Kettlewell |
460b9539 | 5 | # |
e7eb3a27 | 6 | # This program is free software: you can redistribute it and/or modify |
460b9539 | 7 | # it under the terms of the GNU General Public License as published by |
e7eb3a27 | 8 | # the Free Software Foundation, either version 3 of the License, or |
460b9539 | 9 | # (at your option) any later version. |
e7eb3a27 RK |
10 | # |
11 | # This program is distributed in the hope that it will be useful, | |
12 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 | # GNU General Public License for more details. | |
15 | # | |
460b9539 | 16 | # You should have received a copy of the GNU General Public License |
e7eb3a27 | 17 | # along with this program. If not, see <http://www.gnu.org/licenses/>. |
460b9539 | 18 | # |
19 | ||
20 | set -e | |
96b55624 | 21 | web=$HOME/public_html/web/disorder |
7bfa7f4c | 22 | chroots=/srv/chroot |
96b55624 | 23 | |
460b9539 | 24 | make |
7bfa7f4c | 25 | #make distcheck |
460b9539 | 26 | make dist-bzip2 |
fef972ab | 27 | v=$(make echo-version) |
460b9539 | 28 | d=$(make echo-distdir) |
96b55624 RK |
29 | src=$d.tar.bz2 |
30 | ||
7bfa7f4c RK |
31 | v() { |
32 | echo ">" "$@" | |
33 | "$@" | |
34 | } | |
35 | ||
36 | # Execute a command in the build environment | |
96b55624 RK |
37 | remote() { |
38 | local h=$1 | |
7bfa7f4c RK |
39 | local cmd="$2" |
40 | target=${h#*:} | |
41 | case $h in | |
42 | ssh:* ) | |
43 | v ssh ${target} "$cmd" | |
44 | ;; | |
45 | chroot:* ) | |
46 | v schroot -c${target} -- bash -c "cd && $cmd" | |
47 | ;; | |
48 | local:* ) | |
49 | cd | |
50 | v "$cmd" | |
51 | cd - | |
52 | ;; | |
53 | esac | |
96b55624 RK |
54 | } |
55 | ||
7bfa7f4c RK |
56 | # Put files into the build environment |
57 | put() { | |
58 | local src="$1" | |
59 | local h=$2 | |
60 | local dst="$3" | |
61 | target=${h#*:} | |
62 | case $h in | |
63 | ssh:* ) | |
64 | v scp $src ${target}:$dst | |
65 | ;; | |
66 | chroot:* ) | |
67 | v cp $src ${chroots}/${target}/home/${LOGNAME}/$dst | |
68 | ;; | |
69 | local:* ) | |
70 | v cp $src $dst | |
71 | ;; | |
72 | esac | |
73 | } | |
74 | ||
75 | # Retrieve files form the build environment | |
76 | get() { | |
77 | local h=$1 | |
78 | local src="$2" | |
79 | local dst="$3" | |
80 | target=${h#*:} | |
81 | case $h in | |
82 | ssh:* ) | |
83 | v scp ${target}:$src $dst | |
84 | ;; | |
85 | chroot:* ) | |
86 | v cp ${chroots}/${target}/home/${LOGNAME}/$src $dst | |
87 | ;; | |
88 | local:* ) | |
89 | v cp $src $dst | |
90 | ;; | |
91 | esac | |
92 | } | |
93 | ||
94 | # Build a .deb in some build environment, and copy it to the distribution | |
95 | # location | |
96b55624 RK |
96 | build() { |
97 | local h=$1 # build host | |
7bfa7f4c RK |
98 | local f=$2 # distribution directory ("for") |
99 | local vs=$3 # version suffix | |
100 | local dist=$4 # distribution (stable/oldstable) | |
96b55624 RK |
101 | |
102 | remote $h "mkdir -p _builds" | |
103 | remote $h "rm -rf _builds/*.deb _builds/$d" | |
7bfa7f4c | 104 | put $src $h _builds/$src |
96b55624 | 105 | remote $h "cd _builds && tar xfj $src" |
fef972ab RK |
106 | if [ "$vs" != "" ]; then |
107 | remote $h "cd _builds/$d && scripts/setversion $v~$vs 'Backport to $vs' $dist" | |
108 | fi | |
96b55624 RK |
109 | remote $h "cd _builds/$d && fakeroot debian/rules binary" |
110 | mkdir -p $web/$f | |
7bfa7f4c | 111 | get $h _builds/\*.deb $web/$f/. |
96b55624 RK |
112 | } |
113 | ||
114 | # Build various debs | |
a49c0b5a RK |
115 | #build chroot:lenny64 lenny lenny oldstable |
116 | #build ssh:leucomorph lenny lenny oldstable | |
7bfa7f4c RK |
117 | build ssh:araminta squeeze "" stable |
118 | build ssh:sandestin squeeze "" stable | |
96b55624 RK |
119 | |
120 | # Update the web | |
6016a2da | 121 | cp $src README README.developers CHANGES.html $web |
460b9539 | 122 | cd doc |
123 | for f in *.[1-9].html; do | |
124 | echo $f | |
96b55624 RK |
125 | rm -f $web/$f |
126 | sed < $f > $web/$f 's/^@.*//' | |
460b9539 | 127 | done |
96b55624 RK |
128 | cp plumbing.svg $web/. |
129 | if [ -f plumbing.png ]; then | |
130 | cp plumbing.png $web/. | |
131 | fi | |
132 |