2012-03-05 22:54:02 -05:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# Simple version update script
|
2012-05-11 19:07:44 -04:00
|
|
|
#
|
2013-12-20 00:49:06 -05:00
|
|
|
# Copyright (C) 2012 Mike Gerwitz
|
2012-05-11 19:07:44 -04:00
|
|
|
#
|
|
|
|
# This file is part of ease.js.
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2012-03-05 22:54:02 -05:00
|
|
|
##
|
|
|
|
|
|
|
|
major="$1"
|
|
|
|
minor="$2"
|
|
|
|
rev="$3"
|
|
|
|
suffix="$4"
|
|
|
|
|
|
|
|
# pre-formatted suffix
|
|
|
|
fsuffix=
|
|
|
|
[ -n "$suffix" ] && fsuffix="-$suffix"
|
|
|
|
|
|
|
|
# generate version.js
|
|
|
|
cat version.js.tpl | sed "
|
|
|
|
s/@MAJOR@/$major/;
|
|
|
|
s/@MINOR@/$minor/;
|
|
|
|
s/@REV@/$rev/;
|
|
|
|
s/@SUFFIX@/$suffix/;
|
|
|
|
" > ../lib/version.js
|
|
|
|
|
|
|
|
# output version for docs
|
|
|
|
cat - > ../doc/version.texi <<EOF
|
|
|
|
@c DO NOT MODIFY; generated by verset (not autoconf)
|
|
|
|
@set VERSION $major.$minor.$rev$fsuffix
|
|
|
|
EOF
|