about summary refs log tree commit diff
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2020-07-27T19·45+0100
committertazjin <mail@tazj.in>2020-07-27T23·54+0000
commit82ba28f1976305c1163adb5993745604ccb696cc (patch)
tree6d3887b3ffd1213461d8f612549bfaeda46a0657
parentef54f5da9fa30b5c302f2a49595ee5d041f9706a (diff)
chore: Move //fun/tvldb -> //fun/paroxysm r/1496
Say ~my~ its name!

Change-Id: I7890318aef984af0f6bc011de32282f16e01cbb3
Reviewed-on: https://cl.tvl.fyi/c/depot/+/1483
Tested-by: BuildkiteCI
Reviewed-by: eta <eta@theta.eu.org>
-rw-r--r--ci-builds.nix3
-rw-r--r--fun/paroxysm/.gitignore (renamed from fun/tvldb/.gitignore)0
-rw-r--r--fun/paroxysm/Cargo.lock (renamed from fun/tvldb/Cargo.lock)0
-rw-r--r--fun/paroxysm/Cargo.toml (renamed from fun/tvldb/Cargo.toml)0
-rw-r--r--fun/paroxysm/OWNERS (renamed from fun/tvldb/OWNERS)0
-rw-r--r--fun/paroxysm/README.md (renamed from fun/tvldb/README.md)0
-rw-r--r--fun/paroxysm/default.nix (renamed from fun/tvldb/default.nix)2
-rw-r--r--fun/paroxysm/docker/default.nix7
-rw-r--r--fun/paroxysm/migrations/20181209140247_initial/down.sql (renamed from fun/tvldb/migrations/20181209140247_initial/down.sql)0
-rw-r--r--fun/paroxysm/migrations/20181209140247_initial/up.sql (renamed from fun/tvldb/migrations/20181209140247_initial/up.sql)0
-rw-r--r--fun/paroxysm/migrations/20181218142013_fix_unique/down.sql (renamed from fun/tvldb/migrations/20181218142013_fix_unique/down.sql)0
-rw-r--r--fun/paroxysm/migrations/20181218142013_fix_unique/up.sql (renamed from fun/tvldb/migrations/20181218142013_fix_unique/up.sql)0
-rw-r--r--fun/paroxysm/src/cfg.rs (renamed from fun/tvldb/src/cfg.rs)0
-rw-r--r--fun/paroxysm/src/keyword.rs (renamed from fun/tvldb/src/keyword.rs)0
-rw-r--r--fun/paroxysm/src/main.rs (renamed from fun/tvldb/src/main.rs)0
-rw-r--r--fun/paroxysm/src/models.rs (renamed from fun/tvldb/src/models.rs)0
-rw-r--r--fun/paroxysm/src/schema.rs (renamed from fun/tvldb/src/schema.rs)0
-rw-r--r--fun/tvldb/docker/default.nix7
18 files changed, 10 insertions, 9 deletions
diff --git a/ci-builds.nix b/ci-builds.nix
index 01dd6d58e9..f9eca106a3 100644
--- a/ci-builds.nix
+++ b/ci-builds.nix
@@ -41,8 +41,9 @@ in lib.fix (self: {
     amsterdump
     clbot
     gemma
+    paroxysm
+    paroxysm.docker
     quinistry
-    tvldb
     watchblob
     wcl
   ];
diff --git a/fun/tvldb/.gitignore b/fun/paroxysm/.gitignore
index 8cb01f2e3d..8cb01f2e3d 100644
--- a/fun/tvldb/.gitignore
+++ b/fun/paroxysm/.gitignore
diff --git a/fun/tvldb/Cargo.lock b/fun/paroxysm/Cargo.lock
index 46526da90e..46526da90e 100644
--- a/fun/tvldb/Cargo.lock
+++ b/fun/paroxysm/Cargo.lock
diff --git a/fun/tvldb/Cargo.toml b/fun/paroxysm/Cargo.toml
index 91a68d4f06..91a68d4f06 100644
--- a/fun/tvldb/Cargo.toml
+++ b/fun/paroxysm/Cargo.toml
diff --git a/fun/tvldb/OWNERS b/fun/paroxysm/OWNERS
index 7f8beb1aa7..7f8beb1aa7 100644
--- a/fun/tvldb/OWNERS
+++ b/fun/paroxysm/OWNERS
diff --git a/fun/tvldb/README.md b/fun/paroxysm/README.md
index a595530982..a595530982 100644
--- a/fun/tvldb/README.md
+++ b/fun/paroxysm/README.md
diff --git a/fun/tvldb/default.nix b/fun/paroxysm/default.nix
index 6e6ab387f9..214f2fdcba 100644
--- a/fun/tvldb/default.nix
+++ b/fun/paroxysm/default.nix
@@ -4,7 +4,7 @@ let
   pkgs = depot.third_party;
 in
 pkgs.naersk.buildPackage {
-  name = "tvldb";
+  name = "paroxysm";
   version = "0.0.1";
   src = ./.;
   buildInputs = [pkgs.openssl pkgs.pkgconfig pkgs.postgresql.lib];
diff --git a/fun/paroxysm/docker/default.nix b/fun/paroxysm/docker/default.nix
new file mode 100644
index 0000000000..824259804a
--- /dev/null
+++ b/fun/paroxysm/docker/default.nix
@@ -0,0 +1,7 @@
+{ depot, ... }:
+
+depot.third_party.dockerTools.buildLayeredImage {
+  name = "paroxysm";
+  contents = [ depot.fun.paroxysm ];
+  config.Entrypoint = [ "${depot.fun.paroxysm}/bin/paroxysm" ];
+}
diff --git a/fun/tvldb/migrations/20181209140247_initial/down.sql b/fun/paroxysm/migrations/20181209140247_initial/down.sql
index aa02f4f63f..aa02f4f63f 100644
--- a/fun/tvldb/migrations/20181209140247_initial/down.sql
+++ b/fun/paroxysm/migrations/20181209140247_initial/down.sql
diff --git a/fun/tvldb/migrations/20181209140247_initial/up.sql b/fun/paroxysm/migrations/20181209140247_initial/up.sql
index e8b52d5a9b..e8b52d5a9b 100644
--- a/fun/tvldb/migrations/20181209140247_initial/up.sql
+++ b/fun/paroxysm/migrations/20181209140247_initial/up.sql
diff --git a/fun/tvldb/migrations/20181218142013_fix_unique/down.sql b/fun/paroxysm/migrations/20181218142013_fix_unique/down.sql
index 291a97c5ce..291a97c5ce 100644
--- a/fun/tvldb/migrations/20181218142013_fix_unique/down.sql
+++ b/fun/paroxysm/migrations/20181218142013_fix_unique/down.sql
diff --git a/fun/tvldb/migrations/20181218142013_fix_unique/up.sql b/fun/paroxysm/migrations/20181218142013_fix_unique/up.sql
index 4885ae5ede..4885ae5ede 100644
--- a/fun/tvldb/migrations/20181218142013_fix_unique/up.sql
+++ b/fun/paroxysm/migrations/20181218142013_fix_unique/up.sql
diff --git a/fun/tvldb/src/cfg.rs b/fun/paroxysm/src/cfg.rs
index 038795a6f1..038795a6f1 100644
--- a/fun/tvldb/src/cfg.rs
+++ b/fun/paroxysm/src/cfg.rs
diff --git a/fun/tvldb/src/keyword.rs b/fun/paroxysm/src/keyword.rs
index 9c5ea47ea5..9c5ea47ea5 100644
--- a/fun/tvldb/src/keyword.rs
+++ b/fun/paroxysm/src/keyword.rs
diff --git a/fun/tvldb/src/main.rs b/fun/paroxysm/src/main.rs
index 510cf0461b..510cf0461b 100644
--- a/fun/tvldb/src/main.rs
+++ b/fun/paroxysm/src/main.rs
diff --git a/fun/tvldb/src/models.rs b/fun/paroxysm/src/models.rs
index 721efbbb2e..721efbbb2e 100644
--- a/fun/tvldb/src/models.rs
+++ b/fun/paroxysm/src/models.rs
diff --git a/fun/tvldb/src/schema.rs b/fun/paroxysm/src/schema.rs
index ef4044531e..ef4044531e 100644
--- a/fun/tvldb/src/schema.rs
+++ b/fun/paroxysm/src/schema.rs
diff --git a/fun/tvldb/docker/default.nix b/fun/tvldb/docker/default.nix
deleted file mode 100644
index ab99dbb0d8..0000000000
--- a/fun/tvldb/docker/default.nix
+++ /dev/null
@@ -1,7 +0,0 @@
-{ depot, ... }:
-
-depot.third_party.dockerTools.buildLayeredImage {
-  name = "tvldb";
-  contents = [ depot.fun.tvldb ];
-  config.Entrypoint = [ "${depot.fun.tvldb}/bin/paroxysm" ];
-}