]> git.pld-linux.org Git - packages/rpm-build-tools.git/blob - rpm-build.sh
- typos
[packages/rpm-build-tools.git] / rpm-build.sh
1 # shell aliases and functions for PLD Developer
2 # $Id$
3
4 # set $dist, used by functions below
5 [ -n "$dist" ] || dist=$(awk '/PLD Linux/ {print tolower($NF)}' /etc/pld-release 2>/dev/null | tr -d '()')
6
7 case "$dist" in
8 ac|th)
9         ;;
10 *)
11         # invalid one ;)
12         dist=
13 esac
14
15 if [ "$dist" ]; then
16
17 alias ipoldek-$dist="poldek -q --sn $dist --cmd"
18 alias $dist-requires="ipoldek-$dist what-requires"
19 alias $dist-provides="ipoldek-$dist what-provides"
20 alias $dist-tag="./builder -cf -T $(echo $dist | tr '[a-z]' '[A-Z]')-branch -r HEAD"
21 alias $dist-verify=dist-verify
22
23 # undo spec utf8
24 # note: it will do it blindly, so any lang other than -pl is most likely broken
25 specutfundo() {
26         local spec="$1"
27         iconv -futf8 -tlatin2 "$spec" > m
28         sed -e 's/\.UTF-8//' m > "$spec"
29         rm -f m
30 }
31
32 dist-verify() {
33         case "$dist" in
34         ac)
35                 local a ignore
36                 # typo
37                 ignore="$ignore kdenetwork-kopete-tool-conectionstatus"
38                 # obsoleted
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"
42
43                 for a in $ignore; do
44                         args="$args --ignore=$a"
45                 done
46                 ;;
47         esac
48
49         poldek --sn $dist --sn $dist-updates --up --upa -q
50         poldek --sn $dist --sn $dist-updates --noignore --verify=deps $args "$@"
51 }
52
53 # displays latest used tag for a specfile
54 autotag() {
55         local out
56         for a in "$@"; do
57                 s=${a%.spec}.spec
58                 out=$(cvs status -v $s | awk "/auto-$dist-/{if (!a++) print \$1}")
59                 echo "$s:$out"
60         done
61 }
62
63 fi # no $dist set
64
65 alias cv='cvs status -v'
66 alias 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"
67 alias pclean="sed -i~ -e '/^\(?\|=\+$\|unchanged:\|diff\|only\|Only\|Files\|Common\|Index:\|RCS file\|retrieving\)/d'"
68
69 # makes diff from PLD CVS urls
70 # requires: cvs, tee
71 urldiff() {
72         local url="$1"
73         if [ -z "$url" ]; then
74                 echo >&2 "Reading STDIN"
75                 read url
76         fi
77
78         echo >&2 "Process $url"
79         local file="$url"
80         file=${file#*SPECS/}
81         file=${file#*SOURCES/}
82         file=${file##*/}
83         local r1=${file#*r1=}
84         local r2=${r1#*r2=}
85         r2=${r2%%[&;]*}
86         r1=${r1%%[&;]*}
87         file=${file%\?*}
88         file=${file%.diff}
89
90         echo >&2 "$file: $r1 -> $r2"
91
92         if [ -t 1 ]; then
93                 cvs diff -u -r$r1 -r$r2 $file | tee m.patch | diffcol
94         else
95                 cvs diff -u -r$r1 -r$r2 $file
96         fi
97 }
98
99 # makes diff from kde svn path
100 # requires: wget, tee
101 kdediff() {
102         local url="$1"
103         # --- branches/KDE/3.5/kdepim/kpilot/conduits/vcalconduit/vcalRecord.cc #624744:624745
104         url=${url#*--- }
105         echo >&2 "Process $url"
106         r1=${url#*#}
107         r2=${r1#*:}
108         r1=${r1%:*}
109
110         #  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
111         #  http://websvn.kde.org/branches/KDE/3.5/kdenetwork/kopete/protocols/oscar/aim/aimcontact.cpp?r1=609808&r2=673027&view=patch
112         url=http://websvn.kde.org/${url% *}
113         url="$url?r1=$r1&r2=$r2&view=patch"
114
115         if [ -t 1 ]; then
116                 wget "$url" -O -| tee m.patch | diffcol
117         else
118                 wget "$url" -O -
119         fi
120 }
121
122 # merges two patches
123 # requires: patchutils
124 pmerge() {
125         combinediff -p1 $1 $2 > m.patch || return
126         pclean m.patch
127         dif $1 m.patch
128 }
129
130 # downloads sourceforge url from specific mirror
131 sfget() {
132         local url="$1"
133         url="${url%?download}"
134         url="${url%?use_mirror=*}"
135         url="${url#http://downloads.}"
136         url="http://dl.${url#http://prdownloads.}"
137         # use mirror
138         local mirror="http://nchc.dl.sourceforge.net"
139         url="$mirror/sourceforge/${url#http://dl.sourceforge.net/}"
140         wget -c "$url"
141 }
142
143 dif() {
144         if [ -t 1 ]; then
145                 diff -ur "$@" | diffcol | less -R
146         else
147                 diff -ur "$@"
148         fi
149 }
150
151 diffcol() {
152 sed -e '
153         s,\e,\e[44m^[\e[49m,g;
154         s,\a,\e[44m^G\e[49m,g;
155         s,^\(Index:\|diff\|---\|+++\) .*$,\e[32m&,;
156         s,^@@ ,\e[33m&,;
157         s,^-,\e[35m&,;
158         s,^+,\e[36m&,;
159         s,\r,\e[44m^M\e[49m,g;
160         s,      ,    ,g;
161         s,\([^[:space:]]\)\([[:space:]]\+\)$,\1\e[41m\2\e[49m,g;
162         s,$,\e[0m,
163 ' "$@"
164 }
165
166 # chdir to file location and do 'cvs log'
167 cvslog() {
168         local f="$1"
169         local d="${f%/*}"
170         [ "$d" = "$f" ] && d=.
171         (builtin cd $d && cvs log ${f##*/})
172 }
173
174 # does diff between FILE and FILE~
175 # the diff can be applied with patch -p1
176 d() {
177         local file="$1"
178         local dir
179         if [[ "$file" = /* ]]; then
180                 # full path -- no idea where to strip
181                 dir=.
182                 diff=$file
183         else
184                 # relative path -- keep one path component from current dir
185                 dir=..
186                 diff=${PWD##*/}/${file}
187         fi
188
189         (builtin cd "$dir"; dif $diff{~,})
190 }
This page took 0.074164 seconds and 3 git commands to generate.