github.com/sercand/please@v13.4.0+incompatible/third_party/go/BUILD (about)

     1  package(default_visibility = ["PUBLIC"])
     2  
     3  # This is needed to break a circular dependency.
     4  package(jarcat_tool = "//tools/jarcat:jarcat_unzip")
     5  
     6  go_get(
     7      name = "logging",
     8      get = "gopkg.in/op/go-logging.v1",
     9      revision = "b2cb9fa56473e98db8caba80237377e83fe44db5",
    10  )
    11  
    12  go_get(
    13      name = "terminal",
    14      get = "golang.org/x/crypto/ssh/terminal",
    15      revision = "7b85b097bf7527677d54d3220065e966a0e3b613",
    16  )
    17  
    18  go_get(
    19      name = "warnings",
    20      get = "gopkg.in/warnings.v0",
    21      revision = "v0.1.2",
    22  )
    23  
    24  go_get(
    25      name = "gcfg",
    26      get = "gopkg.in/gcfg.v1",
    27      install = [
    28          "",
    29          "scanner",
    30          "token",
    31          "types",
    32      ],
    33      patch = "gcfg_dynamic_fields.patch",
    34      revision = "27e4946190b4a327b539185f2b5b1f7c84730728",
    35      deps = [
    36          ":warnings",
    37      ],
    38  )
    39  
    40  go_get(
    41      name = "xattr",
    42      get = "github.com/pkg/xattr",
    43      revision = "d15dbc2bb0b5da267362b5e066e2c44c1fcff6c7",
    44      deps = [":unix"],
    45  )
    46  
    47  go_get(
    48      name = "go-bindata",
    49      binary = True,
    50      get = "github.com/kevinburke/go-bindata/...",
    51      revision = "46eb4c183bfc1ebb527d9d19bcded39476302eb8",
    52      strip = ["testdata"],
    53  )
    54  
    55  go_get(
    56      name = "go-flags",
    57      get = "github.com/jessevdk/go-flags",
    58      patch = "flags_subcommand.patch",
    59      revision = "v1.4.0",
    60  )
    61  
    62  go_get(
    63      name = "humanize",
    64      get = "github.com/dustin/go-humanize",
    65      revision = "8929fe90cee4b2cb9deb468b51fb34eba64d1bf0",
    66  )
    67  
    68  go_get(
    69      name = "mux",
    70      get = "github.com/gorilla/mux",
    71      revision = "9c068cf16d982f8bd444b8c352acbeec34c4fe5b",
    72      deps = [
    73          ":gorilla_context",
    74      ],
    75  )
    76  
    77  go_get(
    78      name = "gorilla_context",
    79      get = "github.com/gorilla/context",
    80      revision = "1c83b3eabd45b6d76072b66b746c20815fb2872d",
    81  )
    82  
    83  go_get(
    84      name = "net",
    85      get = "golang.org/x/net/...",
    86      revision = "136a25c244d3019482a795d728110278d6ba09a4",
    87      deps = [
    88          ":terminal",
    89          ":text",
    90      ],
    91  )
    92  
    93  go_get(
    94      name = "text",
    95      get = "golang.org/x/text/...",
    96      revision = "4e4a3210bb54bb31f6ab2cdca2edcc0b50c420c1",
    97      deps = [
    98          ":tools",
    99      ],
   100  )
   101  
   102  go_get(
   103      name = "tools",
   104      get = "golang.org/x/tools",
   105      install = [
   106          "cover",
   107      ],
   108      revision = "2ae76fd1560b622911f444c1e66b70a857e1de67",
   109  )
   110  
   111  go_get(
   112      name = "grpc",
   113      exported_deps = [":net"],
   114      get = "google.golang.org/grpc",
   115      install = [
   116          "",
   117          "balancer",
   118          "balancer/base",
   119          "balancer/roundrobin",
   120          "codes",
   121          "connectivity",
   122          "credentials",
   123          "encoding",
   124          "encoding/gzip",
   125          "encoding/proto",
   126          "grpclb/grpc_lb_v1/messages",
   127          "grpclog",
   128          "health",
   129          "health/grpc_health_v1",
   130          "internal",
   131          "keepalive",
   132          "metadata",
   133          "naming",
   134          "peer",
   135          "resolver",
   136          "resolver/dns",
   137          "resolver/passthrough",
   138          "stats",
   139          "status",
   140          "tap",
   141          "transport",
   142      ],
   143      repo = "github.com/grpc/grpc-go",
   144      revision = "v1.10.0",
   145      deps = [
   146          ":protobuf",
   147          ":rpcstatus",
   148      ],
   149  )
   150  
   151  #TODO: build from the actual proto.
   152  go_get(
   153      name = "rpcstatus",
   154      get = "google.golang.org/genproto/googleapis/rpc/status",
   155      revision = "2b5a72b8730b0b16380010cfe5286c42108d88e7",
   156      deps = [":protobuf"],
   157  )
   158  
   159  go_get(
   160      name = "protobuf",
   161      get = "github.com/golang/protobuf/...",
   162      revision = "v1.1.0",
   163      strip = [
   164          "proto/proto3_proto",
   165          "conformance",
   166      ],
   167  )
   168  
   169  go_get(
   170      name = "protoc-gen-go",
   171      binary = True,
   172      get = [],
   173      install = ["github.com/golang/protobuf/protoc-gen-go"],
   174      deps = [
   175          ":protobuf",
   176      ],
   177  )
   178  
   179  go_get(
   180      name = "spew",
   181      get = "github.com/davecgh/go-spew/spew",
   182      patch = "spew_omit_empty.patch",
   183      revision = "ecdeabc65495df2dec95d7c4a4c3e021903035e5",
   184  )
   185  
   186  go_get(
   187      name = "testify",
   188      get = "github.com/stretchr/testify",
   189      install = [
   190          "assert",
   191          "require",
   192          "vendor/github.com/davecgh/go-spew/spew",
   193          "vendor/github.com/pmezard/go-difflib/difflib",
   194      ],
   195      revision = "f390dcf405f7b83c997eac1b06768bb9f44dec18",
   196      deps = [":spew"],
   197  )
   198  
   199  go_get(
   200      name = "go-isatty",
   201      get = "github.com/mattn/go-isatty",
   202      revision = "6ca4dbf54d38eea1a992b3c722a76a5d1c4cb25c",
   203  )
   204  
   205  go_get(
   206      name = "prompter",
   207      get = "github.com/Songmu/prompter",
   208      revision = "f49666b0047d12850875d771340e1d862d9e7a0c",
   209      deps = [
   210          ":go-isatty",
   211          ":terminal",
   212      ],
   213  )
   214  
   215  go_get(
   216      name = "levenshtein",
   217      get = "github.com/texttheater/golang-levenshtein/levenshtein",
   218      revision = "14026fface0cb806188c85e792a93d625dc37d0f",
   219  )
   220  
   221  go_get(
   222      name = "queue",
   223      get = "github.com/Workiva/go-datastructures/queue",
   224      revision = "064f3ea06ab2337e6eaf42052392d14f779e91cb",
   225  )
   226  
   227  go_get(
   228      name = "fsnotify",
   229      get = "github.com/fsnotify/fsnotify",
   230      revision = "a8a77c9133d2d6fd8334f3260d06f60e8d80a5fb",
   231      deps = [":unix"],
   232  )
   233  
   234  go_get(
   235      name = "concurrent-map",
   236      get = "github.com/streamrail/concurrent-map",
   237      revision = "5fc745307dc80a1883243b978f7e7c0fd5ce7206",
   238  )
   239  
   240  go_get(
   241      name = "quantile",
   242      get = "github.com/beorn7/perks/quantile",
   243      revision = "4c0e84591b9aa9e6dcfdf3e020114cd81f89d5f9",
   244  )
   245  
   246  go_get(
   247      name = "pbutil",
   248      get = "github.com/matttproud/golang_protobuf_extensions/pbutil",
   249      revision = "c12348ce28de40eed0136aa2b644d0ee0650e56c",
   250      deps = [":protobuf"],
   251  )
   252  
   253  go_get(
   254      name = "prometheus",
   255      get = "github.com/prometheus/client_golang/prometheus/...",
   256      revision = "v0.8.0",
   257      deps = [
   258          ":grpc",
   259          ":pbutil",
   260          ":procfs",
   261          ":prometheus_client_model",
   262          ":prometheus_common",
   263          ":protobuf",
   264          ":quantile",
   265      ],
   266  )
   267  
   268  go_get(
   269      name = "prometheus_common",
   270      get = "github.com/prometheus/common",
   271      install = [
   272          "expfmt",
   273          "model",
   274          "internal/bitbucket.org/ww/goautoneg",
   275      ],
   276      revision = "c7de2306084e37d54b8be01f3541a8464345e9a5",
   277      deps = [
   278          ":pbutil",
   279          ":prometheus_client_model",
   280          ":protobuf",
   281      ],
   282  )
   283  
   284  go_get(
   285      name = "prometheus_client_model",
   286      get = "github.com/prometheus/client_model/go",
   287      revision = "5c3871d89910bfb32f5fcab2aa4b9ec68e65a99f",
   288      deps = [
   289          ":protobuf",
   290      ],
   291  )
   292  
   293  go_get(
   294      name = "procfs",
   295      get = "github.com/prometheus/procfs/...",
   296      revision = "05ee40e3a273f7245e8777337fc7b46e533a9a92",
   297      strip = ["fixtures"],  # Test fixture has a symlink to /usr/bin/vim which might not exist
   298  )
   299  
   300  go_get(
   301      name = "grpc-prometheus",
   302      get = "github.com/grpc-ecosystem/go-grpc-prometheus",
   303      revision = "34abd90a014618f61222a1b0a7b7eb834a2d0dc3",
   304      deps = [
   305          ":grpc",
   306          ":procfs",
   307          ":prometheus",
   308          ":protobuf",
   309      ],
   310  )
   311  
   312  go_get(
   313      name = "grpc-middleware",
   314      get = "github.com/grpc-ecosystem/go-grpc-middleware",
   315      install = [
   316          "retry",
   317          "util/metautils",
   318          "util/backoffutils",
   319      ],
   320      revision = "fa8fef87dcecac0bda02d36abb3c790ab9e0030b",
   321      deps = [
   322          ":grpc",
   323          ":net",
   324          ":protobuf",
   325      ],
   326  )
   327  
   328  go_get(
   329      name = "shlex",
   330      get = "github.com/google/shlex",
   331      revision = "6f45313302b9c56850fc17f99e40caebce98c716",
   332  )
   333  
   334  go_get(
   335      name = "semver",
   336      get = "github.com/coreos/go-semver/semver",
   337      revision = "8ab6407b697782a06568d4b7f1db25550ec2e4c6",
   338  )
   339  
   340  go_get(
   341      name = "memberlist",
   342      get = "github.com/hashicorp/memberlist",
   343      revision = "2072f3a3ff4b7b3d830be77678d5d4b978362bc4",
   344      deps = [
   345          ":dns",
   346          ":go-metrics",
   347          ":go-msgpack",
   348          ":go-multierror",
   349          ":go-sockaddr",
   350          ":seed",
   351      ],
   352  )
   353  
   354  go_get(
   355      name = "seed",
   356      get = "github.com/sean-/seed",
   357      revision = "e2103e2c35297fb7e17febb81e49b312087a2372",
   358  )
   359  
   360  go_get(
   361      name = "go-msgpack",
   362      get = "github.com/hashicorp/go-msgpack/...",
   363      revision = "fa3f63826f7c23912c15263591e65d54d080b458",
   364  )
   365  
   366  go_get(
   367      name = "go-multierror",
   368      get = "github.com/hashicorp/go-multierror",
   369      install = [
   370          "",
   371          "vendor/github.com/hashicorp/errwrap",
   372      ],
   373      revision = "b7773ae218740a7be65057fc60b366a49b538a44",
   374  )
   375  
   376  go_get(
   377      name = "go-metrics",
   378      get = "github.com/armon/go-metrics",
   379      revision = "7aa49fde808223f8dadfdbfd3a20ff6c19e5f9ec",
   380      deps = [
   381          ":go-immutable-radix",
   382          ":verify",
   383      ],
   384  )
   385  
   386  go_get(
   387      name = "go-sockaddr",
   388      get = "github.com/hashicorp/go-sockaddr",
   389      revision = "6d291a969b86c4b633730bfc6b8b9d64c3aafed9",
   390  )
   391  
   392  go_get(
   393      name = "go-immutable-radix",
   394      get = "github.com/hashicorp/go-immutable-radix",
   395      revision = "7f3cd4390caab3250a57f30efdb2a65dd7649ecf",
   396      deps = [
   397          ":go-uuid",
   398          ":simplelru",
   399      ],
   400  )
   401  
   402  go_get(
   403      name = "simplelru",
   404      get = "github.com/hashicorp/golang-lru/simplelru",
   405      revision = "0fb14efe8c47ae851c0034ed7a448854d3d34cf3",
   406  )
   407  
   408  go_get(
   409      name = "go-uuid",
   410      get = "github.com/hashicorp/go-uuid",
   411      revision = "64130c7a86d732268a38cb04cfbaf0cc987fda98",
   412  )
   413  
   414  go_get(
   415      name = "verify",
   416      get = "github.com/pascaldekloe/goe/verify",
   417      revision = "c580d16984352a427218a8e43232313d1c1c6f84",
   418  )
   419  
   420  go_get(
   421      name = "dns",
   422      get = "github.com/miekg/dns/...",
   423      revision = "be5ae6ca7ac994584d2e30167737687f1c1ded8e",
   424  )
   425  
   426  go_get(
   427      name = "atime",
   428      get = "github.com/djherbis/atime",
   429      revision = "89517e96e10b93292169a79fd4523807bdc5d5fa",
   430  )
   431  
   432  go_get(
   433      name = "errgroup",
   434      get = "golang.org/x/sync/errgroup",
   435      revision = "457c5828408160d6a47e17645169cf8fa20218c4",
   436      deps = [":net"],
   437  )
   438  
   439  go_get(
   440      name = "psutil",
   441      get = "github.com/shirou/gopsutil",
   442      install = [
   443          "cpu",
   444          "internal/common",
   445          "mem",
   446      ],
   447      revision = "v2.17.09",
   448      deps = [":unix"],
   449  )
   450  
   451  go_get(
   452      name = "unix",
   453      get = "golang.org/x/sys/unix",
   454      revision = "1b2967e3c290b7c545b3db0deeda16e9be4f98a2",
   455  )
   456  
   457  go_get(
   458      name = "openpgp",
   459      get = "golang.org/x/crypto/openpgp/...",
   460      revision = "077efaa604f994162e3307fafe5954640763fc08",
   461      deps = [":cast5"],
   462  )
   463  
   464  go_get(
   465      name = "cast5",
   466      get = "golang.org/x/crypto/cast5",
   467      revision = "077efaa604f994162e3307fafe5954640763fc08",
   468  )
   469  
   470  go_get(
   471      name = "go-fuzz-build",
   472      binary = True,
   473      get = [],
   474      install = ["github.com/dvyukov/go-fuzz/go-fuzz-build"],
   475      deps = [":go-fuzz-dep"],
   476  )
   477  
   478  go_get(
   479      name = "go-fuzz",
   480      binary = True,
   481      get = [],
   482      install = ["github.com/dvyukov/go-fuzz/go-fuzz"],
   483      deps = [":go-fuzz-dep"],
   484  )
   485  
   486  go_get(
   487      name = "go-fuzz-dep",
   488      get = "github.com/dvyukov/go-fuzz",
   489      install = [
   490          "go-fuzz-dep",
   491          "go-fuzz-defs",
   492      ],
   493      revision = "445b00a1141b27425541ee8d7dc2f524faf202a9",
   494  )
   495  
   496  go_get(
   497      name = "godirwalk",
   498      get = "github.com/karrick/godirwalk",
   499      revision = "v1.7.0",
   500      strip = [
   501          "examples",
   502          "testdata",
   503          "vendor",
   504      ],
   505      deps = [":errors"],
   506  )
   507  
   508  go_get(
   509      name = "errors",
   510      get = "github.com/pkg/errors",
   511      revision = "30136e27e2ac8d167177e8a583aa4c3fea5be833",
   512  )
   513  
   514  go_get(
   515      name = "docker",
   516      get = "docker.io/go-docker",
   517      install = [
   518          "",
   519          "api/...",
   520      ],
   521      repo = "github.com/docker/go-docker",
   522      revision = "v1.0.0",
   523      deps = [
   524          ":docker-distribution",
   525          ":errors",
   526          ":go-connections",
   527          ":go-digest",
   528          ":go-units",
   529          ":gogo-protobuf",
   530          ":image-spec",
   531          ":net",
   532      ],
   533  )
   534  
   535  go_get(
   536      name = "docker-distribution",
   537      get = "github.com/docker/distribution",
   538      install = [
   539          "reference",
   540          "digestset",
   541      ],
   542      revision = "edc3ab29cdff8694dd6feb85cfeb4b5f1b38ed9c",
   543      strip = ["vendor"],
   544      deps = [
   545          ":go-digest",
   546          ":net",
   547      ],
   548  )
   549  
   550  go_get(
   551      name = "go-connections",
   552      get = "github.com/docker/go-connections/...",
   553      revision = "v0.3.0",
   554      deps = [
   555          ":errors",
   556          ":net",
   557      ],
   558  )
   559  
   560  go_get(
   561      name = "go-units",
   562      get = "github.com/docker/go-units",
   563      revision = "v0.3.2",
   564  )
   565  
   566  go_get(
   567      name = "gogo-protobuf",
   568      get = "github.com/gogo/protobuf",
   569      install = ["proto"],
   570      revision = "v0.4",
   571  )
   572  
   573  go_get(
   574      name = "go-digest",
   575      get = "github.com/opencontainers/go-digest",
   576      revision = "v1.0.0-rc1",
   577  )
   578  
   579  go_get(
   580      name = "image-spec",
   581      get = "github.com/opencontainers/image-spec",
   582      install = [
   583          "specs-go/...",
   584      ],
   585      revision = "v1.0.0",
   586      deps = [
   587          ":errors",
   588          ":go-digest",
   589      ],
   590  )
   591  
   592  go_get(
   593      name = "skylark",
   594      get = "github.com/google/skylark/syntax",
   595      revision = "a5f7082aabed29c0e429c722292c66ec8ecf9591",
   596  )
   597  
   598  go_get(
   599      name = "buildtools",
   600      get = "github.com/bazelbuild/buildtools/...",
   601      revision = "0.19.2",
   602      deps = [
   603          ":protobuf",
   604          ":skylark",
   605      ],
   606  )
   607  
   608  go_get(
   609      name = "buildifier",
   610      binary = True,
   611      get = [],
   612      install = ["github.com/bazelbuild/buildtools/buildifier"],
   613      deps = [
   614          ":buildtools",
   615      ],
   616  )
   617  
   618  go_get(
   619      name = "jsonrpc2",
   620      get = "github.com/sourcegraph/jsonrpc2",
   621      revision = "549eb959f029d014d623104d40ab966d159a92de",
   622  )
   623  
   624  go_get(
   625      name = "xz",
   626      get = "github.com/ulikunitz/xz",
   627      install = [
   628          "",
   629          "lzma",
   630          "internal/...",
   631      ],
   632      revision = "v0.5.4",
   633  )
   634  
   635  go_get(
   636      name = "ar",
   637      get = "github.com/peterebden/ar",
   638      revision = "a0ae3a11a518fb9559c95ed151ec07865b31980b",
   639  )
   640  
   641  go_get(
   642      name = "cli-init",
   643      get = "github.com/peterebden/go-cli-init",
   644      revision = "v1.0.0",
   645      deps = [
   646          ":go-flags",
   647          ":logging",
   648          ":terminal",
   649      ],
   650  )