same correction for redhat
[git-tools-moved-to-github.git] / id-release
1 #!/bin/sh
2 # Copyright (c) 2011 IndexData ApS. http://indexdata.com
3 # Author: Wolfram Schneider
4 #
5 # id-release - a helper script to build a release & packaging for debian + redhat
6 #
7 # see http://twiki.indexdata.dk/cgi-bin/twiki/view/ID/IDSoftwareRelease
8
9 # die early
10 set -e
11
12 usage () {
13     echo  >&2 "usage $0 version"
14     echo  >&2 "$@"
15     exit 1
16 }
17
18 ######################################################################
19 case $1 in
20   [0-9]* ) version=$1 ;;
21        * ) usage ;;
22 esac
23
24 echo "Did you updated the news log file?"
25 for file in Changes News NEWS
26 do
27   if [ -e $file ]; then
28     ls -l Changes
29   fi
30 done
31 echo ""
32
33 if [ -e "pom.xml" ]; then
34     java=true
35 else
36     java=false
37 fi
38
39 if [ `find . -name '*.pm' | wc -l` -gt 0 ]; then
40     perl=true
41 else
42     perl=false
43 fi
44
45 if [ `ls |egrep '\.spec$' | wc -l` -eq 0 ]; then
46     usage "No *.spec file found"
47 else
48     spec=`ls |egrep '\.spec$' | head -1`
49     package=`perl -ne 's/\s*$//; print if s/^NAME=//' IDMETA`
50 fi
51
52 # configure new version
53 perl -i.bak -npe "s,VERSION=.*,VERSION=$version," IDMETA
54
55 if $java; then
56     echo "set maven version to $version"
57     mvn versions:set -DnewVersion=$version > mvn-versions.log
58 fi
59
60 if $perl; then
61   echo "check perl version numbers"
62   find . -name '*.pm' -print0 | xargs -0 egrep -H '\$VERSION.*=.*[0-9]' | egrep -v '^\./deb-src/'
63 fi
64
65 # update debian version file
66 perl -i.bak -npe "\$. == 1 && s,\(.*?\),($version)," debian/changelog 
67
68 # update redhat version file
69 perl -i.bak -npe "s,^Version: .*,Version: $version," $spec
70
71
72
73 ######################################################################
74 echo ""
75 echo "# Please run now"
76 echo "git commit -a"
77 echo "git push"
78 echo "git tag v$version"
79 echo "git push origin tag v$version"
80
81 if $java; then
82     echo "mvn versions:set -DnewVersion=$version-SNAPSHOT" 
83 fi
84
85 ######################################################################
86 echo ""
87 echo "# On RedHat or centos, please run the commands"
88 echo "sudo date"
89 echo "git pull"
90 echo "\$HOME/proj/git-tools/id-deb-build/mkdist.sh"
91 echo "sudo cp $package-$version.tar.gz /usr/src/redhat/SOURCES/"
92 echo "sudo rpmbuild -ba $spec"
93 echo "# if successfully, upload"
94 echo "\$HOME/proj/git-tools/id-rpm-build/upload-rpms.sh $spec"
95 echo ""
96 echo "# on kebab run: sudo su; cd $HOME/proj/git-tools/update-archive; ./update-yum-archive.sh"
97
98
99 ######################################################################
100 echo ""
101 echo "# On debian or ubuntu, please run the commands"
102 echo "sudo rm -rf deb-src"
103 echo "git pull"
104 echo "\$HOME/proj/git-tools/id-deb-build/mkdist.sh"
105 echo "\$HOME/proj/git-tools/id-deb-build/id-mk-deb-src.sh"
106 echo "sudo \$HOME/proj/git-tools/id-deb-build/id-pbuild.sh"
107 echo "# if successfully, upload"
108 echo "\$HOME/proj/git-tools/id-deb-build/id-pbuild.sh --upload"
109 echo ""
110 echo "# on kebab run: sudo su; cd $HOME/proj/git-tools/update-archive; ./update-archive.sh"
111 echo ""
112
113