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