diff options
author | Vincent Ambo <mail@tazj.in> | 2022-12-26T09·49+0300 |
---|---|---|
committer | tazjin <tazjin@tvl.su> | 2022-12-26T11·16+0000 |
commit | c6cb13856549907729e76035c818303f3c1fd244 (patch) | |
tree | d0d2711e41bf6649543587a92004b7b56056a6ac /tools/depot-scanner/depot_scanner.proto | |
parent | 1e439fb5ad042d5b55355dff260ff8241bc3e44a (diff) |
chore(tools): remove depot-scanner & tvlc r/5490
These are both unused things from a long time ago, which we don't need to keep around anymore. Their design doc has been marked as archived. Change-Id: Icd2744e511e78ec95ec8f39e5f79ed1fe98e9e4a Reviewed-on: https://cl.tvl.fyi/c/depot/+/7639 Autosubmit: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI Reviewed-by: flokli <flokli@flokli.de>
Diffstat (limited to 'tools/depot-scanner/depot_scanner.proto')
-rw-r--r-- | tools/depot-scanner/depot_scanner.proto | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/tools/depot-scanner/depot_scanner.proto b/tools/depot-scanner/depot_scanner.proto deleted file mode 100644 index ecb5b1cb3335..000000000000 --- a/tools/depot-scanner/depot_scanner.proto +++ /dev/null @@ -1,52 +0,0 @@ -// Copyright 2020 TVL -// SPDX-License-Identifier: MIT - -syntax = "proto3"; -package tvl.tools.depot_scanner; -option go_package = "code.tvl.fyi/tools/depot-scanner/proto"; - -enum PathType { - UNKNOWN = 0; - DEPOT = 1; - STORE = 2; - CORE = 3; -} - -message ScanRequest { - // Which revision of the depot - string revision = 1; - string attr = 2; - // Optionally, the attr to evaluate can be provided as a path to a folder or a - // .nix file. This is used by the HTTP service. - // buf:lint:ignore FIELD_LOWER_SNAKE_CASE - string attrAsPath = 3; -} - -message ScanResponse { - // buf:lint:ignore FIELD_LOWER_SNAKE_CASE - repeated string depotPath = 1; - // buf:lint:ignore FIELD_LOWER_SNAKE_CASE - repeated string nixStorePath = 2; - // buf:lint:ignore FIELD_LOWER_SNAKE_CASE - repeated string corePkgsPath = 4; - // buf:lint:ignore FIELD_LOWER_SNAKE_CASE - repeated string otherPath = 3; - - bytes derivation = 5; -} - -message ArchiveRequest { - // buf:lint:ignore FIELD_LOWER_SNAKE_CASE - repeated string depotPath = 1; -} - -message ArchiveChunk { - bytes chunk = 1; -} - -service DepotScanService { - rpc Scan(ScanRequest) returns (ScanResponse); - - rpc MakeArchive(ArchiveRequest) returns (stream ArchiveChunk); -} - |