]> git.pld-linux.org Git - packages/rpm-build-macros.git/blame - rpm-build.sh
- up to 1.398
[packages/rpm-build-macros.git] / rpm-build.sh
CommitLineData
c8e059d2 1# shell aliases and functions for PLD Developer
2b7ced4e 2# $Id$
c8e059d2 3
6fe6a2a4 4# set $dist, used by functions below
5c2093ec
ER
5[ -n "$dist" ] || dist=$(awk '/PLD Linux/ {print tolower($NF)}' /etc/pld-release 2>/dev/null | tr -d '()')
6
7case "$dist" in
8ac|th)
9 ;;
10*)
11 # invalid one ;)
12 dist=
13esac
6fe6a2a4 14
e85b9743 15if [ "$dist" ]; then
c8e059d2 16
289dcc48
ER
17alias ipoldek-$dist="poldek -q --sn $dist --cmd"
18alias $dist-requires="ipoldek-$dist what-requires"
19alias $dist-provides="ipoldek-$dist what-provides"
6fe6a2a4
ER
20alias $dist-tag="./builder -cf -T $(echo $dist | tr '[a-z]' '[A-Z]')-branch -r HEAD"
21alias $dist-verify=dist-verify
22
e847eeee
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
d2023b7e 32dist-verify() {
170b0c4e
ER
33 case "$dist" in
34 ac)
62adbc5c 35 args='--ignore=kdenetwork-kopete-tool-conectionstatus --ignore=gimp-plugin-swfdec --ignore=wine-drv-arts --ignore=ntp-ntptrace'
170b0c4e
ER
36 ;;
37 esac
38
1210572b 39 poldek --sn $dist --sn $dist-updates --up --upa -q
e8a6b2ff 40 poldek --sn $dist --sn $dist-updates --noignore --verify=deps $args "$@"
6fe6a2a4 41}
8a437893 42
e85b9743
ER
43# displays latest used tag for a specfile
44autotag() {
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
c8e059d2
ER
51}
52
e85b9743
ER
53fi # no $dist set
54
55alias cv='cvs status -v'
56alias 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"
57alias pclean="sed -i~ -e '/^\(?\|=\+$\|unchanged:\|diff\|only\|Only\|Files\|Common\|Index:\|RCS file\|retrieving\)/d'"
58
c8e059d2 59# makes diff from PLD CVS urls
c29353a7 60# requires: cvs, tee
c8e059d2
ER
61urldiff() {
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=}
4e29310e 75 r2=${r2%%[&;]*}
d6b37e93 76 r1=${r1%%[&;]*}
c8e059d2 77 file=${file%\?*}
d6b37e93 78 file=${file%.diff}
c8e059d2
ER
79
80 echo >&2 "$file: $r1 -> $r2"
a5e372c8
ER
81
82 if [ -t 1 ]; then
adeebf51
ER
83 cvs diff -u -r$r1 -r$r2 $file | tee m.patch | diffcol
84 else
85 cvs diff -u -r$r1 -r$r2 $file
a5e372c8 86 fi
c8e059d2
ER
87}
88
c29353a7
ER
89# makes diff from kde svn path
90# requires: wget, tee
91kdediff() {
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
1210572b 101 # http://websvn.kde.org/branches/KDE/3.5/kdenetwork/kopete/protocols/oscar/aim/aimcontact.cpp?r1=609808&r2=673027&view=patch
c29353a7 102 url=http://websvn.kde.org/${url% *}
1210572b 103 url="$url?r1=$r1&r2=$r2&view=patch"
c29353a7
ER
104
105 if [ -t 1 ]; then
106 wget "$url" -O -| tee m.patch | diffcol
107 else
108 wget "$url" -O -
109 fi
110}
111
e85b9743
ER
112# merges two patches
113# requires: patchutils
114pmerge() {
115 combinediff -p1 $1 $2 > m.patch || return
116 pclean m.patch
117 dif $1 m.patch
118}
119
c8e059d2
ER
120# downloads sourceforge url from specific mirror
121sfget() {
122 local url="$1"
123 url="${url%?download}"
8ba44595
ER
124 url="${url%?use_mirror=*}"
125 url="${url#http://downloads.}"
c8e059d2
ER
126 url="http://dl.${url#http://prdownloads.}"
127 # use mirror
128 local mirror="http://nchc.dl.sourceforge.net"
129 url="$mirror/sourceforge/${url#http://dl.sourceforge.net/}"
130 wget -c "$url"
131}
132
aa560f74
ER
133dif() {
134 if [ -t 1 ]; then
135 diff -ur "$@" | diffcol | less -R
136 else
137 diff -ur "$@"
138 fi
139}
140
141diffcol() {
142sed -e '
143 s,\e,\e[44m^[\e[49m,g;
144 s,\a,\e[44m^G\e[49m,g;
145 s,^\(Index:\|diff\|---\|+++\) .*$,\e[32m&,;
146 s,^@@ ,\e[33m&,;
147 s,^-,\e[35m&,;
148 s,^+,\e[36m&,;
149 s,\r,\e[44m^M\e[49m,g;
150 s, , ,g;
151 s,\([^[:space:]]\)\([[:space:]]\+\)$,\1\e[41m\2\e[49m,g;
152 s,$,\e[0m,
153' "$@"
154}
bb13b717
ER
155
156# chdir to file location and do 'cvs log'
157cvslog() {
158 local f="$1"
1887ad1b
ER
159 local d="${f%/*}"
160 [ "$d" = "$f" ] && d=.
161 (builtin cd $d && cvs log ${f##*/})
bb13b717 162}
ed1023ef
ER
163
164# does diff between FILE and FILE~
524e21d9 165# the diff can be applied with patch -p1
ed1023ef 166d() {
524e21d9 167 local file="$1"
1ee5f614 168 local dir
524e21d9
ER
169 if [[ "$file" = /* ]]; then
170 # full path -- no idea where to strip
171 dir=.
172 diff=$file
173 else
174 # relative path -- keep one path component from current dir
175 dir=..
176 diff=${PWD##*/}/${file}
177 fi
178
179 (builtin cd "$dir"; dif $diff{~,})
ed1023ef 180}
This page took 0.080615 seconds and 4 git commands to generate.