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