]> git.pld-linux.org Git - packages/rpm-build-macros.git/blob - rpm-build.sh
- update ac obsoletes, --uniq when comparing indist-verify
[packages/rpm-build-macros.git] / rpm-build.sh
1 # shell aliases and functions for PLD Developer
2 # $Id$
3
4 # set $dist, used by functions below
5 [ -n "$dist" ] || dist=$(awk '/PLD Linux/ {print tolower($NF)}' /etc/pld-release 2>/dev/null | tr -d '()')
6
7 case "$dist" in
8 ac|th|ti)
9         ;;
10 *)
11         # invalid one ;)
12         dist=
13 esac
14
15 if [ "$dist" ]; then
16
17 alias ipoldek-$dist="poldek -q --sn $dist --cmd"
18 alias $dist-provides="ipoldek-$dist what-provides"
19 alias $dist-tag="./builder -cf -T $(echo $dist | tr '[a-z]' '[A-Z]')-branch -r HEAD"
20 alias $dist-verify=dist-verify
21 alias $dist-requires=dist-requires
22
23 # undo spec utf8
24 # note: it will do it blindly, so any lang other than -pl is most likely broken
25 specutfundo() {
26         local spec="$1"
27         iconv -futf8 -tlatin2 "$spec" > m
28         sed -e 's/\.UTF-8//' m > "$spec"
29         rm -f m
30 }
31
32 dist-requires() {
33         local opts deps
34         while [ $# -gt 0 ]; do
35                 case "$1" in
36                 --sn)
37                         opts="$opts $1 $2"
38                         shift
39                         ;;
40                 -*)
41                         opts="$opts $1"
42                         ;;
43                 *)
44                         deps="$deps $1"
45                         ;;
46                 esac
47                 shift
48         done
49         poldek -q --sn $dist $opts --cmd what-requires $deps
50 }
51
52 dist-verify() {
53         local args sn
54         sn="--sn $dist"
55         case "$dist" in
56         ac)
57                 sn="$sn --sn $dist-updates"
58
59                 local a ignore
60                 # typo
61                 ignore="$ignore kdenetwork-kopete-tool-conectionstatus"
62                 # obsoleted
63                 ignore="$ignore gimp-plugin-swfdec wine-drv-arts ntp-ntptrace"
64                 # quake2@MAIN is now quake2forge, original quake2 restored to quake2
65                 ignore="$ignore quake2-3dfx quake2-sdl quake2-sgl quake2-snd-alsa quake2-snd-ao quake2-snd-oss quake2-snd-sdl quake2-static"
66                 # obsoleted
67                 ignore="$ignore mozilla-firefox-lang-en apache1-mod_perl-devel libyasm-static"
68                 # renamed (courier-authlib.spec, r1.54)
69                 ignore="$ignore courier-authlib-userdb courier-authlib-pipe"
70                 # obsoleted, squid 2.6
71                 ignore="$ignore squid-winbind_acl squid-winbind_auth"
72                 # obsoleted with 1.0.4
73                 ignore="$ignore python-numpy-FFT python-numpy-MA python-numpy-RNG"
74                 for a in $ignore; do
75                         args="$args --ignore=$a"
76                 done
77                 ;;
78         esac
79
80         poldek $sn --up --upa -q "$@"
81         poldek $sn --uniq --noignore --verify=deps $args "$@"
82 }
83
84 # displays latest used tag for a specfile
85 autotag() {
86         local out
87         for a in "$@"; do
88                 s=${a%.spec}.spec
89                 out=$(cvs status -v $s | awk "!/Sticky/&&/auto-$dist-/{if (!a++) print \$1}")
90                 echo "$s:$out"
91         done
92 }
93
94 fi # no $dist set
95
96 alias cv='cvs status -v'
97 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"
98 alias pclean="sed -i~ -e '/^\(?\|=\+$\|unchanged:\|diff\|only\|Only\|Files\|Common\|Index:\|RCS file\|retrieving\)/d'"
99
100 # makes diff from PLD CVS urls
101 # requires: cvs, tee
102 urldiff() {
103         local url="$1"
104         if [ -z "$url" ]; then
105                 echo >&2 "Reading STDIN"
106                 read url
107         fi
108
109         echo >&2 "Process $url"
110         local file="$url"
111         file=${file#*SPECS/}
112         file=${file#*SOURCES/}
113         file=${file##*/}
114         local r1=${file#*r1=}
115         local r2=${r1#*r2=}
116         r2=${r2%%[&;]*}
117         r1=${r1%%[&;]*}
118         file=${file%\?*}
119         file=${file%.diff}
120
121         echo >&2 "$file: $r1 -> $r2"
122
123         if [ -t 1 ]; then
124                 cvs diff -u -r$r1 -r$r2 $file | tee m.patch | diffcol
125         else
126                 cvs diff -u -r$r1 -r$r2 $file
127         fi
128 }
129
130 # makes diff from kde svn path
131 # requires: wget, tee
132 kdediff() {
133         local url="$1"
134         # --- branches/KDE/3.5/kdepim/kpilot/conduits/vcalconduit/vcalRecord.cc #624744:624745
135         url=${url#*--- }
136         echo >&2 "Process $url"
137         r1=${url#*#}
138         r2=${r1#*:}
139         r1=${r1%:*}
140
141         #  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
142         #  http://websvn.kde.org/branches/KDE/3.5/kdenetwork/kopete/protocols/oscar/aim/aimcontact.cpp?r1=609808&r2=673027&view=patch
143         url=http://websvn.kde.org/${url% *}
144         url="$url?r1=$r1&r2=$r2&view=patch"
145
146         if [ -t 1 ]; then
147                 wget "$url" -O -| tee m.patch | diffcol
148         else
149                 wget "$url" -O -
150         fi
151 }
152
153 # merges two patches
154 # requires: patchutils
155 pmerge() {
156         combinediff -p1 $1 $2 > m.patch || return
157         pclean m.patch
158         dif $1 m.patch
159 }
160
161 # downloads sourceforge url from specific mirror
162 sfget() {
163         local url="$1"
164         url="${url%?download}"
165         url="${url%?use_mirror=*}"
166         url="${url#http://downloads.}"
167         url="http://dl.${url#http://prdownloads.}"
168         # use mirror
169         local mirror="http://nchc.dl.sourceforge.net"
170         url="$mirror/sourceforge/${url#http://dl.sourceforge.net/}"
171         wget -c "$url"
172 }
173
174 dif() {
175         if [ -t 1 ]; then
176                 diff -ur "$@" | diffcol | less -R
177         else
178                 diff -ur "$@"
179         fi
180 }
181
182 diffcol() {
183 sed -e '
184         s,\e,\e[44m^[\e[49m,g;
185         s,\a,\e[44m^G\e[49m,g;
186         s,^\(Index:\|diff\|---\|+++\) .*$,\e[32m&,;
187         s,^@@ ,\e[33m&,;
188         s,^-,\e[35m&,;
189         s,^+,\e[36m&,;
190         s,\r,\e[44m^M\e[49m,g;
191         s,      ,    ,g;
192         s,\([^[:space:]]\)\([[:space:]]\+\)$,\1\e[41m\2\e[49m,g;
193         s,$,\e[0m,
194 ' "$@"
195 }
196
197 # chdir to file location and do 'cvs log'
198 cvslog() {
199         local f="$1"
200         local d="${f%/*}"
201         [ "$d" = "$f" ] && d=.
202         (builtin cd $d && cvs log ${f##*/})
203 }
204
205 # does diff between FILE and FILE~
206 # the diff can be applied with patch -p1
207 d() {
208         local file="$1"
209         local dir
210         if [[ "$file" = /* ]]; then
211                 # full path -- no idea where to strip
212                 dir=.
213                 diff=$file
214         else
215                 # relative path -- keep one path component from current dir
216                 dir=..
217                 diff=${PWD##*/}/${file}
218         fi
219
220         (builtin cd "$dir"; dif $diff{~,})
221 }
This page took 0.052129 seconds and 4 git commands to generate.