]> git.pld-linux.org Git - packages/rpm-build-macros.git/blame - rpm-build.sh
- v1.654: extend _noautoreq with language specific macros
[packages/rpm-build-macros.git] / rpm-build.sh
CommitLineData
c8e059d2
ER
1# shell aliases and functions for PLD Developer
2
6fe6a2a4 3# set $dist, used by functions below
5c2093ec
ER
4[ -n "$dist" ] || dist=$(awk '/PLD Linux/ {print tolower($NF)}' /etc/pld-release 2>/dev/null | tr -d '()')
5
6case "$dist" in
11e54cf5 7ac|th|ti)
5c2093ec
ER
8 ;;
9*)
10 # invalid one ;)
11 dist=
12esac
6fe6a2a4 13
e85b9743 14if [ "$dist" ]; then
c8e059d2 15
289dcc48 16alias ipoldek-$dist="poldek -q --sn $dist --cmd"
289dcc48 17alias $dist-provides="ipoldek-$dist what-provides"
6fe6a2a4
ER
18alias $dist-tag="./builder -cf -T $(echo $dist | tr '[a-z]' '[A-Z]')-branch -r HEAD"
19alias $dist-verify=dist-verify
2ff8f00f 20alias $dist-requires=dist-requires
6fe6a2a4 21
e847eeee
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
2ff8f00f
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
42247974
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
2ff8f00f
ER
56}
57
d2023b7e 58dist-verify() {
c7cc2f51
ER
59 local args sn
60 sn="--sn $dist"
9b29c511 61
170b0c4e
ER
62 case "$dist" in
63 ac)
c7cc2f51
ER
64 sn="$sn --sn $dist-updates"
65
1b711b9b 66 local a ignore
89154c5e
ER
67 # typo
68 ignore="$ignore kdenetwork-kopete-tool-conectionstatus"
dfc86fae 69 # obsoleted
89154c5e
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"
dfc86fae
ER
73 # obsoleted
74 ignore="$ignore mozilla-firefox-lang-en apache1-mod_perl-devel libyasm-static"
85aaae49
ER
75 # renamed (courier-authlib.spec, r1.54)
76 ignore="$ignore courier-authlib-userdb courier-authlib-pipe"
e9d3e2d8
ER
77 # obsoleted, squid 2.6
78 ignore="$ignore squid-winbind_acl squid-winbind_auth"
244bbad5
ER
79 # obsoleted with 1.0.4
80 ignore="$ignore python-numpy-FFT python-numpy-MA python-numpy-RNG"
6ef2e403
ER
81 # subpkgs renamed
82 ignore="$ignore apache1-doc apache1-index"
6907d101
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
60b0bd8e 88 ignore="$ignore kadu-theme-icons-crystal16 kadu-theme-icons-crystal22 kadu-theme-icons-nuvola16 kadu-theme-icons-nuvola22 kadu-module-iwait4u"
aa114e03
ER
89 # obsoleted pear test packages
90 ignore="$ignore php-*-tests"
58d9cf15
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"
b7123842
ER
97 # use ac-updates
98 ignore="$ignore ntp-client ntp"
99fac578
ER
99 # php4 only(php-pecl-tidy), for php<5.2(php-pecl-filter)
100 ignore="$ignore php-pecl-tidy php-pecl-filter"
58d9cf15 101
9b29c511
ER
102 # renamed to vim-syntax-txt2tags
103 ignore="$ignore txt2tags-vim"
58d9cf15 104
1b711b9b 105 for a in $ignore; do
89154c5e
ER
106 args="$args --ignore=$a"
107 done
170b0c4e
ER
108 ;;
109 esac
110
c7cc2f51 111 poldek $sn --up --upa -q "$@"
244bbad5 112 poldek $sn --uniq --noignore --verify=deps $args "$@"
6fe6a2a4 113}
8a437893 114
e85b9743
ER
115# displays latest used tag for a specfile
116autotag() {
8fe80bb5
ER
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
39da278c 123 git fetch --tags
b425fbbb
KK
124 out=$(git for-each-ref --count=1 --sort=-authordate refs/tags/auto/$dist \
125 --format='%(refname:short)')
e85b9743
ER
126 echo "$s:$out"
127 done
c8e059d2
ER
128}
129
80a3ce11
ER
130get-buildlog() {
131 local p=$1
132 if [ -z "$p" ]; then
133 echo >&2 "Usage: get-buildlog PACKAGE"
134 echo >&2 ""
135 echo >&2 "Grabs buildlogs from pld builder for all arch."
136 return
137 fi
138
6acf1a17 139 local archlist
80a3ce11
ER
140 case "$dist" in
141 ac)
6acf1a17 142 archlist='i686 i586 i386 athlon alpha sparc amd64 ppc'
80a3ce11
ER
143 ;;
144 th)
6acf1a17 145 archlist='x86_64 i486 i686'
80a3ce11
ER
146 ;;
147 *)
148 echo >&2 "get-buildlog: $dist buildlogs are /dev/null"
149 return
150 esac
151
b45b491a 152 local url arch path ftp=ftp://buildlogs.pld-linux.org
6acf1a17
ER
153 for arch in $archlist; do
154 [ "$arch" ] || continue
155 path=${url#$ftp}
156 echo -n "Checking $p.$arch... "
157 url=$(lftp -c "debug 0;open $ftp; cls --sort=date -r /$dist/$arch/OK/$p,*.bz2 /$dist/$arch/FAIL/$p,*.bz2 | tail -n1")
158 url=$ftp$url
159
160 echo -n "$url... "
161 if wget -q $url -O .$p~; then
80a3ce11 162 echo "OK"
6acf1a17 163 mv -f .$p~ $p.$arch.bz2
80a3ce11
ER
164 else
165 echo "SKIP"
166 rm -f .$p~
167 fi
168 done
169}
170
e85b9743
ER
171fi # no $dist set
172
173alias cv='cvs status -v'
174alias 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"
175alias pclean="sed -i~ -e '/^\(?\|=\+$\|unchanged:\|diff\|only\|Only\|Files\|Common\|Index:\|RCS file\|retrieving\)/d'"
176
c8e059d2 177# makes diff from PLD CVS urls
c29353a7 178# requires: cvs, tee
c8e059d2
ER
179urldiff() {
180 local url="$1"
181 if [ -z "$url" ]; then
182 echo >&2 "Reading STDIN"
183 read url
184 fi
185
186 echo >&2 "Process $url"
187 local file="$url"
188 file=${file#*SPECS/}
189 file=${file#*SOURCES/}
190 file=${file##*/}
191 local r1=${file#*r1=}
192 local r2=${r1#*r2=}
4e29310e 193 r2=${r2%%[&;]*}
d6b37e93 194 r1=${r1%%[&;]*}
c8e059d2 195 file=${file%\?*}
d6b37e93 196 file=${file%.diff}
c8e059d2
ER
197
198 echo >&2 "$file: $r1 -> $r2"
a5e372c8
ER
199
200 if [ -t 1 ]; then
adeebf51
ER
201 cvs diff -u -r$r1 -r$r2 $file | tee m.patch | diffcol
202 else
203 cvs diff -u -r$r1 -r$r2 $file
a5e372c8 204 fi
c8e059d2
ER
205}
206
c29353a7
ER
207# makes diff from kde svn path
208# requires: wget, tee
209kdediff() {
3ae49993 210 local url="$1" r1 r2
c29353a7
ER
211 # --- branches/KDE/3.5/kdepim/kpilot/conduits/vcalconduit/vcalRecord.cc #624744:624745
212 url=${url#*--- }
213 echo >&2 "Process $url"
214 r1=${url#*#}
215 r2=${r1#*:}
216 r1=${r1%:*}
217
218 # 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
1210572b 219 # http://websvn.kde.org/branches/KDE/3.5/kdenetwork/kopete/protocols/oscar/aim/aimcontact.cpp?r1=609808&r2=673027&view=patch
c29353a7 220 url=http://websvn.kde.org/${url% *}
1210572b 221 url="$url?r1=$r1&r2=$r2&view=patch"
c29353a7
ER
222
223 if [ -t 1 ]; then
224 wget "$url" -O -| tee m.patch | diffcol
225 else
226 wget "$url" -O -
227 fi
228}
229
e85b9743
ER
230# merges two patches
231# requires: patchutils
232pmerge() {
233 combinediff -p1 $1 $2 > m.patch || return
234 pclean m.patch
235 dif $1 m.patch
236}
237
c8e059d2
ER
238# downloads sourceforge url from specific mirror
239sfget() {
240 local url="$1"
241 url="${url%?download}"
8ba44595
ER
242 url="${url%?use_mirror=*}"
243 url="${url#http://downloads.}"
c8e059d2
ER
244 url="http://dl.${url#http://prdownloads.}"
245 # use mirror
246 local mirror="http://nchc.dl.sourceforge.net"
247 url="$mirror/sourceforge/${url#http://dl.sourceforge.net/}"
248 wget -c "$url"
249}
250
aa560f74
ER
251dif() {
252 if [ -t 1 ]; then
6acf1a17 253 diff -ur -x .svn -x .git -x .bzr -x CVS "$@" | diffcol | less -R
aa560f74 254 else
6acf1a17 255 diff -ur -x .svn -x .git -x .bzr -x CVS "$@"
aa560f74
ER
256 fi
257}
258
259diffcol() {
260sed -e '
261 s,\e,\e[44m^[\e[49m,g;
262 s,\a,\e[44m^G\e[49m,g;
263 s,^\(Index:\|diff\|---\|+++\) .*$,\e[32m&,;
264 s,^@@ ,\e[33m&,;
265 s,^-,\e[35m&,;
266 s,^+,\e[36m&,;
22aa10d1 267 s,\r,\e[44m^M\e[49m,g;
aa560f74
ER
268 s, , ,g;
269 s,\([^[:space:]]\)\([[:space:]]\+\)$,\1\e[41m\2\e[49m,g;
270 s,$,\e[0m,
f16cde9f 271' ${1:+"$@"}
aa560f74 272}
bb13b717
ER
273
274# chdir to file location and do 'cvs log'
275cvslog() {
276 local f="$1"
1887ad1b
ER
277 local d="${f%/*}"
278 [ "$d" = "$f" ] && d=.
279 (builtin cd $d && cvs log ${f##*/})
bb13b717 280}
ed1023ef 281
25a7905e 282# does diff between FILE~ and FILE
524e21d9 283# the diff can be applied with patch -p1
ed1023ef 284d() {
524e21d9 285 local file="$1"
3ae49993 286 local dir diff
524e21d9
ER
287 if [[ "$file" = /* ]]; then
288 # full path -- no idea where to strip
289 dir=.
290 diff=$file
291 else
292 # relative path -- keep one path component from current dir
293 dir=..
294 diff=${PWD##*/}/${file}
295 fi
296
297 (builtin cd "$dir"; dif $diff{~,})
ed1023ef 298}
3ae49993 299
29c711bd 300rpmb() {
3ae49993 301 local SPEC SPECDIR arg
d1a13d72 302 for arg in "$@"; do
29c711bd
TP
303 case "$arg" in
304 *.spec) SPEC="$arg"
305 ;;
306 esac
307 done
308 SPECDIR=$(dirname "$(pwd)/${SPEC:-.}")
d1a13d72 309 command rpmbuild --define "_specdir $SPECDIR" --define "_sourcedir $SPECDIR" "$@"
29c711bd 310}
This page took 0.088105 seconds and 4 git commands to generate.