Annotation of /trunk/tigervnc/make-svn-snapshot.sh
Parent Directory | Revision Log
Revision 1274 -
(hide annotations)
(download)
(as text)
Tue Feb 1 13:12:30 2011 UTC (13 years, 9 months ago) by niro
File MIME type: application/x-sh
File size: 898 byte(s)
Tue Feb 1 13:12:30 2011 UTC (13 years, 9 months ago) by niro
File MIME type: application/x-sh
File size: 898 byte(s)
added svn snapshot script
1 | niro | 1274 | #!/bin/bash |
2 | |||
3 | export LC_ALL=C | ||
4 | |||
5 | temp=$(mktemp -d) | ||
6 | svn_base_uri="https://tigervnc.svn.sourceforge.net/svnroot/tigervnc/trunk" | ||
7 | svn_module="tigervnc" | ||
8 | tarball_prefix="${svn_module}" | ||
9 | destination="root@cvs.magellan-linux.de:/var/www/htdocs/magellan/magellan-dev/sources/${svn_module}/" | ||
10 | |||
11 | echo -n "building latest tarball for ${tarball_prefix}... " | ||
12 | cd ${temp} | ||
13 | svn checkout ${svn_base_uri} ${svn_module} | ||
14 | |||
15 | latest_version="1.0.90_svn$(svn info ${svn_module} | grep Revision | sed 's:.*\:\ \(.*\):\1:')" | ||
16 | |||
17 | mv ${temp}/${svn_module} ${tarball_prefix}-${latest_version} | ||
18 | find ./${tarball_prefix}-${latest_version} -name .svn | xargs rm -r | ||
19 | find ./${tarball_prefix}-${latest_version} -name .svnignore | xargs rm | ||
20 | tar cvjf ${tarball_prefix}-${latest_version}.tar.bz2 ./${tarball_prefix}-${latest_version} | ||
21 | scp ${tarball_prefix}-${latest_version}.tar.bz2 ${destination} | ||
22 | |||
23 | if [[ -d ${temp} ]] | ||
24 | then | ||
25 | rm -rf ${temp} | ||
26 | fi | ||
27 | |||
28 | exit 0 |