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