-
Notifications
You must be signed in to change notification settings - Fork 0
/
bootstrap_insert.txt
38 lines (30 loc) · 1.07 KB
/
bootstrap_insert.txt
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
class afitt_class(SourceModule):
module = 'afitt'
authenticated = [
'scp',
'%(cciuser)[email protected]:/net/cci-filer2/raid1/auto_build/externals/'+afitt_version+'.gz']
class molstar_module(SourceModule):
module = 'molstar'
anonymous = ['git',
'[email protected]:molstar/molstar.git',
'https://github.com/molstar/molstar.git',
]
# Core CCTBX repositories
# These must all provide anonymous access.
class cctbx_module(SourceModule):
module = 'cctbx_project'
anonymous = ['git',
'[email protected]:cctbx/cctbx_project.git',
'https://github.com/cctbx/cctbx_project.git',
'https://github.com/cctbx/cctbx_project/archive/master.zip']
class molstar_adaptbx_module(SourceModule):
module = 'molstar_adaptbx'
anonymous = ['git',
'[email protected]:phenix-project/molstar_adaptbx.git',
'https://github.com/phenix-project/molstar_adaptbx.git',
]
class PhenixBuilder(CCIBuilder):
HOT = []
CODEBASES_EXTRA = [
'molstar',
'molstar_adaptbx',