/[smeserver]/builds_bin/locale-patch
ViewVC logotype

Contents of /builds_bin/locale-patch

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.3 - (show annotations) (download)
Tue Mar 14 22:40:34 2017 UTC (7 years, 1 month ago) by unnilennium
Branch: MAIN
Changes since 1.2: +4 -5 lines
update as per is currently working

1 #!/bin/bash
2
3 export CVS_RSH=ssh
4
5 rm -rf /var/lib/pootle/cvs/patch/*
6 cd /var/lib/pootle/cvs/patch
7
8 ls /var/www/html/pootle/patches/*/*.patch | cut -d/ --output-delimiter " " -f6,7 | while read ver newpatch
9 do
10 [ ! -s "/var/www/html/pootle/patches/$ver/$newpatch" ] && continue
11 pkg=$(echo $newpatch | sed 's,-[0-9.]\+-locale-[0-9]\{4\}-[0-9]\{2\}-[0-9]\{2\}.patch,,')
12 chglog=$(echo $newpatch | sed "s,$pkg-[0-9.]\+-locale-,locale ,;s,\.patch, patch,")
13
14 if [ ! -d "$pkg" ]
15 then
16 if echo $ver | grep -q contribs
17 then
18 cvs -Q -z3 -d:ext:smecontribs.cvs.sourceforge.net:/cvsroot/smecontribs co -P $pkg
19 else
20 cvs -Q -z3 -d:ext:smeserver.cvs.sourceforge.net:/cvsroot/smeserver co -P $pkg
21 fi
22 fi
23 spec=$(ls $pkg/$ver/*.spec 2> /dev/null)
24 if [ ! -z "$spec" ]
25 then
26 source=$(sed -n 's,^\(Source[0-9]*:\).*,\1,ip' $spec | tail -1)
27 patch=$(sed -n 's,^\(Patch[0-9]*:\).*,\1,ip' $spec | tail -1)
28 [ -z "$patch" ] && pnum="1" || pnum=$(echo $patch | perl -pe 's,^Patch([0-9]*):,$1+1,ie')
29 [ -z "$patch" ] && insert2="%setup" || insert2=$(echo $patch | perl -pe 's,^(Patch[0-9]*):,"%".lc($1),ie')
30 insert1=${patch:=$source}
31
32 perl -i -pe 's,^(%define\s+release\s+)([0-9]+)(%{\?dist})\s*,"$1".($2+1)."$3\n",ie;s,^(Release:\s+)([0-9]+)(%{\?dist})\s*,"$1".($2+1)."$3\n",ie;' $spec
33 verrel=$(rpm -q -D 'dist .sme' --qf '%{VERSION}-%{RELEASE}\n' --specfile $spec | head -1)
34 sed -i "/^$insert1/aPatch$pnum: $(basename $newpatch)" $spec
35 sed -i "/^$insert2\b/a%patch$pnum -p1" $spec
36 sed -i "/^%changelog/a* $(date +'%a %b %d %G') SME Translation Server <translations@contribs.org> $verrel\n- apply $chglog\n" $spec
37 cp /var/www/html/pootle/patches/$ver/$newpatch $(dirname $spec)
38 pushd $(dirname $spec) > /dev/null
39 cvs -Q add $(basename $newpatch)
40 [ "$1" == "commit" ] && make commit tag > /dev/null
41 popd > /dev/null
42 fi
43 done
44

admin@koozali.org
ViewVC Help
Powered by ViewVC 1.2.1 RSS 2.0 feed