class GitSeries < Formula desc "Track changes to a patch series over time" homepage "https://github.com/git-series/git-series" url "https://github.com/git-series/git-series/archive/0.9.1.tar.gz" sha256 "c0362e19d3fa168a7cb0e260fcdecfe070853b163c9f2dfd2ad8213289bc7e5f" license "MIT" revision 3 bottle do cellar :any sha256 "2193cb415148a398304ae5cde86bd8f672c62fef1028ad78057d66fa3ca0fd36" => :big_sur sha256 "e273c21ef68060e010e42bc805bf1a2e5baf9a8e7ecec6338490175857713168" => :catalina sha256 "31c32b8df3a5a2c70c54786a0c222ce4fdeccace4cb3a5bf50f3a27d9f46167d" => :mojave end depends_on "cmake" => :build depends_on "rust" => :build depends_on "libgit2" depends_on "libssh2" depends_on "openssl@1.1" def install # Ensure that the `openssl` crate picks up the intended library. # https://crates.io/crates/openssl#manual-configuration ENV["OPENSSL_DIR"] = Formula["openssl@1.1"].opt_prefix ENV["LIBGIT2_SYS_USE_PKG_CONFIG"] = "1" ENV["LIBSSH2_SYS_USE_PKG_CONFIG"] = "1" system "cargo", "install", "--root", prefix, "--path", "." man1.install "git-series.1" end test do (testpath/".gitconfig").write <<~EOS [user] name = Real Person email = notacat@hotmail.cat EOS system "git", "init" (testpath/"test").write "foo" system "git", "add", "test" system "git", "commit", "-m", "Initial commit" (testpath/"test").append_lines "bar" system "git", "commit", "-m", "Second commit", "test" system bin/"git-series", "start", "feature" system "git", "checkout", "HEAD~1" system bin/"git-series", "base", "HEAD" system bin/"git-series", "commit", "-a", "-m", "new feature v1" end end