blob: f106c00df22a3619d724f9c72a1c345f94f6cba0 [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 Schuh55139fe2015-10-14 23:55:24 -070019new_http_archive(
Brian Silverman826e1cd2016-01-31 18:26:00 -050020 name = 'arm_frc_linux_gnueabi_repo',
Austin Schuh55139fe2015-10-14 23:55:24 -070021 build_file = 'tools/cpp/arm-frc-linux-gnueabi/arm-frc-linux-gnueabi.BUILD',
22 sha256 = '9d92b513b627c4aaa93d4d8049b4c6b96a532b64df11b27fde4dead58347a9f6',
23 url = 'http://frc971.org/Build-Dependencies/arm-frc-linux-gnueabi_4.9.3.tar.gz',
24)
Austin Schuhe456f152015-11-27 13:44:39 -080025
26new_git_repository(
Brian Silverman826e1cd2016-01-31 18:26:00 -050027 name = 'python_gflags_repo',
Austin Schuhe456f152015-11-27 13:44:39 -080028 remote = 'https://github.com/gflags/python-gflags.git',
29 build_file = 'debian/gflags.BUILD',
30 commit = '41c4571864f0db5823e07715317e7388e94faabc',
31)
32
33bind(
34 name = 'python-gflags',
Brian Silverman826e1cd2016-01-31 18:26:00 -050035 actual = '@python_gflags_repo//:gflags',
Austin Schuhe456f152015-11-27 13:44:39 -080036)
37
38new_http_archive(
Brian Silverman826e1cd2016-01-31 18:26:00 -050039 name = 'python_glog_repo',
Austin Schuhe456f152015-11-27 13:44:39 -080040 build_file = 'debian/glog.BUILD',
41 sha256 = '953fd80122c48023d1148e6d1bda2763fcab59c8a81682bb298238a5935547b0',
42 url = 'https://pypi.python.org/packages/source/g/glog/glog-0.1.tar.gz',
43 strip_prefix = 'glog-0.1',
44)
45
46bind(
47 name = 'python-glog',
Brian Silverman826e1cd2016-01-31 18:26:00 -050048 actual = '@python_glog_repo//:glog',
Austin Schuhe456f152015-11-27 13:44:39 -080049)
Brian Silvermancee260a2015-12-24 16:27:51 -080050
51new_http_archive(
Brian Silverman826e1cd2016-01-31 18:26:00 -050052 name = 'allwpilib_ni_libraries_repo',
Brian Silvermancee260a2015-12-24 16:27:51 -080053 build_file = 'debian/ni-libraries.BUILD',
54 sha256 = '821687afbee2d7531fb3e47d8d58ac10005695e59685be3ac3aa00b3179faf52',
55 url = 'http://frc971.org/Build-Dependencies/allwpilib_ni-libraries_20749ed.tar.gz',
56 strip_prefix = 'ni-libraries',
57)
58
59bind(
60 name = 'ni-libraries',
Brian Silverman826e1cd2016-01-31 18:26:00 -050061 actual = '@allwpilib_ni_libraries_repo//:ni-libraries',
Brian Silvermancee260a2015-12-24 16:27:51 -080062)