]> git.pld-linux.org Git - packages/rpm-build-tools.git/blame - rpm-build.sh
- ti probably valid one too
[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
ER
17alias ipoldek-$dist="poldek -q --sn $dist --cmd"
18alias $dist-requires="ipoldek-$dist what-requires"
19alias $dist-provides="ipoldek-$dist what-provides"
2e6b7800
ER
20alias $dist-tag="./builder -cf -T $(echo $dist | tr '[a-z]' '[A-Z]')-branch -r HEAD"
21alias $dist-verify=dist-verify
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
37ae34a0 32dist-verify() {
b15006fb
ER
33 case "$dist" in
34 ac)
bec0be2e 35 local a ignore
eaca9a85
ER
36 # typo
37 ignore="$ignore kdenetwork-kopete-tool-conectionstatus"
25fd7f1b 38 # obsoleted
eaca9a85
ER
39 ignore="$ignore gimp-plugin-swfdec wine-drv-arts ntp-ntptrace"
40 # quake2@MAIN is now quake2forge, original quake2 restored to quake2
41 ignore="$ignore quake2-3dfx quake2-sdl quake2-sgl quake2-snd-alsa quake2-snd-ao quake2-snd-oss quake2-snd-sdl quake2-static"
25fd7f1b
ER
42 # obsoleted
43 ignore="$ignore mozilla-firefox-lang-en apache1-mod_perl-devel libyasm-static"
eb06631a
ER
44 # renamed (courier-authlib.spec, r1.54)
45 ignore="$ignore courier-authlib-userdb courier-authlib-pipe"
4876f0af
ER
46 # obsoleted, squid 2.6
47 ignore="$ignore squid-winbind_acl squid-winbind_auth"
bec0be2e 48 for a in $ignore; do
eaca9a85
ER
49 args="$args --ignore=$a"
50 done
b15006fb
ER
51 ;;
52 esac
53
15aa13b9 54 poldek --sn $dist --sn $dist-updates --up --upa -q "$@"
6a000177 55 poldek --sn $dist --sn $dist-updates --noignore --verify=deps $args "$@"
2e6b7800 56}
a5ab8a8f 57
5e0caa68
ER
58# displays latest used tag for a specfile
59autotag() {
60 local out
61 for a in "$@"; do
62 s=${a%.spec}.spec
63 out=$(cvs status -v $s | awk "/auto-$dist-/{if (!a++) print \$1}")
64 echo "$s:$out"
65 done
7e37b984
ER
66}
67
5e0caa68
ER
68fi # no $dist set
69
70alias cv='cvs status -v'
71alias 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"
72alias pclean="sed -i~ -e '/^\(?\|=\+$\|unchanged:\|diff\|only\|Only\|Files\|Common\|Index:\|RCS file\|retrieving\)/d'"
73
7e37b984 74# makes diff from PLD CVS urls
d29ef356 75# requires: cvs, tee
7e37b984
ER
76urldiff() {
77 local url="$1"
78 if [ -z "$url" ]; then
79 echo >&2 "Reading STDIN"
80 read url
81 fi
82
83 echo >&2 "Process $url"
84 local file="$url"
85 file=${file#*SPECS/}
86 file=${file#*SOURCES/}
87 file=${file##*/}
88 local r1=${file#*r1=}
89 local r2=${r1#*r2=}
8c550ffc 90 r2=${r2%%[&;]*}
7765da19 91 r1=${r1%%[&;]*}
7e37b984 92 file=${file%\?*}
7765da19 93 file=${file%.diff}
7e37b984
ER
94
95 echo >&2 "$file: $r1 -> $r2"
79aa1413
ER
96
97 if [ -t 1 ]; then
ce56ac3b
ER
98 cvs diff -u -r$r1 -r$r2 $file | tee m.patch | diffcol
99 else
100 cvs diff -u -r$r1 -r$r2 $file
79aa1413 101 fi
7e37b984
ER
102}
103
d29ef356
ER
104# makes diff from kde svn path
105# requires: wget, tee
106kdediff() {
107 local url="$1"
108 # --- branches/KDE/3.5/kdepim/kpilot/conduits/vcalconduit/vcalRecord.cc #624744:624745
109 url=${url#*--- }
110 echo >&2 "Process $url"
111 r1=${url#*#}
112 r2=${r1#*:}
113 r1=${r1%:*}
114
115 # 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 116 # http://websvn.kde.org/branches/KDE/3.5/kdenetwork/kopete/protocols/oscar/aim/aimcontact.cpp?r1=609808&r2=673027&view=patch
d29ef356 117 url=http://websvn.kde.org/${url% *}
397a2489 118 url="$url?r1=$r1&r2=$r2&view=patch"
d29ef356
ER
119
120 if [ -t 1 ]; then
121 wget "$url" -O -| tee m.patch | diffcol
122 else
123 wget "$url" -O -
124 fi
125}
126
5e0caa68
ER
127# merges two patches
128# requires: patchutils
129pmerge() {
130 combinediff -p1 $1 $2 > m.patch || return
131 pclean m.patch
132 dif $1 m.patch
133}
134
7e37b984
ER
135# downloads sourceforge url from specific mirror
136sfget() {
137 local url="$1"
138 url="${url%?download}"
54e1e1fd
ER
139 url="${url%?use_mirror=*}"
140 url="${url#http://downloads.}"
7e37b984
ER
141 url="http://dl.${url#http://prdownloads.}"
142 # use mirror
143 local mirror="http://nchc.dl.sourceforge.net"
144 url="$mirror/sourceforge/${url#http://dl.sourceforge.net/}"
145 wget -c "$url"
146}
147
88e7bbe5
ER
148dif() {
149 if [ -t 1 ]; then
150 diff -ur "$@" | diffcol | less -R
151 else
152 diff -ur "$@"
153 fi
154}
155
156diffcol() {
157sed -e '
158 s,\e,\e[44m^[\e[49m,g;
159 s,\a,\e[44m^G\e[49m,g;
160 s,^\(Index:\|diff\|---\|+++\) .*$,\e[32m&,;
161 s,^@@ ,\e[33m&,;
162 s,^-,\e[35m&,;
163 s,^+,\e[36m&,;
164 s,\r,\e[44m^M\e[49m,g;
165 s, , ,g;
166 s,\([^[:space:]]\)\([[:space:]]\+\)$,\1\e[41m\2\e[49m,g;
167 s,$,\e[0m,
168' "$@"
169}
6ef19b16
ER
170
171# chdir to file location and do 'cvs log'
172cvslog() {
173 local f="$1"
0db4548a
ER
174 local d="${f%/*}"
175 [ "$d" = "$f" ] && d=.
176 (builtin cd $d && cvs log ${f##*/})
6ef19b16 177}
2d0b7430
ER
178
179# does diff between FILE and FILE~
924512bf 180# the diff can be applied with patch -p1
2d0b7430 181d() {
924512bf 182 local file="$1"
a0586a59 183 local dir
924512bf
ER
184 if [[ "$file" = /* ]]; then
185 # full path -- no idea where to strip
186 dir=.
187 diff=$file
188 else
189 # relative path -- keep one path component from current dir
190 dir=..
191 diff=${PWD##*/}/${file}
192 fi
193
194 (builtin cd "$dir"; dif $diff{~,})
2d0b7430 195}
This page took 0.068768 seconds and 4 git commands to generate.