forked from cjdelisle/cjdns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
old_do
executable file
·127 lines (115 loc) · 5.12 KB
/
old_do
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
#!/usr/bin/env bash
# You may redistribute this program and/or modify it under the terms of
# the GNU General Public License as published by the Free Software Foundation,
# either version 3 of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
[ -n "$PLATFORM" ] || PLATFORM=$(uname | tr '[:upper:]' '[:lower:]')
[ -n "$MARCH" ] || MARCH=$(uname -m | sed "s/i./x/g")
BUILDDIR="build_${PLATFORM}"
NODE_MIN_VER="v0.8.15"
read -d '' VERSION_TEST <<"EOF"
var currentVersion = process.version;
var verArray = currentVersion.substring(1).split(".");
var minVerArray = process.argv[process.argv.length-1].substring(1).split(".");
for (var i = 0; i < minVerArray.length; i++) {
if (Number(verArray[i]) < Number(minVerArray[i])) {
process.exit(1);
} else if (Number(verArray[i]) > Number(minVerArray[i])) {
process.exit(0);
}
}
EOF
hasOkNode()
{
for NODE in "$(pwd)/${BUILDDIR}/nodejs/node/bin/node" "nodejs" "node"; do
if ${NODE} -v >/dev/null 2>&1; then
echo ${VERSION_TEST} | ${NODE} '' ${NODE_MIN_VER} && return 0;
echo "You have a version of node [${NODE}] but it is too old [`${NODE} -v`]"
fi
done
return 1
}
getNode()
{
echo "Installing node.js"
echo "You can bypass this step by manually installing node.js ${NODE_MIN_VER} or newer"
if [ "${PLATFORM}-${MARCH}" = "linux-x86_64" ]; then
NODE_DOWNLOAD="http://nodejs.org/dist/v0.10.24/node-v0.10.24-linux-x64.tar.gz"
NODE_SHA="6ef93f4a5b53cdd4471786dfc488ba9977cb3944285ed233f70c508b50f0cb5f"
elif [ "${PLATFORM}-${MARCH}" = "linux-x86" ]; then
NODE_DOWNLOAD="http://nodejs.org/dist/v0.10.24/node-v0.10.24-linux-x86.tar.gz"
NODE_SHA="fb6487e72d953451d55e28319c446151c1812ed21919168b82ab1664088ecf46"
elif [ "${PLATFORM}-${MARCH}" = "linux-armv6l" ] || [ "${PLATFORM}-${MARCH}" = "linux-armv7l" ]; then #Raspberry Pi or Cubieboard
NODE_DOWNLOAD="http://nodejs.org/dist/v0.10.24/node-v0.10.24-linux-arm-pi.tar.gz"
NODE_SHA="bdd5e253132c363492fa24ed9985873733a10558240fd45b0a4a15989ab8da90"
elif [ "${PLATFORM}-${MARCH}" = "darwin-x86_64" ]; then
NODE_DOWNLOAD="http://nodejs.org/dist/v0.10.24/node-v0.10.24-darwin-x64.tar.gz"
NODE_SHA="c1c523014124a0327d71ba5d6f737a4c866a170f1749f8895482c5fa8be877b0"
elif [ "${PLATFORM}-${MARCH}" = "darwin-x86" ]; then
NODE_DOWNLOAD="http://nodejs.org/dist/v0.10.24/node-v0.10.24-darwin-x86.tar.gz"
NODE_SHA="8b8d2bf9828804c3f8027d7d442713318814a36df12dea97dceda8f4aff42b3c"
elif [ "${PLATFORM}-${MARCH}" = "sunos-x86_64" ]; then
NODE_DOWNLOAD="http://nodejs.org/dist/v0.10.24/node-v0.10.24-sunos-x64.tar.gz"
NODE_SHA="7cb714df92055b93a908b3b6587ca388a2884b1a9b5247c708a867516994a373"
elif [ "${PLATFORM}-${MARCH}" = "sunos-x86" ]; then
NODE_DOWNLOAD="http://nodejs.org/dist/v0.10.24/node-v0.10.24-sunos-x86.tar.gz"
NODE_SHA="af69ab26aae42b05841c098f5d11d17e21d22d980cd32666e2db45a53ddffe34"
else
echo "No nodejs executable available for ${PLATFORM}-${MARCH}"
echo -n "Please install nodejs (>= ${NODE_MIN_VER}) from "
echo "your distribution package repository or from source."
return 1
fi
origDir="$(pwd)"
[ -d "${BUILDDIR}/nodejs" ] && rm -r "${BUILDDIR}/nodejs"
mkdir -p "${BUILDDIR}/nodejs"
cd "${BUILDDIR}/nodejs"
if wget --version > /dev/null 2>&1; then
wget -O - "${NODE_DOWNLOAD}" > node.tar.gz
elif curl --version > /dev/null 2>&1; then
curl "${NODE_DOWNLOAD}" > node.tar.gz
elif [ -x fetch ]; then
fetch "${NODE_DOWNLOAD}" -o node.tar.gz
else
echo 'wget/curl/fetch is required download node.js but you have none!'
return 1
fi
if ! ( ${SHA256SUM} node.tar.gz | grep -q ${NODE_SHA} ); then
echo 'The downloaded file is damaged! Aborting.'
return 1
fi
tar -xzf node.tar.gz
find ./ -mindepth 1 -maxdepth 1 -type d -exec mv {} node \;
cd "$origDir"
hasOkNode && return 0;
return 1;
}
die() {
echo "ERROR: $1" >&2
exit 1
}
# get a sha256sum implementation.
getsha256sum() {
expected="01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b"
for hasher in sha256sum gsha256sum sha256 'shasum -a 256' 'openssl sha256'
do
#echo "trying ${hasher} ${testFile}"
echo '' | ${hasher} - 2>/dev/null | grep -q ${expected} && SHA256SUM=${hasher} && return 0
done
return 1
}
main() {
cd "$(dirname $0)" || die "failed to set directory"
[ -d "${BUILDDIR}" ] || mkdir "${BUILDDIR}" || die "failed to create build dir ${BUILDDIR}"
getsha256sum || die "couldn't find working sha256 hasher";
hasOkNode || getNode || die "could not get working nodejs impl";
$NODE ./node_build/make.js "${@}" || return 1
}
main