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-8.20210223/git-annex-8.20210223.tar.gz" sha256 "62a09f98c96dd2a66605aaf6b7f00573a33997f3ef568ffb0d2dc17609719d1f" 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/" bottle do sha256 cellar: :any, big_sur: "213349caefa7c1093e6b69ca5d959a7d1c6f0d1bda959178ca5b86c29fe7badf" sha256 cellar: :any, catalina: "db295e4116fdb99672266988fa16f1ac3e443fd7cff2c08cf02b336a04afab8c" sha256 cellar: :any, mojave: "1e9d3ec0891268697b2c913a80435c9160e93ab9e82f8e139c8287e738851db8" 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 plist_options manual: "git annex assistant --autostart" def plist <<~EOS Label #{plist_name} RunAtLoad KeepAlive ProgramArguments #{opt_bin}/git-annex assistant --autostart EOS 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