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