]> git.pld-linux.org Git - packages/rpm-build-tools.git/blame - rpm-build.sh
- ignore ntp-client and ntp
[packages/rpm-build-tools.git] / rpm-build.sh
CommitLineData
7e37b984
ER
1# shell aliases and functions for PLD Developer
2
2e6b7800 3# set $dist, used by functions below
c8a54e84
ER
4[ -n "$dist" ] || dist=$(awk '/PLD Linux/ {print tolower($NF)}' /etc/pld-release 2>/dev/null | tr -d '()')
5
6case "$dist" in
15aa13b9 7ac|th|ti)
c8a54e84
ER
8 ;;
9*)
10 # invalid one ;)
11 dist=
12esac
2e6b7800 13
5e0caa68 14if [ "$dist" ]; then
7e37b984 15
d392508c 16alias ipoldek-$dist="poldek -q --sn $dist --cmd"
d392508c 17alias $dist-provides="ipoldek-$dist what-provides"
2e6b7800
ER
18alias $dist-tag="./builder -cf -T $(echo $dist | tr '[a-z]' '[A-Z]')-branch -r HEAD"
19alias $dist-verify=dist-verify
c48232ce 20alias $dist-requires=dist-requires
2e6b7800 21
6ebe30c9
ER
22# undo spec utf8
23# note: it will do it blindly, so any lang other than -pl is most likely broken
24specutfundo() {
25 local spec="$1"
26 iconv -futf8 -tlatin2 "$spec" > m
27 sed -e 's/\.UTF-8//' m > "$spec"
28 rm -f m
29}
30
c48232ce
ER
31dist-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
f43b3983
ER
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
c48232ce
ER
56}
57
37ae34a0 58dist-verify() {
70d18f4d
ER
59 local args sn
60 sn="--sn $dist"
3e963c20 61
b15006fb
ER
62 case "$dist" in
63 ac)
70d18f4d
ER
64 sn="$sn --sn $dist-updates"
65
bec0be2e 66 local a ignore
eaca9a85
ER
67 # typo
68 ignore="$ignore kdenetwork-kopete-tool-conectionstatus"
25fd7f1b 69 # obsoleted
eaca9a85
ER
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"
25fd7f1b
ER
73 # obsoleted
74 ignore="$ignore mozilla-firefox-lang-en apache1-mod_perl-devel libyasm-static"
eb06631a
ER
75 # renamed (courier-authlib.spec, r1.54)
76 ignore="$ignore courier-authlib-userdb courier-authlib-pipe"
4876f0af
ER
77 # obsoleted, squid 2.6
78 ignore="$ignore squid-winbind_acl squid-winbind_auth"
6bf0c9cd
ER
79 # obsoleted with 1.0.4
80 ignore="$ignore python-numpy-FFT python-numpy-MA python-numpy-RNG"
a7498178
ER
81 # subpkgs renamed
82 ignore="$ignore apache1-doc apache1-index"
0e1522d9
ER
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
92a62be8 88 ignore="$ignore kadu-theme-icons-crystal16 kadu-theme-icons-crystal22 kadu-theme-icons-nuvola16 kadu-theme-icons-nuvola22 kadu-module-iwait4u"
77d1118e
ER
89 # obsoleted
90 ignore="$ignore php-pear-Net_Ping-tests"
0ead02ef
ER
91 # obsoleted
92 ignore="$ignore nmap-X11"
93 # mksd dependency not distributale
94 ignore="$ignore samba-vfs-vscan-mks"
95 # ibbackup is not distributale
96 ignore="$ignore innobackup"
3373d30b
ER
97 # use ac-updates
98 ignore="$ignore ntp-client ntp"
0ead02ef 99
3e963c20
ER
100 # renamed to vim-syntax-txt2tags
101 ignore="$ignore txt2tags-vim"
0ead02ef 102
bec0be2e 103 for a in $ignore; do
eaca9a85
ER
104 args="$args --ignore=$a"
105 done
b15006fb
ER
106 ;;
107 esac
108
70d18f4d 109 poldek $sn --up --upa -q "$@"
6bf0c9cd 110 poldek $sn --uniq --noignore --verify=deps $args "$@"
2e6b7800 111}
a5ab8a8f 112
5e0caa68
ER
113# displays latest used tag for a specfile
114autotag() {
115 local out
116 for a in "$@"; do
117 s=${a%.spec}.spec
0d7f5939 118 out=$(cvs status -v $s | awk "!/Sticky/&&/auto-$dist-/{if (!a++) print \$1}")
5e0caa68
ER
119 echo "$s:$out"
120 done
7e37b984
ER
121}
122
3bc010e2
ER
123get-buildlog() {
124 local p=$1
125 if [ -z "$p" ]; then
126 echo >&2 "Usage: get-buildlog PACKAGE"
127 echo >&2 ""
128 echo >&2 "Grabs buildlogs from pld builder for all arch."
129 return
130 fi
131
132 local al
133 case "$dist" in
134 ac)
135 al='i686,i586,i386,athlon,alpha,sparc,amd64,ppc'
136 ;;
137 th)
138 al='x86_64,athlon,i486,i686,ppc'
139 ;;
140 *)
141 echo >&2 "get-buildlog: $dist buildlogs are /dev/null"
142 return
143 esac
144
145 local u a s=ftp://buildlogs.pld-linux.org
146 for u in `eval echo $s/$dist/{$al}/{OK,FAIL}/$p.bz2`; do
147 a=${u#$s/$dist/}; a=${a%%/*}
148 echo -n "Fetching $u... "
149 if wget -q $u -O .$p~; then
150 echo "OK"
151 mv -f .$p~ $p.$a.bz2
152 else
153 echo "SKIP"
154 rm -f .$p~
155 fi
156 done
157}
158
5e0caa68
ER
159fi # no $dist set
160
161alias cv='cvs status -v'
162alias 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"
163alias pclean="sed -i~ -e '/^\(?\|=\+$\|unchanged:\|diff\|only\|Only\|Files\|Common\|Index:\|RCS file\|retrieving\)/d'"
164
7e37b984 165# makes diff from PLD CVS urls
d29ef356 166# requires: cvs, tee
7e37b984
ER
167urldiff() {
168 local url="$1"
169 if [ -z "$url" ]; then
170 echo >&2 "Reading STDIN"
171 read url
172 fi
173
174 echo >&2 "Process $url"
175 local file="$url"
176 file=${file#*SPECS/}
177 file=${file#*SOURCES/}
178 file=${file##*/}
179 local r1=${file#*r1=}
180 local r2=${r1#*r2=}
8c550ffc 181 r2=${r2%%[&;]*}
7765da19 182 r1=${r1%%[&;]*}
7e37b984 183 file=${file%\?*}
7765da19 184 file=${file%.diff}
7e37b984
ER
185
186 echo >&2 "$file: $r1 -> $r2"
79aa1413
ER
187
188 if [ -t 1 ]; then
ce56ac3b
ER
189 cvs diff -u -r$r1 -r$r2 $file | tee m.patch | diffcol
190 else
191 cvs diff -u -r$r1 -r$r2 $file
79aa1413 192 fi
7e37b984
ER
193}
194
d29ef356
ER
195# makes diff from kde svn path
196# requires: wget, tee
197kdediff() {
198 local url="$1"
199 # --- branches/KDE/3.5/kdepim/kpilot/conduits/vcalconduit/vcalRecord.cc #624744:624745
200 url=${url#*--- }
201 echo >&2 "Process $url"
202 r1=${url#*#}
203 r2=${r1#*:}
204 r1=${r1%:*}
205
206 # 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
397a2489 207 # http://websvn.kde.org/branches/KDE/3.5/kdenetwork/kopete/protocols/oscar/aim/aimcontact.cpp?r1=609808&r2=673027&view=patch
d29ef356 208 url=http://websvn.kde.org/${url% *}
397a2489 209 url="$url?r1=$r1&r2=$r2&view=patch"
d29ef356
ER
210
211 if [ -t 1 ]; then
212 wget "$url" -O -| tee m.patch | diffcol
213 else
214 wget "$url" -O -
215 fi
216}
217
5e0caa68
ER
218# merges two patches
219# requires: patchutils
220pmerge() {
221 combinediff -p1 $1 $2 > m.patch || return
222 pclean m.patch
223 dif $1 m.patch
224}
225
7e37b984
ER
226# downloads sourceforge url from specific mirror
227sfget() {
228 local url="$1"
229 url="${url%?download}"
54e1e1fd
ER
230 url="${url%?use_mirror=*}"
231 url="${url#http://downloads.}"
7e37b984
ER
232 url="http://dl.${url#http://prdownloads.}"
233 # use mirror
234 local mirror="http://nchc.dl.sourceforge.net"
235 url="$mirror/sourceforge/${url#http://dl.sourceforge.net/}"
236 wget -c "$url"
237}
238
88e7bbe5
ER
239dif() {
240 if [ -t 1 ]; then
241 diff -ur "$@" | diffcol | less -R
242 else
243 diff -ur "$@"
244 fi
245}
246
247diffcol() {
248sed -e '
249 s,\e,\e[44m^[\e[49m,g;
250 s,\a,\e[44m^G\e[49m,g;
251 s,^\(Index:\|diff\|---\|+++\) .*$,\e[32m&,;
252 s,^@@ ,\e[33m&,;
253 s,^-,\e[35m&,;
254 s,^+,\e[36m&,;
001e6af4 255 s,\r,\e[44m^M\e[49m,g;
88e7bbe5
ER
256 s, , ,g;
257 s,\([^[:space:]]\)\([[:space:]]\+\)$,\1\e[41m\2\e[49m,g;
258 s,$,\e[0m,
28cd815f 259' ${1:+"$@"}
88e7bbe5 260}
6ef19b16
ER
261
262# chdir to file location and do 'cvs log'
263cvslog() {
264 local f="$1"
0db4548a
ER
265 local d="${f%/*}"
266 [ "$d" = "$f" ] && d=.
267 (builtin cd $d && cvs log ${f##*/})
6ef19b16 268}
2d0b7430
ER
269
270# does diff between FILE and FILE~
924512bf 271# the diff can be applied with patch -p1
2d0b7430 272d() {
924512bf 273 local file="$1"
a0586a59 274 local dir
924512bf
ER
275 if [[ "$file" = /* ]]; then
276 # full path -- no idea where to strip
277 dir=.
278 diff=$file
279 else
280 # relative path -- keep one path component from current dir
281 dir=..
282 diff=${PWD##*/}/${file}
283 fi
284
285 (builtin cd "$dir"; dif $diff{~,})
2d0b7430 286}
e7a82b31
TP
287rpmb() {
288 local SPEC SPECDIR
92037b96 289 for arg in "$@"; do
e7a82b31
TP
290 case "$arg" in
291 *.spec) SPEC="$arg"
292 ;;
293 esac
294 done
295 SPECDIR=$(dirname "$(pwd)/${SPEC:-.}")
92037b96 296 command rpmbuild --define "_specdir $SPECDIR" --define "_sourcedir $SPECDIR" "$@"
e7a82b31 297}
This page took 0.07161 seconds and 4 git commands to generate.