forked from RedisJSON/RedisJSON
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsystem-setup.py
executable file
·60 lines (45 loc) · 1.82 KB
/
system-setup.py
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
#!/usr/bin/env python3
import sys
import os
import argparse
ROOT = HERE = os.path.abspath(os.path.dirname(__file__))
READIES = os.path.join(HERE, "deps/readies")
sys.path.insert(0, READIES)
import paella
#----------------------------------------------------------------------------------------------
class RedisJSONSetup(paella.Setup):
def __init__(self, nop=False):
paella.Setup.__init__(self, nop)
def common_first(self):
self.install_downloaders()
self.pip_install("wheel")
self.pip_install("setuptools --upgrade")
self.install("git")
if not self.has_command("clang"):
self.run("%s/bin/getclang --modern" % READIES)
if not self.has_command("rustc"):
self.run("%s/bin/getrust" % READIES)
self.run("%s/bin/getcmake" % READIES)
def debian_compat(self):
self.run("%s/bin/enable-utf8" % READIES)
self.run("%s/bin/getgcc" % READIES)
def redhat_compat(self):
self.run("%s/bin/enable-utf8" % READIES)
self.install("redhat-lsb-core")
self.run("%s/bin/getgcc --modern" % READIES)
def fedora(self):
self.run("%s/bin/getgcc" % READIES)
def macos(self):
self.install_gnu_utils()
self.run("%s/bin/getgcc" % READIES)
def common_last(self):
self.run("python3 %s/bin/getrmpytools" % READIES)
self.pip_install("-r %s/tests/pytest/requirements.txt" % ROOT)
self.pip_install("toml")
self.pip_install("awscli")
self.pip_install("gevent")
#----------------------------------------------------------------------------------------------
parser = argparse.ArgumentParser(description='Set up system for build.')
parser.add_argument('-n', '--nop', action="store_true", help='no operation')
args = parser.parse_args()
RedisJSONSetup(nop = args.nop).setup()