From daac4c9a9a29a0588590d81e5737e9219caffc2a Mon Sep 17 00:00:00 2001 From: Pavel Zwerschke Date: Sun, 7 Apr 2024 15:23:17 +0200 Subject: [PATCH] Use homebrew formula from homebrew/core --- HomebrewFormula/rage.rb | 47 ----------------------------------------- README.md | 2 +- tap_migrations.json | 3 +++ 3 files changed, 4 insertions(+), 48 deletions(-) delete mode 100644 HomebrewFormula/rage.rb create mode 100644 tap_migrations.json diff --git a/HomebrewFormula/rage.rb b/HomebrewFormula/rage.rb deleted file mode 100644 index abb171e..0000000 --- a/HomebrewFormula/rage.rb +++ /dev/null @@ -1,47 +0,0 @@ -class Rage < Formula - desc "[BETA] A simple, secure, and modern encryption tool." - homepage "https://str4d.xyz/rage" - url "https://github.com/str4d/rage/archive/refs/tags/v0.10.0.tar.gz" - sha256 "34c39c28f8032c144a43aea96e58159fe69526f5ff91cb813083530adcaa6ea4" - license any_of: ["MIT", "Apache-2.0"] - version "0.10.0" - - depends_on "rust" => :build - - def install - system "cargo", "install", *std_cargo_args(path: './rage') - - install_completions("rage") - install_completions("rage-keygen") - - man.install Dir["target/release/manpages/*"] - end - - def install_completions(base_name) - src_dir = "target/release/completions" - - bash_completion.install { "#{src_dir}/#{base_name}.bash" => base_name} - fish_completion.install "#{src_dir}/#{base_name}.fish" - zsh_completion.install "#{src_dir}/_#{base_name}" - end - - def caveats - "rage bash completion depends on the bash-completion package" - end - - test do - # Test key generation - system "#{bin}/rage-keygen -o #{testpath}/output.txt" - assert_predicate testpath/"output.txt", :exist? - - # Test encryption - (testpath/"test.txt").write("Hello World!\n") - system "#{bin}/rage -r age1y8m84r6pwd4da5d45zzk03rlgv2xr7fn9px80suw3psrahul44ashl0usm -o #{testpath}/test.txt.age #{testpath}/test.txt" - assert_predicate testpath/"test.txt.age", :exist? - assert File.read(testpath/"test.txt.age").start_with?("age-encryption.org") - - # Test decryption - (testpath/"test.key").write("AGE-SECRET-KEY-1TRYTV7PQS5XPUYSTAQZCD7DQCWC7Q77YJD7UVFJRMW4J82Q6930QS70MRX") - assert_equal "Hello World!", shell_output("#{bin}/rage -d -i #{testpath}/test.key #{testpath}/test.txt.age").strip - end -end diff --git a/README.md b/README.md index 59547a8..757603e 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ For more plugins, implementations, tools, and integrations, check out the | Environment | CLI command | |-------------|-------------| | Cargo (Rust 1.65+) | `cargo install rage` | -| Homebrew (macOS or Linux) | `brew tap str4d.xyz/rage https://str4d.xyz/rage`
`brew install rage` | +| Homebrew (macOS or Linux) | `brew install rage` | | Alpine Linux (edge) | `apk add rage` | | Arch Linux | `pacman -S rage-encryption` | | Debian | [Debian packages](https://github.com/str4d/rage/releases) | diff --git a/tap_migrations.json b/tap_migrations.json new file mode 100644 index 0000000..0e35e56 --- /dev/null +++ b/tap_migrations.json @@ -0,0 +1,3 @@ +{ + "rage": "homebrew/core" +} \ No newline at end of file