]> git.pld-linux.org Git - packages/rpm-build-tools.git/blob - rpm-build.sh
- use 'cvs update -kb rpm-build.sh' as need \r here, not being converted to \n
[packages/rpm-build-tools.git] / rpm-build.sh
1 # shell aliases and functions for PLD Developer
2
3 # set $dist, used by functions below
4 [ -n "$dist" ] || dist=$(awk '/PLD Linux/ {print tolower($NF)}' /etc/pld-release 2>/dev/null | tr -d '()')
5
6 case "$dist" in
7 ac|th|ti)
8         ;;
9 *)
10         # invalid one ;)
11         dist=
12 esac
13
14 if [ "$dist" ]; then
15
16 alias ipoldek-$dist="poldek -q --sn $dist --cmd"
17 alias $dist-provides="ipoldek-$dist what-provides"
18 alias $dist-tag="./builder -cf -T $(echo $dist | tr '[a-z]' '[A-Z]')-branch -r HEAD"
19 alias $dist-verify=dist-verify
20 alias $dist-requires=dist-requires
21
22 # undo spec utf8
23 # note: it will do it blindly, so any lang other than -pl is most likely broken
24 specutfundo() {
25         local spec="$1"
26         iconv -futf8 -tlatin2 "$spec" > m
27         sed -e 's/\.UTF-8//' m > "$spec"
28         rm -f m
29 }
30
31 dist-requires() {
32         local opts deps
33         while [ $# -gt 0 ]; do
34                 case "$1" in
35                 --sn)
36                         opts="$opts $1 $2"
37                         shift
38                         ;;
39                 -*)
40                         opts="$opts $1"
41                         ;;
42                 *)
43                         deps="$deps $1"
44                         ;;
45                 esac
46                 shift
47         done
48
49         case "$dist" in
50         ac)
51                 opts="$opts --sn=$dist-updates"
52                 ;;
53         esac
54
55         poldek -q -Q --sn $dist $opts --cmd what-requires $deps
56 }
57
58 dist-verify() {
59         local args sn
60         sn="--sn $dist"
61
62         case "$dist" in
63         ac)
64                 sn="$sn --sn $dist-updates"
65
66                 local a ignore
67                 # typo
68                 ignore="$ignore kdenetwork-kopete-tool-conectionstatus"
69                 # obsoleted
70                 ignore="$ignore gimp-plugin-swfdec wine-drv-arts ntp-ntptrace"
71                 # quake2@MAIN is now quake2forge, original quake2 restored to quake2
72                 ignore="$ignore quake2-3dfx quake2-sdl quake2-sgl quake2-snd-alsa quake2-snd-ao quake2-snd-oss quake2-snd-sdl quake2-static"
73                 # obsoleted
74                 ignore="$ignore mozilla-firefox-lang-en apache1-mod_perl-devel libyasm-static"
75                 # renamed (courier-authlib.spec, r1.54)
76                 ignore="$ignore courier-authlib-userdb courier-authlib-pipe"
77                 # obsoleted, squid 2.6
78                 ignore="$ignore squid-winbind_acl squid-winbind_auth"
79                 # obsoleted with 1.0.4
80                 ignore="$ignore python-numpy-FFT python-numpy-MA python-numpy-RNG"
81                 # subpkgs renamed
82                 ignore="$ignore apache1-doc apache1-index"
83                 # obsoleted by kadu-module-mediaplayer-amarok
84                 ignore="$ignore kadu-module-amarok"
85                 # obsoleted by kadu-module-mediaplayer-xmms
86                 ignore="$ignore kadu-module-xmms"
87                 # obsoleted by kadu 0.6.0
88                 ignore="$ignore kadu-theme-icons-crystal16 kadu-theme-icons-crystal22 kadu-theme-icons-nuvola16 kadu-theme-icons-nuvola22 kadu-module-iwait4u"
89                 # obsoleted
90                 ignore="$ignore php-pear-Net_Ping-tests"
91                 # renamed to vim-syntax-txt2tags
92                 ignore="$ignore txt2tags-vim"
93                 for a in $ignore; do
94                         args="$args --ignore=$a"
95                 done
96                 ;;
97         esac
98
99         poldek $sn --up --upa -q "$@"
100         poldek $sn --uniq --noignore --verify=deps $args "$@"
101 }
102
103 # displays latest used tag for a specfile
104 autotag() {
105         local out
106         for a in "$@"; do
107                 s=${a%.spec}.spec
108                 out=$(cvs status -v $s | awk "!/Sticky/&&/auto-$dist-/{if (!a++) print \$1}")
109                 echo "$s:$out"
110         done
111 }
112
113 get-buildlog() {
114         local p=$1
115         if [ -z "$p" ]; then
116                 echo >&2 "Usage: get-buildlog PACKAGE"
117                 echo >&2 ""
118                 echo >&2 "Grabs buildlogs from pld builder for all arch."
119                 return
120         fi
121
122         local al
123         case "$dist" in
124         ac)
125                 al='i686,i586,i386,athlon,alpha,sparc,amd64,ppc'
126                 ;;
127         th)
128                 al='x86_64,athlon,i486,i686,ppc'
129                 ;;
130         *)
131                 echo >&2 "get-buildlog: $dist buildlogs are /dev/null"
132                 return
133         esac
134
135         local u a s=ftp://buildlogs.pld-linux.org
136         for u in `eval echo $s/$dist/{$al}/{OK,FAIL}/$p.bz2`; do
137                 a=${u#$s/$dist/}; a=${a%%/*}
138                 echo -n "Fetching $u... "
139                 if wget -q $u -O .$p~; then
140                         echo "OK"
141                         mv -f .$p~ $p.$a.bz2
142                 else
143                         echo "SKIP"
144                         rm -f .$p~
145                 fi
146         done
147 }
148
149 fi # no $dist set
150
151 alias cv='cvs status -v'
152 alias adif="dif -x '*.m4' -x ltmain.sh -x install-sh -x depcomp -x 'Makefile.in' -x compile -x 'config.*' -x configure -x missing -x mkinstalldirs -x autom4te.cache"
153 alias pclean="sed -i~ -e '/^\(?\|=\+$\|unchanged:\|diff\|only\|Only\|Files\|Common\|Index:\|RCS file\|retrieving\)/d'"
154
155 # makes diff from PLD CVS urls
156 # requires: cvs, tee
157 urldiff() {
158         local url="$1"
159         if [ -z "$url" ]; then
160                 echo >&2 "Reading STDIN"
161                 read url
162         fi
163
164         echo >&2 "Process $url"
165         local file="$url"
166         file=${file#*SPECS/}
167         file=${file#*SOURCES/}
168         file=${file##*/}
169         local r1=${file#*r1=}
170         local r2=${r1#*r2=}
171         r2=${r2%%[&;]*}
172         r1=${r1%%[&;]*}
173         file=${file%\?*}
174         file=${file%.diff}
175
176         echo >&2 "$file: $r1 -> $r2"
177
178         if [ -t 1 ]; then
179                 cvs diff -u -r$r1 -r$r2 $file | tee m.patch | diffcol
180         else
181                 cvs diff -u -r$r1 -r$r2 $file
182         fi
183 }
184
185 # makes diff from kde svn path
186 # requires: wget, tee
187 kdediff() {
188         local url="$1"
189         # --- branches/KDE/3.5/kdepim/kpilot/conduits/vcalconduit/vcalRecord.cc #624744:624745
190         url=${url#*--- }
191         echo >&2 "Process $url"
192         r1=${url#*#}
193         r2=${r1#*:}
194         r1=${r1%:*}
195
196         #  http://websvn.kde.org/branches/KDE/3.5/kdepim/kpilot/conduits/vcalconduit/vcalRecord.cc?rev=624745&r1=612579&r2=624745&makepatch=1&diff_format=u
197         #  http://websvn.kde.org/branches/KDE/3.5/kdenetwork/kopete/protocols/oscar/aim/aimcontact.cpp?r1=609808&r2=673027&view=patch
198         url=http://websvn.kde.org/${url% *}
199         url="$url?r1=$r1&r2=$r2&view=patch"
200
201         if [ -t 1 ]; then
202                 wget "$url" -O -| tee m.patch | diffcol
203         else
204                 wget "$url" -O -
205         fi
206 }
207
208 # merges two patches
209 # requires: patchutils
210 pmerge() {
211         combinediff -p1 $1 $2 > m.patch || return
212         pclean m.patch
213         dif $1 m.patch
214 }
215
216 # downloads sourceforge url from specific mirror
217 sfget() {
218         local url="$1"
219         url="${url%?download}"
220         url="${url%?use_mirror=*}"
221         url="${url#http://downloads.}"
222         url="http://dl.${url#http://prdownloads.}"
223         # use mirror
224         local mirror="http://nchc.dl.sourceforge.net"
225         url="$mirror/sourceforge/${url#http://dl.sourceforge.net/}"
226         wget -c "$url"
227 }
228
229 dif() {
230         if [ -t 1 ]; then
231                 diff -ur "$@" | diffcol | less -R
232         else
233                 diff -ur "$@"
234         fi
235 }
236
237 diffcol() {
238 sed -e '
239         s,\e,\e[44m^[\e[49m,g;
240         s,\a,\e[44m^G\e[49m,g;
241         s,^\(Index:\|diff\|---\|+++\) .*$,\e[32m&,;
242         s,^@@ ,\e[33m&,;
243         s,^-,\e[35m&,;
244         s,^+,\e[36m&,;
245         s,
246 ,\e[44m^M\e[49m,g;
247         s,      ,    ,g;
248         s,\([^[:space:]]\)\([[:space:]]\+\)$,\1\e[41m\2\e[49m,g;
249         s,$,\e[0m,
250 ' ${1:+"$@"}
251 }
252
253 # chdir to file location and do 'cvs log'
254 cvslog() {
255         local f="$1"
256         local d="${f%/*}"
257         [ "$d" = "$f" ] && d=.
258         (builtin cd $d && cvs log ${f##*/})
259 }
260
261 # does diff between FILE and FILE~
262 # the diff can be applied with patch -p1
263 d() {
264         local file="$1"
265         local dir
266         if [[ "$file" = /* ]]; then
267                 # full path -- no idea where to strip
268                 dir=.
269                 diff=$file
270         else
271                 # relative path -- keep one path component from current dir
272                 dir=..
273                 diff=${PWD##*/}/${file}
274         fi
275
276         (builtin cd "$dir"; dif $diff{~,})
277 }
This page took 0.048972 seconds and 3 git commands to generate.