cppcheck/createrelease

53 lines
1.3 KiB
Bash
Executable File

#!/bin/bash
# A script for tagging and releasing.
#
# A tag will be created with the given name.
#
# Archive files are created in user's home directory.
#
# Before running this script, remember to update version number in:
# - lib/cppcheck.cpp
# - cli/main.cpp
# - cli/cppcheck.rc
# - man/manual.docbook
# - win_installer/productInfo.wxs
#
# Update the Changelog..
# wget http://josefsson.org/git2cl/git2cl
# chmod 744 git2cl
# ./git2cl > Changelog
# git commit -a -m "Changelog: Updated for release"
#
# Update the Makefile:
# g++ -o dmake tools/dmake.cpp lib/filelister*.cpp
# ./dmake --release
# 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"
#
# Generate the manual.pdf and version.txt
# make
# ./cppcheck --version > version.txt
# docbook2pdf man/manual.pdf
#
# Upload manual.pdf and version.txt...
# sftp hyd_danmar,cppcheck@web.sourceforge.net
# Tag to use
tag=$1
# Name of release
releasename=cppcheck-$tag
# Create archives..
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