2009-02-02 20:21:58 +01:00
|
|
|
#!/bin/bash
|
2010-03-10 17:20:34 +01:00
|
|
|
# A script for tagging and releasing.
|
|
|
|
#
|
|
|
|
# A tag will be created with the given name.
|
2009-03-03 16:27:18 +01:00
|
|
|
#
|
2009-03-07 13:21:02 +01:00
|
|
|
# Archive files are created in user's home directory.
|
2009-08-16 15:57:16 +02:00
|
|
|
#
|
2010-03-10 17:20:34 +01:00
|
|
|
# Before running this script, remember to update version number in:
|
2010-03-07 20:41:04 +01:00
|
|
|
# - lib/cppcheck.cpp
|
|
|
|
# - cli/main.cpp
|
|
|
|
# - cli/cppcheck.rc
|
2010-03-10 17:20:34 +01:00
|
|
|
# - man/manual.docbook
|
2010-03-07 20:41:04 +01:00
|
|
|
# - win_installer/productInfo.wxs
|
2010-03-10 17:20:34 +01:00
|
|
|
#
|
2010-05-08 15:36:11 +02:00
|
|
|
# Update the Changelog..
|
|
|
|
# wget http://josefsson.org/git2cl/git2cl
|
|
|
|
# chmod 744 git2cl
|
|
|
|
# ./git2cl > Changelog
|
|
|
|
# git commit -a -m "Changelog: Updated for release"
|
|
|
|
#
|
2010-05-08 12:55:42 +02:00
|
|
|
# Update the Makefile:
|
2010-05-08 19:07:49 +02:00
|
|
|
# g++ -o dmake tools/dmake.cpp lib/filelister*.cpp
|
|
|
|
# ./dmake --release
|
2010-05-08 15:36:11 +02:00
|
|
|
# git commit -a -m "Makefile: Set release mode"
|
|
|
|
#
|
|
|
|
# Create release:
|
|
|
|
# ./createrelease 1.43
|
|
|
|
#
|
|
|
|
# Restore the Makefile:
|
|
|
|
# ./dmake
|
|
|
|
# git commit -a -m "Makefile: Set debug mode"
|
2010-05-08 12:55:42 +02:00
|
|
|
#
|
2010-05-08 15:36:11 +02:00
|
|
|
# Generate the manual.pdf and version.txt
|
|
|
|
# make
|
|
|
|
# ./cppcheck --version > version.txt
|
|
|
|
# docbook2pdf man/manual.pdf
|
2010-03-10 17:20:34 +01:00
|
|
|
#
|
2010-05-08 15:36:11 +02:00
|
|
|
# Upload manual.pdf and version.txt...
|
|
|
|
# sftp hyd_danmar,cppcheck@web.sourceforge.net
|
2010-12-13 18:22:52 +01:00
|
|
|
#
|
|
|
|
# Make sure "cppcheck --errorlist" works
|
|
|
|
#
|
|
|
|
# save "cppcheck --doc" output on wiki
|
2009-03-03 16:27:18 +01:00
|
|
|
|
2009-03-07 13:21:02 +01:00
|
|
|
# Tag to use
|
2010-03-09 10:41:36 +01:00
|
|
|
tag=$1
|
2009-02-02 20:21:58 +01:00
|
|
|
|
2009-03-07 13:21:02 +01:00
|
|
|
# Name of release
|
|
|
|
releasename=cppcheck-$tag
|
2009-02-02 20:21:58 +01:00
|
|
|
|
2010-03-10 17:20:34 +01:00
|
|
|
# Create archives..
|
2009-03-07 13:21:02 +01:00
|
|
|
git archive --format=tar --prefix=$releasename/ $tag | gzip > ~/$releasename.tar.gz
|
|
|
|
git archive --format=tar --prefix=$releasename/ $tag | bzip2 > ~/$releasename.tar.bz2
|
|
|
|
git archive --format=zip -9 --prefix=$releasename/ $tag > ~/$releasename.zip
|
2010-03-09 10:41:36 +01:00
|
|
|
|
|
|
|
|