-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcheckoutpwiz.sh
executable file
·104 lines (77 loc) · 2.98 KB
/
checkoutpwiz.sh
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/bash
#------------------
# http://proteowizard.svn.sourceforge.net/viewvc/proteowizard/trunk/pwiz/libraries/boost_aux/boost/utility/
cd src
rm -rf pwiz
mkdir pwiz
cd pwiz
PWIZREPO=http://proteowizard.svn.sourceforge.net/svnroot/proteowizard/trunk/pwiz/
svn co --non-recursive $PWIZREPO .
for DIR in data/msdata data/common utility/chemistry/ utility/misc/ utility/math/ utility/minimxml/ ; do
svn co $PWIZREPO/pwiz/$DIR $DIR
done
#------------------
cd ..
rm -rf boost
mkdir boost
cd boost
BOOSTVER=Boost_1_43_0
BOOSTREPO=http://svn.boost.org/svn/boost/tags/release/$BOOSTVER/boost
svn co --non-recursive $BOOSTREPO .
for DIR in smart_ptr config config mpl detail iostreams exception function_types \
io type_traits preprocessor format algorithm logic optional range \
iterator function utility concept bind regex filesystem system thread \
date_time lambda tuple multi_index serialization archive functional integer ; do
svn co $BOOSTREPO/$DIR $DIR
done
BOOSTLIBSREPO=http://svn.boost.org/svn/boost/tags/release/$BOOSTVER/libs
for DIR in iostreams/src thread/src/pthread/ filesystem/src/ regex/src system/src ; do
svn co $BOOSTLIBSREPO/$DIR $DIR
done
cd ..
#------------------
rm -rf boost_aux
mkdir boost_aux
cd boost_aux
PWIZBOOSTREPO=http://proteowizard.svn.sourceforge.net/svnroot/proteowizard/trunk/pwiz/libraries/boost_aux/boost/
svn co $PWIZBOOSTREPO boost
cd ..
#------------------
PWIZ_MAJOR=$(grep "constant PWIZ_MAJOR" pwiz/Jamroot.jam | sed -e 's/constant PWIZ_MAJOR : \([0-9+]\) ;/\1/')
PWIZ_MINOR=$(grep "constant PWIZ_MINOR" pwiz/Jamroot.jam | sed -e 's/constant PWIZ_MINOR : \([0-9+]\) ;/\1/')
lastchangedrev=$(svn info pwiz/data/msdata | grep "Last Changed Rev:" | cut -d: -f 2)
lastchangeddate=$(svn info pwiz/data/msdata | grep "Last Changed Date:" | cut -d" " -f 4 | tr "-" " ")
revisioninfo="($lastchangedrev $lastchangeddate)"
cat >pwiz/data/msdata/Version.cpp <<EOF
// This file was generated by the \"svnrev\" utility
// You should not modify it manually, as it may be re-generated.
//
// $Revision: ${revisioninfo[1]} $
// $Date: ${revisioninfo[2]}-${revisioninfo[3]}-${revisioninfo[4]} $
//
#define PWIZ_SOURCE
#include "Version.hpp"
#include <sstream>
#ifdef PWIZ_USER_VERSION_INFO_H // in case you need to add any info version of your own
#include PWIZ_USER_VERSION_INFO_H // must define PWIZ_USER_VERSION_INFO_H_STR for use below
#endif
namespace pwiz {
namespace msdata {
using std::string;
int Version::Major() {return 0${PWIZ_MAJOR};}
int Version::Minor() {return 0${PWIZ_MINOR};}
int Version::Revision() {return 0${revisioninfo[1]};}
string Version::LastModified() {return "${revisioninfo[2]}-${revisioninfo[3]}-${revisioninfo[4]}";}
string Version::str()
{
std::ostringstream v;
v << Major() << '.' << Minor() << '.' << Revision();
#ifdef PWIZ_USER_VERSION_INFO_H
v << " (" << PWIZ_USER_VERSION_INFO_H_STR << ")";
#endif
return v.str();
}
}
}
EOF
#------------------