blob: 43ee6e5457f9a69fb6410a3a23430dfe453ef11c [file] [log] [blame]
Austin Schuh4759ffc2015-10-07 20:39:56 -07001new_local_repository(
2 name = 'usr_repo',
3 path = '/usr',
Brian Silverman8d548902015-11-04 23:50:11 -05004 build_file = 'debian/usr.BUILD',
Austin Schuh4759ffc2015-10-07 20:39:56 -07005)
6
Austin Schuh1f9aeb42015-11-12 23:34:49 -08007new_git_repository(
8 name = 'slycot_repo',
9 remote = 'https://github.com/avventi/Slycot.git',
10 build_file = 'debian/slycot.BUILD',
11 commit = '5af5f283cb23cbe23c4dfea4d5e56071bdbd6e70',
12)
13
14bind(
15 name = 'slycot',
16 actual = '@slycot_repo//:slycot',
17)
18
Austin Schuh4759ffc2015-10-07 20:39:56 -070019# TODO(brian): Make these point to something which isn't hard-coded to come off
20# the host system...
21bind(
22 name = 'librt',
23 actual = '@usr_repo//:librt',
24)
25
26bind(
27 name = 'libdl',
28 actual = '@usr_repo//:libdl',
29)
30
31bind(
32 name = 'libm',
33 actual = '@usr_repo//:libm',
34)
35
36bind(
37 name = 'libpthread',
38 actual = '@usr_repo//:libpthread',
39)
Austin Schuh55139fe2015-10-14 23:55:24 -070040
41new_http_archive(
42 name = 'arm-frc-linux-gnueabi-repo',
43 build_file = 'tools/cpp/arm-frc-linux-gnueabi/arm-frc-linux-gnueabi.BUILD',
44 sha256 = '9d92b513b627c4aaa93d4d8049b4c6b96a532b64df11b27fde4dead58347a9f6',
45 url = 'http://frc971.org/Build-Dependencies/arm-frc-linux-gnueabi_4.9.3.tar.gz',
46)
Austin Schuhe456f152015-11-27 13:44:39 -080047
48new_git_repository(
49 name = 'python-gflags-repo',
50 remote = 'https://github.com/gflags/python-gflags.git',
51 build_file = 'debian/gflags.BUILD',
52 commit = '41c4571864f0db5823e07715317e7388e94faabc',
53)
54
55bind(
56 name = 'python-gflags',
57 actual = '@python-gflags-repo//:gflags',
58)
59
60new_http_archive(
61 name = 'python-glog-repo',
62 build_file = 'debian/glog.BUILD',
63 sha256 = '953fd80122c48023d1148e6d1bda2763fcab59c8a81682bb298238a5935547b0',
64 url = 'https://pypi.python.org/packages/source/g/glog/glog-0.1.tar.gz',
65 strip_prefix = 'glog-0.1',
66)
67
68bind(
69 name = 'python-glog',
70 actual = '@python-glog-repo//:glog',
71)