]> git.pld-linux.org Git - packages/rpm-build-tools.git/blame - rpm-build.sh
- old pear obsoletes
[packages/rpm-build-tools.git] / rpm-build.sh
CommitLineData
7e37b984 1# shell aliases and functions for PLD Developer
6657c577 2# $Id$
7e37b984 3
2e6b7800 4# set $dist, used by functions below
c8a54e84
ER
5[ -n "$dist" ] || dist=$(awk '/PLD Linux/ {print tolower($NF)}' /etc/pld-release 2>/dev/null | tr -d '()')
6
7case "$dist" in
15aa13b9 8ac|th|ti)
c8a54e84
ER
9 ;;
10*)
11 # invalid one ;)
12 dist=
13esac
2e6b7800 14
5e0caa68 15if [ "$dist" ]; then
7e37b984 16
d392508c 17alias ipoldek-$dist="poldek -q --sn $dist --cmd"
d392508c 18alias $dist-provides="ipoldek-$dist what-provides"
2e6b7800
ER
19alias $dist-tag="./builder -cf -T $(echo $dist | tr '[a-z]' '[A-Z]')-branch -r HEAD"
20alias $dist-verify=dist-verify
c48232ce 21alias $dist-requires=dist-requires
2e6b7800 22
6ebe30c9
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
c48232ce
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
37ae34a0 52dist-verify() {
70d18f4d
ER
53 local args sn
54 sn="--sn $dist"
b15006fb
ER
55 case "$dist" in
56 ac)
70d18f4d
ER
57 sn="$sn --sn $dist-updates"
58
bec0be2e 59 local a ignore
eaca9a85
ER
60 # typo
61 ignore="$ignore kdenetwork-kopete-tool-conectionstatus"
25fd7f1b 62 # obsoleted
eaca9a85
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"
25fd7f1b
ER
66 # obsoleted
67 ignore="$ignore mozilla-firefox-lang-en apache1-mod_perl-devel libyasm-static"
eb06631a
ER
68 # renamed (courier-authlib.spec, r1.54)
69 ignore="$ignore courier-authlib-userdb courier-authlib-pipe"
4876f0af
ER
70 # obsoleted, squid 2.6
71 ignore="$ignore squid-winbind_acl squid-winbind_auth"
6bf0c9cd
ER
72 # obsoleted with 1.0.4
73 ignore="$ignore python-numpy-FFT python-numpy-MA python-numpy-RNG"
a7498178
ER
74 # subpkgs renamed
75 ignore="$ignore apache1-doc apache1-index"
0e1522d9
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"
77d1118e
ER
82 # obsoleted
83 ignore="$ignore php-pear-Net_Ping-tests"
bec0be2e 84 for a in $ignore; do
eaca9a85
ER
85 args="$args --ignore=$a"
86 done
b15006fb
ER
87 ;;
88 esac
89
70d18f4d 90 poldek $sn --up --upa -q "$@"
6bf0c9cd 91 poldek $sn --uniq --noignore --verify=deps $args "$@"
2e6b7800 92}
a5ab8a8f 93
5e0caa68
ER
94# displays latest used tag for a specfile
95autotag() {
96 local out
97 for a in "$@"; do
98 s=${a%.spec}.spec
0d7f5939 99 out=$(cvs status -v $s | awk "!/Sticky/&&/auto-$dist-/{if (!a++) print \$1}")
5e0caa68
ER
100 echo "$s:$out"
101 done
7e37b984
ER
102}
103
5e0caa68
ER
104fi # no $dist set
105
106alias cv='cvs status -v'
107alias 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"
108alias pclean="sed -i~ -e '/^\(?\|=\+$\|unchanged:\|diff\|only\|Only\|Files\|Common\|Index:\|RCS file\|retrieving\)/d'"
109
7e37b984 110# makes diff from PLD CVS urls
d29ef356 111# requires: cvs, tee
7e37b984
ER
112urldiff() {
113 local url="$1"
114 if [ -z "$url" ]; then
115 echo >&2 "Reading STDIN"
116 read url
117 fi
118
119 echo >&2 "Process $url"
120 local file="$url"
121 file=${file#*SPECS/}
122 file=${file#*SOURCES/}
123 file=${file##*/}
124 local r1=${file#*r1=}
125 local r2=${r1#*r2=}
8c550ffc 126 r2=${r2%%[&;]*}
7765da19 127 r1=${r1%%[&;]*}
7e37b984 128 file=${file%\?*}
7765da19 129 file=${file%.diff}
7e37b984
ER
130
131 echo >&2 "$file: $r1 -> $r2"
79aa1413
ER
132
133 if [ -t 1 ]; then
ce56ac3b
ER
134 cvs diff -u -r$r1 -r$r2 $file | tee m.patch | diffcol
135 else
136 cvs diff -u -r$r1 -r$r2 $file
79aa1413 137 fi
7e37b984
ER
138}
139
d29ef356
ER
140# makes diff from kde svn path
141# requires: wget, tee
142kdediff() {
143 local url="$1"
144 # --- branches/KDE/3.5/kdepim/kpilot/conduits/vcalconduit/vcalRecord.cc #624744:624745
145 url=${url#*--- }
146 echo >&2 "Process $url"
147 r1=${url#*#}
148 r2=${r1#*:}
149 r1=${r1%:*}
150
151 # 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 152 # http://websvn.kde.org/branches/KDE/3.5/kdenetwork/kopete/protocols/oscar/aim/aimcontact.cpp?r1=609808&r2=673027&view=patch
d29ef356 153 url=http://websvn.kde.org/${url% *}
397a2489 154 url="$url?r1=$r1&r2=$r2&view=patch"
d29ef356
ER
155
156 if [ -t 1 ]; then
157 wget "$url" -O -| tee m.patch | diffcol
158 else
159 wget "$url" -O -
160 fi
161}
162
5e0caa68
ER
163# merges two patches
164# requires: patchutils
165pmerge() {
166 combinediff -p1 $1 $2 > m.patch || return
167 pclean m.patch
168 dif $1 m.patch
169}
170
7e37b984
ER
171# downloads sourceforge url from specific mirror
172sfget() {
173 local url="$1"
174 url="${url%?download}"
54e1e1fd
ER
175 url="${url%?use_mirror=*}"
176 url="${url#http://downloads.}"
7e37b984
ER
177 url="http://dl.${url#http://prdownloads.}"
178 # use mirror
179 local mirror="http://nchc.dl.sourceforge.net"
180 url="$mirror/sourceforge/${url#http://dl.sourceforge.net/}"
181 wget -c "$url"
182}
183
88e7bbe5
ER
184dif() {
185 if [ -t 1 ]; then
186 diff -ur "$@" | diffcol | less -R
187 else
188 diff -ur "$@"
189 fi
190}
191
192diffcol() {
193sed -e '
194 s,\e,\e[44m^[\e[49m,g;
195 s,\a,\e[44m^G\e[49m,g;
196 s,^\(Index:\|diff\|---\|+++\) .*$,\e[32m&,;
197 s,^@@ ,\e[33m&,;
198 s,^-,\e[35m&,;
199 s,^+,\e[36m&,;
200 s,\r,\e[44m^M\e[49m,g;
201 s, , ,g;
202 s,\([^[:space:]]\)\([[:space:]]\+\)$,\1\e[41m\2\e[49m,g;
203 s,$,\e[0m,
204' "$@"
205}
6ef19b16
ER
206
207# chdir to file location and do 'cvs log'
208cvslog() {
209 local f="$1"
0db4548a
ER
210 local d="${f%/*}"
211 [ "$d" = "$f" ] && d=.
212 (builtin cd $d && cvs log ${f##*/})
6ef19b16 213}
2d0b7430
ER
214
215# does diff between FILE and FILE~
924512bf 216# the diff can be applied with patch -p1
2d0b7430 217d() {
924512bf 218 local file="$1"
a0586a59 219 local dir
924512bf
ER
220 if [[ "$file" = /* ]]; then
221 # full path -- no idea where to strip
222 dir=.
223 diff=$file
224 else
225 # relative path -- keep one path component from current dir
226 dir=..
227 diff=${PWD##*/}/${file}
228 fi
229
230 (builtin cd "$dir"; dif $diff{~,})
2d0b7430 231}
This page took 0.061902 seconds and 4 git commands to generate.