forked from danmar/cppcheck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
createrelease
executable file
·85 lines (80 loc) · 2.8 KB
/
createrelease
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#!/bin/bash
#
# A script for creating release packages. The release packages are create in the home directory.
#
# self check:
# ./cppcheck --library=cppcheck-lib --enable=style --inconclusive --suppress=bitwiseOnBoolean cli gui/*.cpp lib
#
# Update translations
# lupdate gui.pro
#
# Update copyright year
# git diff 1.82 | grep '^diff --git a/' | sed 's|.* b/||' | xargs sed -i 's/Copyright (C) 2007-201./Copyright (C) 2007-2018/'
# git diff | grep '^diff --git a/'
#
# Make sure "cppcheck --errorlist" works. For example with:
# make test
# ./cppcheck --errorlist > errlist.xml && xmllint --noout errlist.xml
#
# Update AUTHORS using output from:
# git log --format='%aN' 1.81..HEAD | sort -u > AUTHORS2 && diff -y AUTHORS AUTHORS2 | less
#
# Update version numbers in:
# sed -i "s/1.[0-9][0-9].99/1.82/" cli/main.cpp
# sed -i "s/1.[0-9][0-9].99/1.82/" cmake/versions.cmake
# sed -i "s/MINOR [0-9][0-9]/MINOR 82/" lib/version.h
# sed -i "s/1.[0-9][0-9] dev/1.82/" man/manual.docbook
# sed -i "s/1.[0-9][0-9] dev/1.82/" win_installer/productInfo.wxi
# sed -i "s/1.[0-9][0-9].99/1.82/" win_installer/productInfo.wxi
# Verify:
# grep '\.99' */*.[ch]* && grep '[0-9][0-9] dev' */*.[ch]*
# git commit -a -m "1.43: Set versions"
#
# Update the Makefile:
# make dmake && ./dmake --release
# git commit -a -m "1.43: Updated Makefile"
#
# Build and test the windows installer
#
# Tag:
# git tag 1.43
# git push --tags
#
# Create release:
# ./createrelease 1.43
#
# Restore the Makefile:
# ./dmake
# git commit -a -m "Makefile: Set debug mode"
#
# Update download link on index.php main page
#
#
# write a news
#
# save "cppcheck --doc" output on wiki, write new release date on wikis
#
# compile new democlient:
# ssh -t danielmarjamaki,[email protected] create
# ./build-cppcheck.sh 1.43
#
# run daca with new release
# 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
scp ~/$releasename.* danielmarjamaki,[email protected]:/home/frs/project/c/cp/cppcheck/cppcheck/$tag/
# Generate the manual.pdf, manual.html and version.txt
make clean && make
./cppcheck --version > version.txt
scp version.txt danielmarjamaki,[email protected]:htdocs/
xsltproc -xinclude -o manual.fo /usr/share/xml/docbook/stylesheet/docbook-xsl/fo/docbook.xsl man/manual.docbook
fop manual.fo -pdf manual.pdf
#docbook2pdf man/manual.docbook
scp manual.pdf danielmarjamaki,[email protected]:htdocs/
xsltproc -o manual.html /usr/share/xml/docbook/stylesheet/nwalsh/xhtml/docbook.xsl man/manual.docbook
scp manual.html danielmarjamaki,[email protected]:htdocs/