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