]> git.pld-linux.org Git - packages/rpm-pld-macros.git/blame_incremental - rpm-build.sh
- update discarded php4 pkgs
[packages/rpm-pld-macros.git] / rpm-build.sh
... / ...
CommitLineData
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
6case "$dist" in
7ac|th|ti)
8 ;;
9*)
10 # invalid one ;)
11 dist=
12esac
13
14if [ "$dist" ]; then
15
16alias ipoldek-$dist="poldek -q --sn $dist --cmd"
17alias $dist-provides="ipoldek-$dist what-provides"
18alias $dist-tag="./builder -cf -T $(echo $dist | tr '[a-z]' '[A-Z]')-branch -r HEAD"
19alias $dist-verify=dist-verify
20alias $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
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
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
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
58dist-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 pear test packages
90 ignore="$ignore php-*-tests"
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"
97 # use ac-updates
98 ignore="$ignore ntp-client ntp"
99 # php4 only(php-pecl-tidy), for php<5.2(php-pecl-filter)
100 ignore="$ignore php-pecl-tidy php-pecl-filter"
101
102 # renamed to vim-syntax-txt2tags
103 ignore="$ignore txt2tags-vim"
104
105 for a in $ignore; do
106 args="$args --ignore=$a"
107 done
108 ;;
109 esac
110
111 poldek $sn --up --upa -q "$@"
112 poldek $sn --uniq --noignore --verify=deps $args "$@"
113}
114
115# displays latest used tag for a specfile
116autotag() {
117 local out s
118 for s in "$@"; do
119 # strip branches
120 s=${s%:*}
121 # ensure package ends with .spec
122 s=${s%.spec}.spec
123 out=$(cvs status -v $s | awk "!/Sticky/&&/auto-$dist-/{if (!a++) print \$1}")
124 echo "$s:$out"
125 done
126}
127
128get-buildlog() {
129 local p=$1
130 if [ -z "$p" ]; then
131 echo >&2 "Usage: get-buildlog PACKAGE"
132 echo >&2 ""
133 echo >&2 "Grabs buildlogs from pld builder for all arch."
134 return
135 fi
136
137 local archlist
138 case "$dist" in
139 ac)
140 archlist='i686 i586 i386 athlon alpha sparc amd64 ppc'
141 ;;
142 th)
143 archlist='x86_64 i486 i686'
144 ;;
145 *)
146 echo >&2 "get-buildlog: $dist buildlogs are /dev/null"
147 return
148 esac
149
150 local url arch path ftp=ftp://buildlogs.pld-linux.org
151 for arch in $archlist; do
152 [ "$arch" ] || continue
153 path=${url#$ftp}
154 echo -n "Checking $p.$arch... "
155 url=$(lftp -c "debug 0;open $ftp; cls --sort=date -r /$dist/$arch/OK/$p,*.bz2 /$dist/$arch/FAIL/$p,*.bz2 | tail -n1")
156 url=$ftp$url
157
158 echo -n "$url... "
159 if wget -q $url -O .$p~; then
160 echo "OK"
161 mv -f .$p~ $p.$arch.bz2
162 else
163 echo "SKIP"
164 rm -f .$p~
165 fi
166 done
167}
168
169fi # no $dist set
170
171alias cv='cvs status -v'
172alias 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"
173alias pclean="sed -i~ -e '/^\(?\|=\+$\|unchanged:\|diff\|only\|Only\|Files\|Common\|Index:\|RCS file\|retrieving\)/d'"
174
175# makes diff from PLD CVS urls
176# requires: cvs, tee
177urldiff() {
178 local url="$1"
179 if [ -z "$url" ]; then
180 echo >&2 "Reading STDIN"
181 read url
182 fi
183
184 echo >&2 "Process $url"
185 local file="$url"
186 file=${file#*SPECS/}
187 file=${file#*SOURCES/}
188 file=${file##*/}
189 local r1=${file#*r1=}
190 local r2=${r1#*r2=}
191 r2=${r2%%[&;]*}
192 r1=${r1%%[&;]*}
193 file=${file%\?*}
194 file=${file%.diff}
195
196 echo >&2 "$file: $r1 -> $r2"
197
198 if [ -t 1 ]; then
199 cvs diff -u -r$r1 -r$r2 $file | tee m.patch | diffcol
200 else
201 cvs diff -u -r$r1 -r$r2 $file
202 fi
203}
204
205# makes diff from kde svn path
206# requires: wget, tee
207kdediff() {
208 local url="$1" r1 r2
209 # --- branches/KDE/3.5/kdepim/kpilot/conduits/vcalconduit/vcalRecord.cc #624744:624745
210 url=${url#*--- }
211 echo >&2 "Process $url"
212 r1=${url#*#}
213 r2=${r1#*:}
214 r1=${r1%:*}
215
216 # 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
217 # http://websvn.kde.org/branches/KDE/3.5/kdenetwork/kopete/protocols/oscar/aim/aimcontact.cpp?r1=609808&r2=673027&view=patch
218 url=http://websvn.kde.org/${url% *}
219 url="$url?r1=$r1&r2=$r2&view=patch"
220
221 if [ -t 1 ]; then
222 wget "$url" -O -| tee m.patch | diffcol
223 else
224 wget "$url" -O -
225 fi
226}
227
228# merges two patches
229# requires: patchutils
230pmerge() {
231 combinediff -p1 $1 $2 > m.patch || return
232 pclean m.patch
233 dif $1 m.patch
234}
235
236# downloads sourceforge url from specific mirror
237sfget() {
238 local url="$1"
239 url="${url%?download}"
240 url="${url%?use_mirror=*}"
241 url="${url#http://downloads.}"
242 url="http://dl.${url#http://prdownloads.}"
243 # use mirror
244 local mirror="http://nchc.dl.sourceforge.net"
245 url="$mirror/sourceforge/${url#http://dl.sourceforge.net/}"
246 wget -c "$url"
247}
248
249dif() {
250 if [ -t 1 ]; then
251 diff -ur -x .svn -x .git -x .bzr -x CVS "$@" | diffcol | less -R
252 else
253 diff -ur -x .svn -x .git -x .bzr -x CVS "$@"
254 fi
255}
256
257diffcol() {
258sed -e '
259 s,\e,\e[44m^[\e[49m,g;
260 s,\a,\e[44m^G\e[49m,g;
261 s,^\(Index:\|diff\|---\|+++\) .*$,\e[32m&,;
262 s,^@@ ,\e[33m&,;
263 s,^-,\e[35m&,;
264 s,^+,\e[36m&,;
265 s,\r,\e[44m^M\e[49m,g;
266 s, , ,g;
267 s,\([^[:space:]]\)\([[:space:]]\+\)$,\1\e[41m\2\e[49m,g;
268 s,$,\e[0m,
269' ${1:+"$@"}
270}
271
272# chdir to file location and do 'cvs log'
273cvslog() {
274 local f="$1"
275 local d="${f%/*}"
276 [ "$d" = "$f" ] && d=.
277 (builtin cd $d && cvs log ${f##*/})
278}
279
280# does diff between FILE~ and FILE
281# the diff can be applied with patch -p1
282d() {
283 local file="$1"
284 local dir diff
285 if [[ "$file" = /* ]]; then
286 # full path -- no idea where to strip
287 dir=.
288 diff=$file
289 else
290 # relative path -- keep one path component from current dir
291 dir=..
292 diff=${PWD##*/}/${file}
293 fi
294
295 (builtin cd "$dir"; dif $diff{~,})
296}
297
298rpmb() {
299 local SPEC SPECDIR arg
300 for arg in "$@"; do
301 case "$arg" in
302 *.spec) SPEC="$arg"
303 ;;
304 esac
305 done
306 SPECDIR=$(dirname "$(pwd)/${SPEC:-.}")
307 command rpmbuild --define "_specdir $SPECDIR" --define "_sourcedir $SPECDIR" "$@"
308}
This page took 0.043059 seconds and 4 git commands to generate.