]> git.pld-linux.org Git - packages/rpm-build-macros.git/blob - rpm-build.sh
drop kdediff, kde3.5 unmaintained and current kde in git probably
[packages/rpm-build-macros.git] / rpm-build.sh
1 # shell aliases and functions for PLD Developer
2
3 # set $dist, used by functions below
4 [ -n "$dist" ] || dist=$(awk '/PLD Linux/ {print tolower($NF)}' /etc/pld-release 2>/dev/null | tr -d '()')
5
6 case "$dist" in
7 ac|th|ti)
8         ;;
9 *)
10         # invalid one ;)
11         dist=
12 esac
13
14 if [ "$dist" ]; then
15
16 alias ipoldek-$dist="poldek -q --sn $dist --cmd"
17 alias $dist-provides="ipoldek-$dist what-provides"
18 alias $dist-tag="./builder -cf -T $(echo $dist | tr '[a-z]' '[A-Z]')-branch -r HEAD"
19 alias $dist-verify=dist-verify
20 alias $dist-requires=dist-requires
21
22 # undo spec utf8
23 # note: it will do it blindly, so any lang other than -pl is most likely broken
24 specutfundo() {
25         local spec="$1"
26         iconv -futf8 -tlatin2 "$spec" > m
27         sed -e 's/\.UTF-8//' m > "$spec"
28         rm -f m
29 }
30
31 dist-requires() {
32         local opts deps
33         while [ $# -gt 0 ]; do
34                 case "$1" in
35                 --sn)
36                         opts="$opts $1 $2"
37                         shift
38                         ;;
39                 -*)
40                         opts="$opts $1"
41                         ;;
42                 *)
43                         deps="$deps $1"
44                         ;;
45                 esac
46                 shift
47         done
48
49         case "$dist" in
50         ac)
51                 opts="$opts --sn=$dist-updates"
52                 ;;
53         esac
54
55         poldek -q -Q --sn $dist $opts --cmd what-requires $deps
56 }
57
58 dist-verify() {
59         local args sn
60         sn="--sn $dist"
61
62         case "$dist" in
63         ac)
64                 sn="$sn --sn $dist-updates"
65
66                 local a ignore
67                 # typo
68                 ignore="$ignore kdenetwork-kopete-tool-conectionstatus"
69                 # obsoleted
70                 ignore="$ignore gimp-plugin-swfdec wine-drv-arts ntp-ntptrace"
71                 # quake2@MAIN is now quake2forge, original quake2 restored to quake2
72                 ignore="$ignore quake2-3dfx quake2-sdl quake2-sgl quake2-snd-alsa quake2-snd-ao quake2-snd-oss quake2-snd-sdl quake2-static"
73                 # obsoleted
74                 ignore="$ignore mozilla-firefox-lang-en apache1-mod_perl-devel libyasm-static"
75                 # renamed (courier-authlib.spec, r1.54)
76                 ignore="$ignore courier-authlib-userdb courier-authlib-pipe"
77                 # obsoleted, squid 2.6
78                 ignore="$ignore squid-winbind_acl squid-winbind_auth"
79                 # obsoleted with 1.0.4
80                 ignore="$ignore python-numpy-FFT python-numpy-MA python-numpy-RNG"
81                 # subpkgs renamed
82                 ignore="$ignore apache1-doc apache1-index"
83                 # obsoleted by kadu-module-mediaplayer-amarok
84                 ignore="$ignore kadu-module-amarok"
85                 # obsoleted by kadu-module-mediaplayer-xmms
86                 ignore="$ignore kadu-module-xmms"
87                 # obsoleted by kadu 0.6.0
88                 ignore="$ignore kadu-theme-icons-crystal16 kadu-theme-icons-crystal22 kadu-theme-icons-nuvola16 kadu-theme-icons-nuvola22 kadu-module-iwait4u"
89                 # obsoleted pear test packages
90                 ignore="$ignore php-*-tests"
91                 # obsoleted
92                 ignore="$ignore nmap-X11"
93                 # mksd dependency not distributale
94                 ignore="$ignore samba-vfs-vscan-mks"
95                 # ibbackup is not distributale
96                 ignore="$ignore innobackup"
97                 # use ac-updates
98                 ignore="$ignore ntp-client ntp"
99                 # php4 only(php-pecl-tidy), for php<5.2(php-pecl-filter)
100                 ignore="$ignore php-pecl-tidy php-pecl-filter"
101
102                 # renamed to vim-syntax-txt2tags
103                 ignore="$ignore txt2tags-vim"
104
105                 for a in $ignore; do
106                         args="$args --ignore=$a"
107                 done
108                 ;;
109         esac
110
111         poldek $sn --up --upa -q "$@"
112         poldek $sn --uniq --noignore --verify=deps $args "$@"
113 }
114
115 # displays latest used tag for a specfile
116 autotag() {
117         local out s
118         for s in "$@"; do
119                 # strip branches
120                 s=${s%:*}
121                 # ensure package ends with .spec
122                 s=${s%.spec}.spec
123                 git fetch --tags
124                 out=$(git for-each-ref --count=1 --sort=-authordate refs/tags/auto/$dist \
125                         --format='%(refname:short)')
126                 echo "$s:$out"
127         done
128 }
129
130 get-buildlog() {
131         local p=$1
132         if [ -z "$p" ]; then
133                 echo >&2 "Usage: get-buildlog PACKAGE"
134                 echo >&2 ""
135                 echo >&2 "Grabs buildlogs from pld builder for all arch."
136                 return
137         fi
138
139         local archlist
140         case "$dist" in
141         ac)
142                 archlist='i686 i586 i386 athlon alpha sparc amd64 ppc'
143                 ;;
144         th)
145                 archlist='x86_64 i486 i686'
146                 ;;
147         *)
148                 echo >&2 "get-buildlog: $dist buildlogs are /dev/null"
149                 return
150         esac
151
152         local url arch path ftp=ftp://buildlogs.pld-linux.org
153         for arch in $archlist; do
154                 [ "$arch" ] || continue
155                 path=${url#$ftp}
156                 echo -n "Checking $p.$arch... "
157                 url=$(lftp -c "debug 0;open $ftp; cls --sort=date -r /$dist/$arch/OK/$p,*.bz2 /$dist/$arch/FAIL/$p,*.bz2 | tail -n1")
158                 url=$ftp$url
159
160                 echo -n "$url... "
161                 if wget -q $url -O .$p~; then
162                         echo "OK"
163                         mv -f .$p~ $p.$arch.bz2
164                 else
165                         echo "SKIP"
166                         rm -f .$p~
167                 fi
168         done
169 }
170
171 fi # no $dist set
172
173 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"
174 alias pclean="sed -i~ -e '/^\(?\|=\+$\|unchanged:\|diff\|only\|Only\|Files\|Common\|Index:\|RCS file\|retrieving\)/d'"
175
176 # merges two patches
177 # requires: patchutils
178 pmerge() {
179         combinediff -p1 $1 $2 > m.patch || return
180         pclean m.patch
181         dif $1 m.patch
182 }
183
184 # downloads sourceforge url from specific mirror
185 sfget() {
186         local url="$1"
187         url="${url%?download}"
188         url="${url%?use_mirror=*}"
189         url="${url#http://downloads.}"
190         url="http://dl.${url#http://prdownloads.}"
191         # use mirror
192         local mirror="http://nchc.dl.sourceforge.net"
193         url="$mirror/sourceforge/${url#http://dl.sourceforge.net/}"
194         wget -c "$url"
195 }
196
197 dif() {
198         if [ -t 1 ]; then
199                 diff -ur -x .svn -x .git -x .bzr -x CVS "$@" | diffcol | less -R
200         else
201                 diff -ur -x .svn -x .git -x .bzr -x CVS "$@"
202         fi
203 }
204
205 diffcol() {
206 sed -e '
207         s,\e,\e[44m^[\e[49m,g;
208         s,\a,\e[44m^G\e[49m,g;
209         s,^\(Index:\|diff\|---\|+++\) .*$,\e[32m&,;
210         s,^@@ ,\e[33m&,;
211         s,^-,\e[35m&,;
212         s,^+,\e[36m&,;
213         s,\r,\e[44m^M\e[49m,g;
214         s,      ,    ,g;
215         s,\([^[:space:]]\)\([[:space:]]\+\)$,\1\e[41m\2\e[49m,g;
216         s,$,\e[0m,
217 ' ${1:+"$@"}
218 }
219
220 # does diff between FILE~ and FILE
221 # the diff can be applied with patch -p1
222 d() {
223         local file="$1"
224         local dir diff
225         if [[ "$file" = /* ]]; then
226                 # full path -- no idea where to strip
227                 dir=.
228                 diff=$file
229         else
230                 # relative path -- keep one path component from current dir
231                 dir=..
232                 diff=${PWD##*/}/${file}
233         fi
234
235         (builtin cd "$dir"; dif $diff{~,})
236 }
237
238 rpmb() {
239         local SPEC SPECDIR arg
240         for arg in "$@"; do
241                 case "$arg" in
242                         *.spec) SPEC="$arg"
243                                 ;;
244                 esac
245         done
246         SPECDIR=$(dirname "$(pwd)/${SPEC:-.}")
247         command rpmbuild --define "_specdir $SPECDIR" --define "_sourcedir $SPECDIR" "$@"
248 }
This page took 0.302616 seconds and 3 git commands to generate.