]> git.pld-linux.org Git - packages/rpm-build-tools.git/blame - shrc.sh
shrc: cleanup cv, cvslog - cvs specific tools
[packages/rpm-build-tools.git] / shrc.sh
CommitLineData
7e37b984
ER
1# shell aliases and functions for PLD Developer
2
2e6b7800 3# set $dist, used by functions below
c8a54e84
ER
4[ -n "$dist" ] || dist=$(awk '/PLD Linux/ {print tolower($NF)}' /etc/pld-release 2>/dev/null | tr -d '()')
5
6case "$dist" in
15aa13b9 7ac|th|ti)
c8a54e84
ER
8 ;;
9*)
10 # invalid one ;)
11 dist=
12esac
2e6b7800 13
5e0caa68 14if [ "$dist" ]; then
7e37b984 15
d392508c 16alias ipoldek-$dist="poldek -q --sn $dist --cmd"
d392508c 17alias $dist-provides="ipoldek-$dist what-provides"
2e6b7800 18alias $dist-verify=dist-verify
c48232ce 19alias $dist-requires=dist-requires
2e6b7800 20
5d6ca156
ER
21# move AC-branch tag to current checkout
22# if AC-branch as branch exists, it is first removed
5d6ca156
ER
23ac-tag() {
24 # see if remote has branch present
1f4470d7 25 local branch=AC-branch
aea94aaf
ER
26 if git show-ref -q refs/remotes/origin/$branch; then
27 if [ -z "$(git tag --points-at $branch 2>/dev/null)" ]; then
1f4470d7
ER
28 echo >&2 "There's no tag pointing to current $branch; refusing to delete branch"
29 return 1
30 fi
31 git push --delete origin $branch
5d6ca156
ER
32 fi
33
1f4470d7
ER
34 git tag -f $branch
35 git push origin $branch
5d6ca156
ER
36}
37
6ebe30c9
ER
38# undo spec utf8
39# note: it will do it blindly, so any lang other than -pl is most likely broken
40specutfundo() {
41 local spec="$1"
42 iconv -futf8 -tlatin2 "$spec" > m
43 sed -e 's/\.UTF-8//' m > "$spec"
44 rm -f m
45}
46
c48232ce
ER
47dist-requires() {
48 local opts deps
49 while [ $# -gt 0 ]; do
50 case "$1" in
51 --sn)
52 opts="$opts $1 $2"
53 shift
54 ;;
55 -*)
56 opts="$opts $1"
57 ;;
58 *)
59 deps="$deps $1"
60 ;;
61 esac
62 shift
63 done
f43b3983
ER
64
65 case "$dist" in
66 ac)
67 opts="$opts --sn=$dist-updates"
68 ;;
69 esac
70
71 poldek -q -Q --sn $dist $opts --cmd what-requires $deps
c48232ce
ER
72}
73
37ae34a0 74dist-verify() {
70d18f4d
ER
75 local args sn
76 sn="--sn $dist"
3e963c20 77
b15006fb
ER
78 case "$dist" in
79 ac)
70d18f4d
ER
80 sn="$sn --sn $dist-updates"
81
bec0be2e 82 local a ignore
eaca9a85
ER
83 # typo
84 ignore="$ignore kdenetwork-kopete-tool-conectionstatus"
25fd7f1b 85 # obsoleted
eaca9a85
ER
86 ignore="$ignore gimp-plugin-swfdec wine-drv-arts ntp-ntptrace"
87 # quake2@MAIN is now quake2forge, original quake2 restored to quake2
88 ignore="$ignore quake2-3dfx quake2-sdl quake2-sgl quake2-snd-alsa quake2-snd-ao quake2-snd-oss quake2-snd-sdl quake2-static"
25fd7f1b
ER
89 # obsoleted
90 ignore="$ignore mozilla-firefox-lang-en apache1-mod_perl-devel libyasm-static"
eb06631a
ER
91 # renamed (courier-authlib.spec, r1.54)
92 ignore="$ignore courier-authlib-userdb courier-authlib-pipe"
4876f0af
ER
93 # obsoleted, squid 2.6
94 ignore="$ignore squid-winbind_acl squid-winbind_auth"
6bf0c9cd
ER
95 # obsoleted with 1.0.4
96 ignore="$ignore python-numpy-FFT python-numpy-MA python-numpy-RNG"
a7498178
ER
97 # subpkgs renamed
98 ignore="$ignore apache1-doc apache1-index"
0e1522d9
ER
99 # obsoleted by kadu-module-mediaplayer-amarok
100 ignore="$ignore kadu-module-amarok"
101 # obsoleted by kadu-module-mediaplayer-xmms
102 ignore="$ignore kadu-module-xmms"
103 # obsoleted by kadu 0.6.0
92a62be8 104 ignore="$ignore kadu-theme-icons-crystal16 kadu-theme-icons-crystal22 kadu-theme-icons-nuvola16 kadu-theme-icons-nuvola22 kadu-module-iwait4u"
c937c6db
ER
105 # obsoleted pear test packages
106 ignore="$ignore php-*-tests"
0ead02ef
ER
107 # obsoleted
108 ignore="$ignore nmap-X11"
109 # mksd dependency not distributale
110 ignore="$ignore samba-vfs-vscan-mks"
111 # ibbackup is not distributale
112 ignore="$ignore innobackup"
3373d30b
ER
113 # use ac-updates
114 ignore="$ignore ntp-client ntp"
54c11aa2
ER
115 # php4 only(php-pecl-tidy), for php<5.2(php-pecl-filter)
116 ignore="$ignore php-pecl-tidy php-pecl-filter"
0ead02ef 117
3e963c20
ER
118 # renamed to vim-syntax-txt2tags
119 ignore="$ignore txt2tags-vim"
0ead02ef 120
bec0be2e 121 for a in $ignore; do
eaca9a85
ER
122 args="$args --ignore=$a"
123 done
b15006fb
ER
124 ;;
125 esac
126
70d18f4d 127 poldek $sn --up --upa -q "$@"
6bf0c9cd 128 poldek $sn --uniq --noignore --verify=deps $args "$@"
2e6b7800 129}
a5ab8a8f 130
5e0caa68
ER
131# displays latest used tag for a specfile
132autotag() {
286a9a85
ER
133 local out s
134 for s in "$@"; do
135 # strip branches
136 s=${s%:*}
137 # ensure package ends with .spec
138 s=${s%.spec}.spec
d3124c6e 139 git fetch --tags
6e820567
KK
140 out=$(git for-each-ref --count=1 --sort=-authordate refs/tags/auto/$dist \
141 --format='%(refname:short)')
5e0caa68
ER
142 echo "$s:$out"
143 done
7e37b984
ER
144}
145
3bc010e2
ER
146get-buildlog() {
147 local p=$1
148 if [ -z "$p" ]; then
149 echo >&2 "Usage: get-buildlog PACKAGE"
150 echo >&2 ""
151 echo >&2 "Grabs buildlogs from pld builder for all arch."
152 return
153 fi
154
d6f9dd1b 155 local archlist
3bc010e2
ER
156 case "$dist" in
157 ac)
d6f9dd1b 158 archlist='i686 i586 i386 athlon alpha sparc amd64 ppc'
3bc010e2
ER
159 ;;
160 th)
d6f9dd1b 161 archlist='x86_64 i486 i686'
3bc010e2
ER
162 ;;
163 *)
164 echo >&2 "get-buildlog: $dist buildlogs are /dev/null"
165 return
166 esac
167
aa1d27ff 168 local url arch path ftp=ftp://buildlogs.pld-linux.org
d6f9dd1b
ER
169 for arch in $archlist; do
170 [ "$arch" ] || continue
171 path=${url#$ftp}
172 echo -n "Checking $p.$arch... "
173 url=$(lftp -c "debug 0;open $ftp; cls --sort=date -r /$dist/$arch/OK/$p,*.bz2 /$dist/$arch/FAIL/$p,*.bz2 | tail -n1")
174 url=$ftp$url
175
176 echo -n "$url... "
177 if wget -q $url -O .$p~; then
3bc010e2 178 echo "OK"
d6f9dd1b 179 mv -f .$p~ $p.$arch.bz2
3bc010e2
ER
180 else
181 echo "SKIP"
182 rm -f .$p~
183 fi
184 done
185}
186
5e0caa68
ER
187fi # no $dist set
188
5e0caa68
ER
189alias 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"
190alias pclean="sed -i~ -e '/^\(?\|=\+$\|unchanged:\|diff\|only\|Only\|Files\|Common\|Index:\|RCS file\|retrieving\)/d'"
191
7e37b984 192# makes diff from PLD CVS urls
d29ef356 193# requires: cvs, tee
7e37b984
ER
194urldiff() {
195 local url="$1"
196 if [ -z "$url" ]; then
197 echo >&2 "Reading STDIN"
198 read url
199 fi
200
201 echo >&2 "Process $url"
202 local file="$url"
203 file=${file#*SPECS/}
204 file=${file#*SOURCES/}
205 file=${file##*/}
206 local r1=${file#*r1=}
207 local r2=${r1#*r2=}
8c550ffc 208 r2=${r2%%[&;]*}
7765da19 209 r1=${r1%%[&;]*}
7e37b984 210 file=${file%\?*}
7765da19 211 file=${file%.diff}
7e37b984
ER
212
213 echo >&2 "$file: $r1 -> $r2"
79aa1413
ER
214
215 if [ -t 1 ]; then
ce56ac3b
ER
216 cvs diff -u -r$r1 -r$r2 $file | tee m.patch | diffcol
217 else
218 cvs diff -u -r$r1 -r$r2 $file
79aa1413 219 fi
7e37b984
ER
220}
221
d29ef356
ER
222# makes diff from kde svn path
223# requires: wget, tee
224kdediff() {
15a4aede 225 local url="$1" r1 r2
d29ef356
ER
226 # --- branches/KDE/3.5/kdepim/kpilot/conduits/vcalconduit/vcalRecord.cc #624744:624745
227 url=${url#*--- }
228 echo >&2 "Process $url"
229 r1=${url#*#}
230 r2=${r1#*:}
231 r1=${r1%:*}
232
233 # 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 234 # http://websvn.kde.org/branches/KDE/3.5/kdenetwork/kopete/protocols/oscar/aim/aimcontact.cpp?r1=609808&r2=673027&view=patch
d29ef356 235 url=http://websvn.kde.org/${url% *}
397a2489 236 url="$url?r1=$r1&r2=$r2&view=patch"
d29ef356
ER
237
238 if [ -t 1 ]; then
239 wget "$url" -O -| tee m.patch | diffcol
240 else
241 wget "$url" -O -
242 fi
243}
244
5e0caa68
ER
245# merges two patches
246# requires: patchutils
247pmerge() {
248 combinediff -p1 $1 $2 > m.patch || return
249 pclean m.patch
250 dif $1 m.patch
251}
252
7e37b984
ER
253# downloads sourceforge url from specific mirror
254sfget() {
255 local url="$1"
256 url="${url%?download}"
54e1e1fd
ER
257 url="${url%?use_mirror=*}"
258 url="${url#http://downloads.}"
7e37b984
ER
259 url="http://dl.${url#http://prdownloads.}"
260 # use mirror
261 local mirror="http://nchc.dl.sourceforge.net"
262 url="$mirror/sourceforge/${url#http://dl.sourceforge.net/}"
263 wget -c "$url"
264}
265
88e7bbe5
ER
266dif() {
267 if [ -t 1 ]; then
d6f9dd1b 268 diff -ur -x .svn -x .git -x .bzr -x CVS "$@" | diffcol | less -R
88e7bbe5 269 else
d6f9dd1b 270 diff -ur -x .svn -x .git -x .bzr -x CVS "$@"
88e7bbe5
ER
271 fi
272}
273
274diffcol() {
275sed -e '
276 s,\e,\e[44m^[\e[49m,g;
277 s,\a,\e[44m^G\e[49m,g;
278 s,^\(Index:\|diff\|---\|+++\) .*$,\e[32m&,;
279 s,^@@ ,\e[33m&,;
280 s,^-,\e[35m&,;
281 s,^+,\e[36m&,;
001e6af4 282 s,\r,\e[44m^M\e[49m,g;
88e7bbe5
ER
283 s, , ,g;
284 s,\([^[:space:]]\)\([[:space:]]\+\)$,\1\e[41m\2\e[49m,g;
285 s,$,\e[0m,
28cd815f 286' ${1:+"$@"}
88e7bbe5 287}
6ef19b16 288
83744afa 289# does diff between FILE~ and FILE
924512bf 290# the diff can be applied with patch -p1
2d0b7430 291d() {
924512bf 292 local file="$1"
15a4aede 293 local dir diff
924512bf
ER
294 if [[ "$file" = /* ]]; then
295 # full path -- no idea where to strip
296 dir=.
297 diff=$file
298 else
299 # relative path -- keep one path component from current dir
300 dir=..
301 diff=${PWD##*/}/${file}
302 fi
303
304 (builtin cd "$dir"; dif $diff{~,})
2d0b7430 305}
15a4aede 306
e7a82b31 307rpmb() {
15a4aede 308 local SPEC SPECDIR arg
92037b96 309 for arg in "$@"; do
e7a82b31
TP
310 case "$arg" in
311 *.spec) SPEC="$arg"
312 ;;
313 esac
314 done
315 SPECDIR=$(dirname "$(pwd)/${SPEC:-.}")
92037b96 316 command rpmbuild --define "_specdir $SPECDIR" --define "_sourcedir $SPECDIR" "$@"
e7a82b31 317}
This page took 0.500511 seconds and 4 git commands to generate.