]> git.pld-linux.org Git - packages/vim.git/blame - update-source.sh
- rebuild with ruby 2.4
[packages/vim.git] / update-source.sh
CommitLineData
c12e8e1b
ER
1#!/bin/sh
2# Usage:
cbe35070 3# ./update-source.sh
c12e8e1b
ER
4# env variables controlling behaviour
5# build_package=[0|1] - build package when new version is fetched
6# publish_packages=[0|1] - publish built packages in ~/public_html/$dist/$arch
7# quiet=[0|1] - discard stdout of process
8
28562ca8 9# there's "patches" branch which mixes tarball and patches
726a7095
ER
10echo >&2 This script no longer works
11exit 1
12
c12e8e1b
ER
13# work in package dir
14dir=$(dirname "$0")
15cd "$dir"
16
9e39b66b
ER
17update_sources() {
18 local ver="$1"
19 local patch msg over file
20
21 echo "Updating $specfile to $ver"
22 patch=${ver#$basever.}
23 if [ -z "$patch" ]; then
24 echo >&2 "Will not set empty patchlevel"
25 exit 1
26 fi
27 sed -i -e "
28 s/^\(%define[ \t]\+patchlevel[ \t]\+\)[0-9]\+\$/\1$patch/
29 s/^\(%define[ \t]\+rel[ \t]\+\)[0-9.]\+\$/\11/
30 " $specfile
31
32 # fetch missing/mismatching files manually. faster than builder script does that
33 md5sum -c sources 2>/dev/null | awk -F: '$NF != " OK" {print $1}' | while read file; do
34 echo "$baseurl/$file"
35 done | wget -nv -i -
36
37 WGET_OPTS="-nv" ../builder -g $specfile
38
39 if [ "$build_package" != 0 ]; then
40 build_package
41 fi
42
43 # autocommit
44 msg=$(mktemp)
45 echo "updated to $ver" > $msg
46 echo "" >> $msg
47 over=$(git diff sources | awk '/^\+[0-9a-f]+/{over=$NF; gsub(/\./, "\\.",over); print over; exit}')
48 sed -ne "/$over/,\$p" README.patches | sed -re 's,^[ 0-9]+ ,,' >> $msg
49 git commit -F $msg $specfile sources
50 rm -f $msg
51}
52
53build_package() {
54 local logfile=$outdir/$pkg.log
55
56 install -d $rpmdir
57
58 # setup custom logfile via $HOME_ETC hack
59 # TODO: just add --logfile support for builder
60 cat > $outdir/.builderrc <<-EOF
61 if [ -n "$HOME_ETC" ]; then
62 . "$HOME_ETC/.builderrc"
63 elif [ -r ~/.builderrc ]; then
64 . ~/.builderrc
65 fi
66 LOGFILE='$logfile'
67 EOF
68
69 > $logfile
70 HOME_ETC=$outdir \
71 ../builder -bb --clean \
72 --define "_unpackaged_files_terminate_build 1" \
73 --define '_enable_debug_packages 0' \
74 --define "_builddir $outdir" \
75 --define "_rpmdir $rpmdir" \
76 $specfile || {
77 echo "Package build failed" >&2
78 tail -n 1000 $logfile >&2
79 exit 1
80 }
81 echo >&2 "Package build OK"
82
83 if [ "$publish_packages" ] && [ "$(ls $rpmdir/*.rpm 2>/dev/null)" ]; then
84 publish_packages
85 fi
86}
87
88publish_packages() {
89 local rpmdest=~/public_html/$dist/$arch/
90
91 install -d $rpmdest
92 umask 022
93 chmod 644 $rpmdir/*.rpm
94 mv -v $rpmdir/*.rpm $rpmdest/
95 poldek --cachedir=$HOME/tmp --mkidx -s $rpmdest/ --mt=pndir
96}
97
c12e8e1b
ER
98# abort on errors
99set -e
100
101# setup $quiet, you may override with env it
102quiet=${quiet:-$(tty -s && echo 0 || echo 1)}
103if [ "$quiet" = "1" ]; then
104 # we do not want output when running on cron
105 exec 1>/dev/null
106fi
107
108pkg=vim
109specfile=$pkg.spec
7928792f 110basever=7.4
c12e8e1b 111baseurl=ftp://ftp.vim.org/pub/editors/vim/patches/$basever
6eada10b
ER
112sources=ftp://ftp.vim.org/pub/editors/vim/patches/$basever/MD5SUMS
113
9e39b66b
ER
114# setup some paths
115dist=$(rpm -E %{pld_release})
116arch=$(rpm -E %{_host_cpu})
117outdir=$(readlink -f $dir)/BUILD-$dist-$arch
118rpmdir=$outdir/RPMS
119
6eada10b
ER
120status=$(git status --porcelain sources)
121if [ "$status" ]; then
48820310 122 echo >&2 "WARNING: sources status not clean; commit or stash any pending changes"
6eada10b 123 echo "$status"
6eada10b 124fi
c12e8e1b
ER
125
126if [ "$1" ]; then
127 ver=$1
128else
6eada10b 129 echo "Fetching latest patches list..."
6f9e8e2c
ER
130 wget -nv $sources -O sources.tmp 2>&1
131 sort -k 2 -V < sources.tmp > sources.new
315a13bc
ER
132 # exclude files already in git tree
133 git ls-files "$basever.*" | sed -e 's/\./\\./g;s/$/$/'| grep -vf - sources.new > sources
6f9e8e2c 134 rm sources.new sources.tmp
f58097e5 135 # also update patches README
62bb1941 136 wget -nv $baseurl/README -O README.patches 2>&1
6eada10b
ER
137 ver=$(tail -n1 sources | awk '{print $NF}')
138fi
1d58e95d 139
c12e8e1b
ER
140curpatch=$(awk '/^%define[ ]+patchlevel[ ]+/{print $NF}' $specfile)
141curver=$basever.$curpatch
142
143if [ "$curver" != "$ver" ]; then
9e39b66b 144 update_sources "$ver"
c12e8e1b
ER
145else
146 echo "$specfile already up to $ver"
147fi
This page took 0.078504 seconds and 4 git commands to generate.