require "language/haskell" class GitAnnex < Formula include Language::Haskell::Cabal desc "Manage files with git without checking in file contents" homepage "https://git-annex.branchable.com/" url "https://hackage.haskell.org/package/git-annex-7.20191024/git-annex-7.20191024.tar.gz" sha256 "c11fa101bfe979477c5df2ac18b87a5f01e572007b7251abce2f8778f8e6c086" head "git://git-annex.branchable.com/" bottle do cellar :any sha256 "0cd8c9b11edc1971ceff575568af9103785e9ae8566905d50415f43346353898" => :catalina sha256 "133eb3499941a1f2554a7d0ccfb24dd599cb274bd3ea467f4fabf426d3675987" => :mojave sha256 "b9c6788c954e7a10cb1e2166dbdda05c6d78ce3cc629c976d602686c3d2033fb" => :high_sierra end depends_on "cabal-install" => :build depends_on "ghc@8.6" => :build depends_on "pkg-config" => :build depends_on "gsasl" depends_on "libmagic" depends_on "quvi" depends_on "xdot" def install # Reported 28 Feb 2018 to aws upstream https://github.com/aristidb/aws/issues/244 # This is already resolved in aws 0.20 but we can't move to 0.20 until # esqueleto 2.6.0 ships. See https://github.com/bitemyapp/esqueleto/issues/88 # The network 2.7.0.1 issue has been fixed upstream but needs a new release. install_cabal_package "--constraint", "http-conduit>=2.3", "--constraint", "network>=2.6.3.0", :using => ["alex", "happy", "c2hs"], :flags => ["s3", "webapp"] 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") # 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