Brian Silverman | 7bda621 | 2018-08-05 11:42:11 -0700 | [diff] [blame] | 1 | workspace(name = "org_frc971") |
Brian Silverman | d1c19fb | 2016-07-07 00:10:57 -0700 | [diff] [blame] | 2 | |
Brian Silverman | 7bda621 | 2018-08-05 11:42:11 -0700 | [diff] [blame] | 3 | load( |
| 4 | "//debian:python.bzl", |
| 5 | python_debs = "files", |
| 6 | ) |
| 7 | load( |
| 8 | "//debian:clang.bzl", |
| 9 | clang_debs = "files", |
| 10 | ) |
| 11 | load( |
| 12 | "//debian:patch.bzl", |
| 13 | patch_debs = "files", |
| 14 | ) |
Brian Silverman | 7297c0c | 2018-08-05 13:43:00 -0700 | [diff] [blame] | 15 | load( |
| 16 | "//debian:pandoc.bzl", |
| 17 | pandoc_debs = "files", |
| 18 | ) |
Brian Silverman | 4f6ba44 | 2018-08-05 14:34:58 -0700 | [diff] [blame] | 19 | load( |
| 20 | "//debian:libusb.bzl", |
| 21 | libusb_debs = "files", |
| 22 | ) |
Brian Silverman | b80dc9f | 2018-08-05 14:59:24 -0700 | [diff] [blame^] | 23 | load( |
| 24 | "//debian:mingw_compiler.bzl", |
| 25 | mingw_compiler_debs = "files", |
| 26 | ) |
Philipp Schrader | 0e19c60 | 2018-03-07 21:07:22 -0800 | [diff] [blame] | 27 | load("//debian:packages.bzl", "generate_repositories_for_debs") |
| 28 | |
| 29 | generate_repositories_for_debs(python_debs) |
Brian Silverman | 7bda621 | 2018-08-05 11:42:11 -0700 | [diff] [blame] | 30 | |
Philipp Schrader | aedfc5c | 2018-03-10 19:32:30 -0800 | [diff] [blame] | 31 | generate_repositories_for_debs(clang_debs) |
Philipp Schrader | 0e19c60 | 2018-03-07 21:07:22 -0800 | [diff] [blame] | 32 | |
Brian Silverman | 7bda621 | 2018-08-05 11:42:11 -0700 | [diff] [blame] | 33 | generate_repositories_for_debs(patch_debs) |
| 34 | |
Brian Silverman | 7297c0c | 2018-08-05 13:43:00 -0700 | [diff] [blame] | 35 | generate_repositories_for_debs(pandoc_debs) |
| 36 | |
Brian Silverman | 4f6ba44 | 2018-08-05 14:34:58 -0700 | [diff] [blame] | 37 | generate_repositories_for_debs(libusb_debs) |
| 38 | |
Brian Silverman | b80dc9f | 2018-08-05 14:59:24 -0700 | [diff] [blame^] | 39 | generate_repositories_for_debs(mingw_compiler_debs) |
| 40 | |
Philipp Schrader | 9fc87e0 | 2018-03-10 20:36:39 -0800 | [diff] [blame] | 41 | new_http_archive( |
Brian Silverman | 7bda621 | 2018-08-05 11:42:11 -0700 | [diff] [blame] | 42 | name = "python_repo", |
| 43 | build_file = "debian/python.BUILD", |
| 44 | sha256 = "21214b6386273698b6aa1b64bccf1bc8c5ef4ef44563871bac5cd85383575af5", |
| 45 | url = "http://frc971.org/Build-Dependencies/python.tar.gz", |
Philipp Schrader | 9fc87e0 | 2018-03-10 20:36:39 -0800 | [diff] [blame] | 46 | ) |
| 47 | |
Philipp Schrader | 9b1790e | 2018-03-10 20:21:30 -0800 | [diff] [blame] | 48 | new_http_archive( |
Brian Silverman | 7bda621 | 2018-08-05 11:42:11 -0700 | [diff] [blame] | 49 | name = "clang_3p6_repo", |
| 50 | build_file = "tools/cpp/clang_3p6/clang_3p6.BUILD", |
| 51 | sha256 = "5ee9e04c55c2c99d0c0f83722102a49e98f485fc274f73111b33a7ac4e34e03e", |
| 52 | url = "http://frc971.org/Build-Dependencies/clang_3p6.tar.gz", |
Philipp Schrader | 9b1790e | 2018-03-10 20:21:30 -0800 | [diff] [blame] | 53 | ) |
| 54 | |
Austin Schuh | 4759ffc | 2015-10-07 20:39:56 -0700 | [diff] [blame] | 55 | new_local_repository( |
Brian Silverman | 7bda621 | 2018-08-05 11:42:11 -0700 | [diff] [blame] | 56 | name = "usr_repo", |
| 57 | build_file = "debian/usr.BUILD", |
| 58 | path = "/usr", |
Austin Schuh | 4759ffc | 2015-10-07 20:39:56 -0700 | [diff] [blame] | 59 | ) |
| 60 | |
Austin Schuh | 1f9aeb4 | 2015-11-12 23:34:49 -0800 | [diff] [blame] | 61 | new_git_repository( |
Brian Silverman | 7bda621 | 2018-08-05 11:42:11 -0700 | [diff] [blame] | 62 | name = "slycot_repo", |
| 63 | build_file = "debian/slycot.BUILD", |
| 64 | commit = "5af5f283cb23cbe23c4dfea4d5e56071bdbd6e70", |
| 65 | remote = "https://github.com/avventi/Slycot.git", |
Austin Schuh | 1f9aeb4 | 2015-11-12 23:34:49 -0800 | [diff] [blame] | 66 | ) |
| 67 | |
Austin Schuh | 55139fe | 2015-10-14 23:55:24 -0700 | [diff] [blame] | 68 | new_http_archive( |
Brian Silverman | 7bda621 | 2018-08-05 11:42:11 -0700 | [diff] [blame] | 69 | name = "arm_frc_linux_gnueabi_repo", |
| 70 | build_file = "tools/cpp/arm-frc-linux-gnueabi/arm-frc-linux-gnueabi.BUILD", |
| 71 | sha256 = "875b23bec5138e09e3d21cc1ff2727ea3ecbec57509c37589514ba50f92979c7", |
| 72 | url = "http://frc971.org/Build-Dependencies/roborio-compiler-2018.tar.xz", |
Austin Schuh | 55139fe | 2015-10-14 23:55:24 -0700 | [diff] [blame] | 73 | ) |
Austin Schuh | e456f15 | 2015-11-27 13:44:39 -0800 | [diff] [blame] | 74 | |
Brian Silverman | 0d57fc8 | 2016-01-24 21:02:53 -0500 | [diff] [blame] | 75 | # Recompressed version of the one downloaded from Linaro at |
| 76 | # <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>, |
| 77 | # with workarounds for <https://github.com/bazelbuild/bazel/issues/574> and the |
| 78 | # top-level folder stripped off. |
| 79 | new_http_archive( |
Brian Silverman | 7bda621 | 2018-08-05 11:42:11 -0700 | [diff] [blame] | 80 | name = "linaro_linux_gcc_4_9_repo", |
| 81 | build_file = "compilers/linaro_linux_gcc_4.9.BUILD", |
| 82 | sha256 = "25e97bcb0af4fd7cd626d5bb1b303c7d2cb13acf2474e335e3d431d1a53fbb52", |
| 83 | url = "http://frc971.org/Build-Dependencies/gcc-linaro-4.9-2015.05-x86_64_arm-linux-gnueabihf.tar.gz", |
Brian Silverman | 0d57fc8 | 2016-01-24 21:02:53 -0500 | [diff] [blame] | 84 | ) |
| 85 | |
Austin Schuh | e456f15 | 2015-11-27 13:44:39 -0800 | [diff] [blame] | 86 | new_git_repository( |
Brian Silverman | 7bda621 | 2018-08-05 11:42:11 -0700 | [diff] [blame] | 87 | name = "python_gflags_repo", |
| 88 | build_file = "debian/gflags.BUILD", |
| 89 | commit = "41c4571864f0db5823e07715317e7388e94faabc", |
| 90 | remote = "https://github.com/gflags/python-gflags.git", |
Austin Schuh | e456f15 | 2015-11-27 13:44:39 -0800 | [diff] [blame] | 91 | ) |
| 92 | |
| 93 | bind( |
Brian Silverman | 7bda621 | 2018-08-05 11:42:11 -0700 | [diff] [blame] | 94 | name = "python-gflags", |
| 95 | actual = "@python_gflags_repo//:gflags", |
Austin Schuh | e456f15 | 2015-11-27 13:44:39 -0800 | [diff] [blame] | 96 | ) |
| 97 | |
| 98 | new_http_archive( |
Brian Silverman | 7bda621 | 2018-08-05 11:42:11 -0700 | [diff] [blame] | 99 | name = "python_glog_repo", |
| 100 | build_file = "debian/glog.BUILD", |
| 101 | sha256 = "953fd80122c48023d1148e6d1bda2763fcab59c8a81682bb298238a5935547b0", |
| 102 | strip_prefix = "glog-0.1", |
| 103 | url = "https://pypi.python.org/packages/source/g/glog/glog-0.1.tar.gz", |
Austin Schuh | e456f15 | 2015-11-27 13:44:39 -0800 | [diff] [blame] | 104 | ) |
| 105 | |
| 106 | bind( |
Brian Silverman | 7bda621 | 2018-08-05 11:42:11 -0700 | [diff] [blame] | 107 | name = "python-glog", |
| 108 | actual = "@python_glog_repo//:glog", |
Austin Schuh | e456f15 | 2015-11-27 13:44:39 -0800 | [diff] [blame] | 109 | ) |
Brian Silverman | cee260a | 2015-12-24 16:27:51 -0800 | [diff] [blame] | 110 | |
| 111 | new_http_archive( |
Brian Silverman | 7bda621 | 2018-08-05 11:42:11 -0700 | [diff] [blame] | 112 | name = "allwpilib_ni_libraries_repo_2018", |
| 113 | build_file = "debian/ni-libraries-2018.BUILD", |
| 114 | sha256 = "05ef6701c77b83163b443aa956d151028861cc3fa29fdf2b6b77431b4a91bfb9", |
| 115 | strip_prefix = "ni-libraries", |
| 116 | url = "http://frc971.org/Build-Dependencies/allwpilib_ni-libraries_57e9fb3.tar.gz", |
Austin Schuh | 94f51e9 | 2017-10-30 19:25:32 -0700 | [diff] [blame] | 117 | ) |
| 118 | |
| 119 | new_http_archive( |
Brian Silverman | 7bda621 | 2018-08-05 11:42:11 -0700 | [diff] [blame] | 120 | name = "allwpilib_ni_libraries_repo_2017", |
| 121 | build_file = "debian/ni-libraries-2017.BUILD", |
| 122 | sha256 = "67c1ad365fb712cc0acb0bf43465b831030523dc6f88daa02626994f644d91eb", |
| 123 | strip_prefix = "ni-libraries", |
| 124 | url = "http://frc971.org/Build-Dependencies/allwpilib_ni-libraries_e375b4a.tar.gz", |
Brian Silverman | e48dbc1 | 2017-02-04 20:06:29 -0800 | [diff] [blame] | 125 | ) |
| 126 | |
Brian Silverman | 3fca9d7 | 2016-02-20 02:32:51 -0500 | [diff] [blame] | 127 | # Downloaded from: |
| 128 | # https://pypi.python.org/packages/source/s/six/six-1.10.0.tar.gz |
| 129 | new_http_archive( |
Brian Silverman | 7bda621 | 2018-08-05 11:42:11 -0700 | [diff] [blame] | 130 | name = "six_repo", |
| 131 | build_file = "debian/six.BUILD", |
| 132 | sha256 = "105f8d68616f8248e24bf0e9372ef04d3cc10104f1980f54d57b2ce73a5ad56a", |
| 133 | strip_prefix = "six-1.10.0", |
| 134 | url = "http://frc971.org/Build-Dependencies/six-1.10.0.tar.gz", |
Brian Silverman | 3fca9d7 | 2016-02-20 02:32:51 -0500 | [diff] [blame] | 135 | ) |
| 136 | |
| 137 | # For protobuf. Don't use these. |
| 138 | bind( |
Brian Silverman | 7bda621 | 2018-08-05 11:42:11 -0700 | [diff] [blame] | 139 | name = "six", |
| 140 | actual = "@six_repo//:six", |
Brian Silverman | 3fca9d7 | 2016-02-20 02:32:51 -0500 | [diff] [blame] | 141 | ) |
Brian Silverman | 7bda621 | 2018-08-05 11:42:11 -0700 | [diff] [blame] | 142 | |
Brian Silverman | 3fca9d7 | 2016-02-20 02:32:51 -0500 | [diff] [blame] | 143 | bind( |
Brian Silverman | 7bda621 | 2018-08-05 11:42:11 -0700 | [diff] [blame] | 144 | name = "gtest", |
| 145 | actual = "//third_party/googletest:googlemock", |
Brian Silverman | 3fca9d7 | 2016-02-20 02:32:51 -0500 | [diff] [blame] | 146 | ) |
Brian Silverman | 7bda621 | 2018-08-05 11:42:11 -0700 | [diff] [blame] | 147 | |
Brian Silverman | 3fca9d7 | 2016-02-20 02:32:51 -0500 | [diff] [blame] | 148 | bind( |
Brian Silverman | 7bda621 | 2018-08-05 11:42:11 -0700 | [diff] [blame] | 149 | name = "gtest_main", |
| 150 | actual = "//third_party/googletest:googlemock_main", |
Brian Silverman | 3fca9d7 | 2016-02-20 02:32:51 -0500 | [diff] [blame] | 151 | ) |
| 152 | |
| 153 | new_http_archive( |
Brian Silverman | 7bda621 | 2018-08-05 11:42:11 -0700 | [diff] [blame] | 154 | name = "python_import_helpers", |
| 155 | build_file = "third_party/python_import_helpers.BUILD", |
| 156 | sha256 = "71939a7d75585a57d2e99a33d39f391764d8f930f9a16acf32e00c5d3f432aa0", |
| 157 | url = "http://frc971.org/Build-Dependencies/empty.tar.gz", |
Brian Silverman | 3fca9d7 | 2016-02-20 02:32:51 -0500 | [diff] [blame] | 158 | ) |
Brian Silverman | 8b63869 | 2017-06-26 23:10:26 -0700 | [diff] [blame] | 159 | |
Brian Silverman | 4aa8304 | 2018-01-05 12:47:31 -0800 | [diff] [blame] | 160 | # Recompressed from libusb-1.0.21.7z. |
| 161 | http_file( |
Brian Silverman | 7bda621 | 2018-08-05 11:42:11 -0700 | [diff] [blame] | 162 | name = "libusb_1_0_windows", |
| 163 | sha256 = "fc2ba03992f343aabbaf9eb90559c6e00cdc6a2bd914d7cebea85857d5244015", |
| 164 | url = "http://frc971.org/Build-Dependencies/libusb-1.0.21-windows.tar.xz", |
Brian Silverman | 4aa8304 | 2018-01-05 12:47:31 -0800 | [diff] [blame] | 165 | ) |
Brian Silverman | d3ad165 | 2018-02-18 22:16:29 -0500 | [diff] [blame] | 166 | |
| 167 | # The data tarball of the same-named Debian package. |
| 168 | new_http_archive( |
| 169 | name = "f2c", |
Brian Silverman | 7bda621 | 2018-08-05 11:42:11 -0700 | [diff] [blame] | 170 | build_file = "debian/f2c.BUILD", |
Brian Silverman | d3ad165 | 2018-02-18 22:16:29 -0500 | [diff] [blame] | 171 | sha256 = "2c677437f8217a2e2b23e41b33995d0571644fc1bea46de858f8913a5053e3f4", |
| 172 | url = "http://frc971.org/Build-Dependencies/f2c_20100827-1_amd64.xz.tar.xz", |
Brian Silverman | d3ad165 | 2018-02-18 22:16:29 -0500 | [diff] [blame] | 173 | ) |
| 174 | |
| 175 | # Downloaded from http://www.netlib.org/clapack/. |
| 176 | new_http_archive( |
Brian Silverman | 7bda621 | 2018-08-05 11:42:11 -0700 | [diff] [blame] | 177 | name = "clapack", |
| 178 | build_file = "debian/clapack.BUILD", |
| 179 | sha256 = "6dc4c382164beec8aaed8fd2acc36ad24232c406eda6db462bd4c41d5e455fac", |
| 180 | strip_prefix = "CLAPACK-3.2.1/", |
| 181 | url = "http://frc971.org/Build-Dependencies/clapack-3.2.1.tgz", |
| 182 | ) |
| 183 | |
| 184 | new_http_archive( |
| 185 | name = "patch", |
| 186 | build_file = "debian/patch.BUILD", |
| 187 | sha256 = "b5ce139648a2e04f5585948ddad2fdae24dd4ee7976ac5a22d6ae7bd5674631e", |
| 188 | url = "http://frc971.org/Build-Dependencies/patch.tar.gz", |
Brian Silverman | d3ad165 | 2018-02-18 22:16:29 -0500 | [diff] [blame] | 189 | ) |
Brian Silverman | 7297c0c | 2018-08-05 13:43:00 -0700 | [diff] [blame] | 190 | |
| 191 | new_http_archive( |
| 192 | name = "pandoc", |
| 193 | build_file = "debian/pandoc.BUILD", |
| 194 | sha256 = "9f7a7adb3974a1f14715054c349ff3edc2909e920dbe3438fca437a83845f3c4", |
| 195 | url = "http://frc971.org/Build-Dependencies/pandoc.tar.gz", |
| 196 | ) |
Brian Silverman | 4f6ba44 | 2018-08-05 14:34:58 -0700 | [diff] [blame] | 197 | |
| 198 | new_http_archive( |
| 199 | name = "libusb", |
| 200 | build_file = "debian/libusb.BUILD", |
| 201 | sha256 = "3ca5cc2d317226f6646866ff9e8c443db3b0f6c82f828e800240982727531590", |
| 202 | url = "http://frc971.org/Build-Dependencies/libusb.tar.gz", |
| 203 | ) |
Brian Silverman | b80dc9f | 2018-08-05 14:59:24 -0700 | [diff] [blame^] | 204 | |
| 205 | new_http_archive( |
| 206 | name = "mingw_compiler", |
| 207 | build_file = "debian/mingw_compiler.BUILD", |
| 208 | sha256 = "45e86a8460f2151a4f0306e7ae7b06761029d2412ee16f63d1e8d2d29354e378", |
| 209 | url = "http://frc971.org/Build-Dependencies/mingw_compiler.tar.gz", |
| 210 | ) |