aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/ode-0.9/tools/src-release.sh
blob: 011a96bd0febd8be6a1e140d153e53ab18a18e1b (plain)
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
#!/bin/sh
###################################################################
# ODE Source Code Release Script
# Originally written by Jason Perkins (starkos@gmail.com)
#
# Prerequisites:
#  svn, zip
###################################################################

# Check arguments
if [ $# -ne 2 ]; then
  echo 1>&2 "Usage: $0 version_number branch_name"
  exit 1
fi


###################################################################
# Pre-build checklist
###################################################################

echo "" 
echo "STARTING PREBUILD CHECKLIST, PRESS ^^C TO ABORT."
echo ""
echo "Is the version number '$1' correct?"
read line
echo ""
echo "Have you created a release branch named '$2' in SVN?"
read line
echo ""
echo "Have you run all of the tests?"
read line
echo ""
echo "Is the Changelog up to date?"
read line
echo ""
echo "Okay, ready to build the source code package for version $1!"
read line


###################################################################
# Retrieve source code
###################################################################

echo ""
echo "RETRIEVING SOURCE CODE FROM REPOSITORY..."
echo ""
f
svn export https://opende.svn.sourceforge.net/svnroot/opende/branches/$2 ode-$1


###################################################################
# Prepare source code
###################################################################

echo ""
echo "PREPARING SOURCE TREE..."
echo ""

cd ode-$1
chmod 755 autogen.sh
./autogen.sh
rm -rf autom4te.cache

cp build/config-default.h include/ode/config.h

cd ode/doc
doxygen

cd ../../..


###################################################################
# Package source code
###################################################################

echo ""
echo "PACKAGING SOURCE CODE..."
echo ""

zip -r9 ode-src-$1.zip ode-$1/*


###################################################################
# Clean up
###################################################################

echo ""
echo "CLEANING UP..."
echo ""

rm -rf ode-$1


#####################################################################
# Send the files to SourceForge
#####################################################################

echo ""
echo "Upload packages to SourceForge?"
read line
if [ $line = "y" ]; then
	echo "Uploading to SourceForge..."
	ftp -n upload.sourceforge.net < ftp_src_script
fi