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