64 lines
2.8 KiB
Ruby
64 lines
2.8 KiB
Ruby
class GitAnnex < Formula
|
|
desc "Manage files with git without checking in file contents"
|
|
homepage "https://git-annex.branchable.com/"
|
|
url "https://hackage.haskell.org/package/git-annex-10.20220504/git-annex-10.20220504.tar.gz"
|
|
sha256 "c38963526ec9c588715873cd791b6137251c434b44c63c990f91d377162af782"
|
|
license all_of: ["AGPL-3.0-or-later", "BSD-2-Clause", "BSD-3-Clause",
|
|
"GPL-2.0-only", "GPL-3.0-or-later", "MIT"]
|
|
head "git://git-annex.branchable.com/", branch: "master"
|
|
|
|
bottle do
|
|
sha256 cellar: :any, monterey: "bc2ea15602339b3c362cc1860547cb9693c3912aa858bd5b3ae7f81a2540b0b1"
|
|
sha256 cellar: :any, big_sur: "430fd1a4ac89d7864823a736b76def063996716e99ff1abe9d0c832d7b54fc89"
|
|
sha256 cellar: :any, catalina: "c18e462c9db90adae711c21afbe3fea933b2b863cbef57b52a45ca3664a9619b"
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "a16bfa4af4dfe7e6e01d8bb93c57d75d33a8d6bfc152ea7c65763479367227b0"
|
|
end
|
|
|
|
depends_on "cabal-install" => :build
|
|
depends_on "ghc" => :build
|
|
depends_on "pkg-config" => :build
|
|
depends_on "gsasl"
|
|
depends_on "libmagic"
|
|
depends_on "quvi"
|
|
|
|
def install
|
|
system "cabal", "v2-update"
|
|
system "cabal", "v2-install", *std_cabal_v2_args,
|
|
"--flags=+S3"
|
|
bin.install_symlink "git-annex" => "git-annex-shell"
|
|
end
|
|
|
|
service do
|
|
run [opt_bin/"git-annex", "assistant", "--autostart"]
|
|
end
|
|
|
|
test do
|
|
# make sure git can find git-annex
|
|
ENV.prepend_path "PATH", bin
|
|
# We don't want this here or it gets "caught" by git-annex.
|
|
rm_r "Library/Python/2.7/lib/python/site-packages/homebrew.pth"
|
|
|
|
system "git", "init"
|
|
system "git", "annex", "init"
|
|
(testpath/"Hello.txt").write "Hello!"
|
|
assert !File.symlink?("Hello.txt")
|
|
assert_match(/^add Hello.txt.*ok.*\(recording state in git\.\.\.\)/m, shell_output("git annex add ."))
|
|
system "git", "commit", "-a", "-m", "Initial Commit"
|
|
assert File.symlink?("Hello.txt")
|
|
|
|
# make sure the various remotes were built
|
|
assert_match shell_output("git annex version | grep 'remote types:'").chomp,
|
|
"remote types: git gcrypt p2p S3 bup directory rsync web bittorrent " \
|
|
"webdav adb tahoe glacier ddar git-lfs httpalso borg hook external"
|
|
|
|
# The steps below are necessary to ensure the directory cleanly deletes.
|
|
# git-annex guards files in a way that isn't entirely friendly of automatically
|
|
# wiping temporary directories in the way `brew test` does at end of execution.
|
|
system "git", "rm", "Hello.txt", "-f"
|
|
system "git", "commit", "-a", "-m", "Farewell!"
|
|
system "git", "annex", "unused"
|
|
assert_match "dropunused 1 ok", shell_output("git annex dropunused 1 --force")
|
|
system "git", "annex", "uninit"
|
|
end
|
|
end
|