-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathx-git-update-to-latest-version
executable file
·149 lines (116 loc) · 2.82 KB
/
x-git-update-to-latest-version
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
#!/bin/sh
#
# Updates you git.git clone, recompiles, installs and activates the latest
# version
#
# Set this to the place where git.git clone is at
# in you local filesystem
GIT_CLONE_DIR=$HOME/projects/essentials/git
# Where all the git versions will be placed
# Each version will be inside a directory, like git-v1.5.6.1-204-g6991357
# Current active version will be a symblink 'git'
# so you can add $BASE/git/bin to your PATH
BASE=$HOME/.apps/git-versions
### Nothing more to tweak ###
## local::lib installs might mess up with /usr/bin/perl
## if you have another perl on your path
unset PERL_MM_OPT
unset PERL5LIB
cd $GIT_CLONE_DIR
if [ $? != 0 ] ; then
echo
echo "** FATAL **: could not chdir to GIT_CLONE_DIR $GIT_CLONE_DIR"
echo "Edit this script and tell me where the git.git clone is"
exit 1
fi
# Allow for -t to force a make test
# I should learn to use getopt with sh really
run_tests=
if [ "$1" == "-t" ] ; then
run_tests=yes
fi
if [ -z "$DOIT" ] ; then
echo
echo "This script will pull the lastest git.git master branch, recompile,"
echo "install and activate."
echo
echo "Sure? [y/N]"
read confirmation
if [ "$confirmation" != "y" ] ; then exit ; fi
fi
if [ -e configure ] ; then
make distclean
fi
git fetch
git merge --ff --no-edit origin/master
version=`git describe --always`
if [ -z "$DOIT" -a -d "$BASE/git-$version" ] ; then
echo
echo "**** You already have the latest git version ($version) installed"
echo
exit 0
fi
echo
echo "******* Compiling version $version"
echo
PERL_PATH="/usr/bin/env perl"
export PERL_PATH
XML_CATALOG_FILES=`brew --prefix`"/etc/xml/catalog"
export XML_CATALOG_FILES
make configure
./configure --prefix=$BASE/git-$version
make -j6 all
if [ $? != 0 ] ; then
echo "******* Compilation failed! "
exit 1
fi
make doc
if [ $? != 0 ] ; then
echo "******* Documentation generation failed! "
exit 1
fi
if [ "$run_tests" == "yes" ] ; then
echo
echo "******* Running test suite"
echo
make test
fi
echo
echo "******* Installing git and documentation"
echo
make install install-doc install-man install-html
echo
echo "******* Cleanup phase"
echo
make distclean
git gc
echo
echo "******* Check environment"
echo
check_path=`echo $PATH | perl -pe 's/:/\n/g' | egrep ^$BASE/git/bin$`
if [ -z "$check_path" ] ; then
echo
echo "WARNING: your PATH must be changed to include"
echo
echo " $BASE/git/bin"
echo
fi
check_manpath=`echo $MANPATH | perl -pe 's/:/\n/g' | egrep ^$BASE/git/share/man$`
if [ -z "$check_manpath" ] ; then
echo
echo "WARNING: your MANPATH must be changed to include"
echo
echo " $BASE/git/share/man"
echo
fi
echo
echo Current git version: `readlink $BASE/git`
echo Switching to version: git-$version
echo
cd $BASE;
rm -f git;
ln -s git-$version git;
echo
echo "You are running verion (running git -v now):"
echo
git --version