cppcheck/createrelease

76 lines
2.3 KiB
Plaintext
Raw Normal View History

2009-02-02 20:21:58 +01:00
#!/bin/bash
#
# A script for creating release packages. The release packages are create in the home directory.
#
2015-01-03 17:31:52 +01:00
# Update translations
# lupdate gui.pro
#
# Make sure "cppcheck --errorlist" works. For example with:
# make test
2016-01-09 15:37:10 +01:00
# ./cppcheck --errorlist > errlist.xml && xmllint --noout errlist.xml
# ./cppcheck --xml-version=2 --errorlist > errlist.xml && xmllint --noout errlist.xml
2009-08-16 15:57:16 +02:00
#
2013-06-18 06:47:15 +02:00
# Update AUTHORS using output from:
2016-01-09 15:37:10 +01:00
# git log --format='%aN' 1.72..HEAD | sort -u > AUTHORS2 && diff -y AUTHORS AUTHORS2 | less
2013-06-18 06:47:15 +02:00
#
# Update version numbers in:
2013-10-12 12:44:43 +02:00
# sed -i "s/1.[0-9][0-9].99/1.62/" cli/main.cpp
2015-01-03 17:31:52 +01:00
# sed -i "s/MINOR [0-9][0-9]/MINOR 62/" lib/version.h
2013-10-12 12:44:43 +02:00
# sed -i "s/1.[0-9][0-9] dev/1.62/" man/manual.docbook
# sed -i "s/1.[0-9][0-9] dev/1.62/" win_installer/productInfo.wxi
2014-03-02 09:59:03 +01:00
# sed -i "s/1.[0-9][0-9].99/1.62/" win_installer/productInfo.wxi
2013-10-12 12:44:43 +02:00
# Verify:
2016-01-09 15:37:10 +01:00
# grep '\.99' */*.[ch]* && grep '[0-9][0-9] dev' */*.[ch]*
2013-10-12 12:44:43 +02:00
# git commit -a -m "1.43: Set versions"
2010-05-08 15:36:11 +02:00
#
# Update the Makefile:
2016-01-09 15:37:10 +01:00
# make dmake && ./dmake --release
# git commit -a -m "1.43: Updated Makefile"
#
2012-07-02 06:44:30 +02:00
# Build and test the windows installer
#
# Tag:
# git tag 1.43
# git push --tags
2010-05-08 15:36:11 +02:00
#
# Create release:
# ./createrelease 1.43
#
# Restore the Makefile:
# ./dmake
# git commit -a -m "Makefile: Set debug mode"
#
2014-08-02 14:05:54 +02:00
# Update download link on index.php main page
#
# Generate the manual.pdf, manual.html and version.txt
2010-05-08 15:36:11 +02:00
# make
# ./cppcheck --version > version.txt
# docbook2pdf man/manual.docbook
2011-04-11 06:35:21 +02:00
# xsltproc -o manual.html /usr/share/xml/docbook/stylesheet/nwalsh/xhtml/docbook.xsl man/manual.docbook
#
2011-04-11 06:35:21 +02:00
# Upload manual.pdf , manual.html and version.txt...
2012-09-01 18:11:09 +02:00
# sftp danielmarjamaki,cppcheck@web.sourceforge.net
#
2015-01-03 17:31:52 +01:00
# write a news
#
# save "cppcheck --doc" output on wiki, write new release date on wikis
#
2012-09-01 18:11:09 +02:00
# compile new democlient:
# ssh -t danielmarjamaki,cppcheck@shell.sourceforge.net
# ./build-cppcheck.sh 1.43
2014-08-02 14:05:54 +02:00
#
# run daca with new release
# Tag to use
tag=$1
2009-02-02 20:21:58 +01:00
# Name of release
releasename=cppcheck-$tag
2009-02-02 20:21:58 +01:00
# 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
2012-09-01 18:11:09 +02:00
scp ../$releasename.* danielmarjamaki,cppcheck@frs.sourceforge.net:/home/frs/project/c/cp/cppcheck/cppcheck/$tag/