about summary refs log tree commit diff
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2021-02-19T14·44+0200
committertazjin <mail@tazj.in>2021-02-19T16·40+0000
commit0f1a497361893e5324e61812a8db6ca77369789f (patch)
treeb5c7600ed5c345e8041ccfba0b13827ff7c53e9d
parent690994a28cc3045c14268996144e9302fa43bf68 (diff)
chore(3p): Remove git-bug r/2223
We stopped using this in favour of //web/panettone quite a while ago,
so lets clean it up.

Change-Id: I8aa8d86288933d470ab3962ffbb60294eaddd27b
Reviewed-on: https://cl.tvl.fyi/c/depot/+/2540
Tested-by: BuildkiteCI
Reviewed-by: sterni <sternenseemann@systemli.org>
Reviewed-by: lukegb <lukegb@tvl.fyi>
-rwxr-xr-xbin/__dispatch.sh3
l---------bin/git-bug1
-rw-r--r--third_party/git-bug/default.nix37
3 files changed, 0 insertions, 41 deletions
diff --git a/bin/__dispatch.sh b/bin/__dispatch.sh
index 5e2aafb5fe..4aba74158c 100755
--- a/bin/__dispatch.sh
+++ b/bin/__dispatch.sh
@@ -19,9 +19,6 @@ case "${TARGET_TOOL}" in
   depot-build)
     attr="tools.depot-build"
     ;;
-  git-bug)
-    attr="third_party.git-bug"
-    ;;
   gerrit)
     attr="tools.gerrit-cli"
     ;;
diff --git a/bin/git-bug b/bin/git-bug
deleted file mode 120000
index 8390ec9c96..0000000000
--- a/bin/git-bug
+++ /dev/null
@@ -1 +0,0 @@
-__dispatch.sh
\ No newline at end of file
diff --git a/third_party/git-bug/default.nix b/third_party/git-bug/default.nix
deleted file mode 100644
index be9671afce..0000000000
--- a/third_party/git-bug/default.nix
+++ /dev/null
@@ -1,37 +0,0 @@
-{ pkgs, lib, ... }:
-
-pkgs.buildGoModule {
-  pname = "git-bug";
-  version = "unstable-20200614";
-  vendorSha256 = "1lmcs1b0rr2xfajmz205pjp94v8ih1qpj69za06wbp24r5nc2cjg";
-  doCheck = false;
-
-  nativeBuildInputs = [ pkgs.installShellFiles ];
-
-  src = pkgs.fetchFromGitHub {
-    owner = "lukegb";
-    repo = "git-bug";
-    rev = "8243cc989f9dff1546978ba70dc93ab14c232033";
-    sha256 = "0y30bm8imhn2rcrg1s0bswdd60bwdzym60mwrk7fnmgjgscnrss3";
-  };
-
-  # git-bug builds 3 binaries (git-bug itself, misc and doc). The two
-  # additional binaries are used to generate man pages and shell
-  # completions. However, the generated things are already checked in.
-  postBuild = ''
-    rm $GOPATH/bin/misc $GOPATH/bin/doc
-  '';
-
-  postInstall = ''
-    installManPage doc/man/*
-    installShellCompletion --bash misc/bash_completion/git-bug
-    installShellCompletion --fish misc/fish_completion/git-bug
-    installShellCompletion --zsh misc/zsh_completion/git-bug
-  '';
-
-  meta = with lib; {
-    description = "Distributed, offline-first bug tracker embedded in git";
-    homepage = "https://github.com/MichaelMure/git-bug";
-    license = licenses.gpl3;
-  };
-}