Austin Schuh | 4759ffc | 2015-10-07 20:39:56 -0700 | [diff] [blame] | 1 | new_local_repository( |
| 2 | name = 'usr_repo', |
| 3 | path = '/usr', |
Brian Silverman | 8d54890 | 2015-11-04 23:50:11 -0500 | [diff] [blame] | 4 | build_file = 'debian/usr.BUILD', |
Austin Schuh | 4759ffc | 2015-10-07 20:39:56 -0700 | [diff] [blame] | 5 | ) |
| 6 | |
Austin Schuh | 1f9aeb4 | 2015-11-12 23:34:49 -0800 | [diff] [blame] | 7 | new_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 | |
| 14 | bind( |
| 15 | name = 'slycot', |
| 16 | actual = '@slycot_repo//:slycot', |
| 17 | ) |
| 18 | |
Austin Schuh | 55139fe | 2015-10-14 23:55:24 -0700 | [diff] [blame] | 19 | new_http_archive( |
Brian Silverman | 826e1cd | 2016-01-31 18:26:00 -0500 | [diff] [blame] | 20 | name = 'arm_frc_linux_gnueabi_repo', |
Austin Schuh | 55139fe | 2015-10-14 23:55:24 -0700 | [diff] [blame] | 21 | build_file = 'tools/cpp/arm-frc-linux-gnueabi/arm-frc-linux-gnueabi.BUILD', |
Austin Schuh | e750ebc | 2016-02-11 19:10:07 -0800 | [diff] [blame] | 22 | sha256 = '9e93b0712e90d11895444f720f0c90c649fb9becb4ca28bb50749d9074eb1306', |
| 23 | url = 'http://frc971.org/Build-Dependencies/roborio-compiler-2016.tar.gz', |
Austin Schuh | 55139fe | 2015-10-14 23:55:24 -0700 | [diff] [blame] | 24 | ) |
Austin Schuh | e456f15 | 2015-11-27 13:44:39 -0800 | [diff] [blame] | 25 | |
Brian Silverman | 0d57fc8 | 2016-01-24 21:02:53 -0500 | [diff] [blame] | 26 | # Recompressed version of the one downloaded from Linaro at |
| 27 | # <https://releases.linaro.org/15.05/components/toolchain/binaries/arm-linux-gnueabihf/gcc-linaro-4.9-2015.05-x86_64_arm-linux-gnueabihf.tar.xz>, |
| 28 | # with workarounds for <https://github.com/bazelbuild/bazel/issues/574> and the |
| 29 | # top-level folder stripped off. |
| 30 | new_http_archive( |
| 31 | name = 'linaro_linux_gcc_4.9_repo', |
| 32 | build_file = 'compilers/linaro_linux_gcc_4.9.BUILD', |
| 33 | sha256 = '25e97bcb0af4fd7cd626d5bb1b303c7d2cb13acf2474e335e3d431d1a53fbb52', |
| 34 | url = 'http://frc971.org/Build-Dependencies/gcc-linaro-4.9-2015.05-x86_64_arm-linux-gnueabihf.tar.gz', |
| 35 | ) |
| 36 | |
Austin Schuh | e456f15 | 2015-11-27 13:44:39 -0800 | [diff] [blame] | 37 | new_git_repository( |
Brian Silverman | 826e1cd | 2016-01-31 18:26:00 -0500 | [diff] [blame] | 38 | name = 'python_gflags_repo', |
Austin Schuh | e456f15 | 2015-11-27 13:44:39 -0800 | [diff] [blame] | 39 | remote = 'https://github.com/gflags/python-gflags.git', |
| 40 | build_file = 'debian/gflags.BUILD', |
| 41 | commit = '41c4571864f0db5823e07715317e7388e94faabc', |
| 42 | ) |
| 43 | |
| 44 | bind( |
| 45 | name = 'python-gflags', |
Brian Silverman | 826e1cd | 2016-01-31 18:26:00 -0500 | [diff] [blame] | 46 | actual = '@python_gflags_repo//:gflags', |
Austin Schuh | e456f15 | 2015-11-27 13:44:39 -0800 | [diff] [blame] | 47 | ) |
| 48 | |
| 49 | new_http_archive( |
Brian Silverman | 826e1cd | 2016-01-31 18:26:00 -0500 | [diff] [blame] | 50 | name = 'python_glog_repo', |
Austin Schuh | e456f15 | 2015-11-27 13:44:39 -0800 | [diff] [blame] | 51 | build_file = 'debian/glog.BUILD', |
| 52 | sha256 = '953fd80122c48023d1148e6d1bda2763fcab59c8a81682bb298238a5935547b0', |
| 53 | url = 'https://pypi.python.org/packages/source/g/glog/glog-0.1.tar.gz', |
| 54 | strip_prefix = 'glog-0.1', |
| 55 | ) |
| 56 | |
| 57 | bind( |
| 58 | name = 'python-glog', |
Brian Silverman | 826e1cd | 2016-01-31 18:26:00 -0500 | [diff] [blame] | 59 | actual = '@python_glog_repo//:glog', |
Austin Schuh | e456f15 | 2015-11-27 13:44:39 -0800 | [diff] [blame] | 60 | ) |
Brian Silverman | cee260a | 2015-12-24 16:27:51 -0800 | [diff] [blame] | 61 | |
| 62 | new_http_archive( |
Brian Silverman | 826e1cd | 2016-01-31 18:26:00 -0500 | [diff] [blame] | 63 | name = 'allwpilib_ni_libraries_repo', |
Brian Silverman | cee260a | 2015-12-24 16:27:51 -0800 | [diff] [blame] | 64 | build_file = 'debian/ni-libraries.BUILD', |
| 65 | sha256 = '821687afbee2d7531fb3e47d8d58ac10005695e59685be3ac3aa00b3179faf52', |
| 66 | url = 'http://frc971.org/Build-Dependencies/allwpilib_ni-libraries_20749ed.tar.gz', |
| 67 | strip_prefix = 'ni-libraries', |
| 68 | ) |
| 69 | |
| 70 | bind( |
| 71 | name = 'ni-libraries', |
Brian Silverman | 826e1cd | 2016-01-31 18:26:00 -0500 | [diff] [blame] | 72 | actual = '@allwpilib_ni_libraries_repo//:ni-libraries', |
Brian Silverman | cee260a | 2015-12-24 16:27:51 -0800 | [diff] [blame] | 73 | ) |
Brian Silverman | 3fca9d7 | 2016-02-20 02:32:51 -0500 | [diff] [blame^] | 74 | |
| 75 | # Downloaded from: |
| 76 | # https://pypi.python.org/packages/source/s/six/six-1.10.0.tar.gz |
| 77 | new_http_archive( |
| 78 | name = 'six_repo', |
| 79 | build_file = 'debian/six.BUILD', |
| 80 | sha256 = '105f8d68616f8248e24bf0e9372ef04d3cc10104f1980f54d57b2ce73a5ad56a', |
| 81 | url = 'http://frc971.org/Build-Dependencies/six-1.10.0.tar.gz', |
| 82 | strip_prefix = 'six-1.10.0', |
| 83 | ) |
| 84 | |
| 85 | # For protobuf. Don't use these. |
| 86 | bind( |
| 87 | name = 'six', |
| 88 | actual = '@six_repo//:six', |
| 89 | ) |
| 90 | bind( |
| 91 | name = 'gtest', |
| 92 | actual = '//third_party/googletest:googlemock', |
| 93 | ) |
| 94 | bind( |
| 95 | name = 'gtest_main', |
| 96 | actual = '//third_party/googletest:googlemock_main', |
| 97 | ) |
| 98 | |
| 99 | new_http_archive( |
| 100 | name = 'python_import_helpers', |
| 101 | build_file = 'third_party/python_import_helpers.BUILD', |
| 102 | url = 'http://frc971.org/Build-Dependencies/empty.tar.gz', |
| 103 | sha256 = '71939a7d75585a57d2e99a33d39f391764d8f930f9a16acf32e00c5d3f432aa0', |
| 104 | ) |