class Skopeo < Formula desc "Work with remote images registries" homepage "https://github.com/containers/skopeo" url "https://github.com/containers/skopeo/archive/v0.1.40.tar.gz" sha256 "ee1e33245938fcb622f5864fac860e2d8bfa2fa907af4b5ffc3704ed0db46bbf" revision 1 bottle do cellar :any sha256 "6d6e5ef0e8de608b30b3c455aae169ff63139d3442c20ea6fb966b602c7892c7" => :catalina sha256 "24136b664d634af98856d4d57ba8000410f056555ded3f7ac805bb9928a4cf56" => :mojave sha256 "962f951f12aee1b7130ad47bd6fc9955e3735b09043a50f44460d69676ba63a0" => :high_sierra end depends_on "go" => :build depends_on "gpgme" def install ENV["GOPATH"] = buildpath ENV["CGO_ENABLED"] = "1" ENV.append "CGO_FLAGS", ENV.cppflags ENV.append "CGO_FLAGS", Utils.popen_read("#{Formula["gpgme"].bin}/gpgme-config --cflags") (buildpath/"src/github.com/containers/skopeo").install buildpath.children cd buildpath/"src/github.com/containers/skopeo" do buildtags = [ "containers_image_ostree_stub", Utils.popen_read("hack/btrfs_tag.sh").chomp, Utils.popen_read("hack/btrfs_installed_tag.sh").chomp, Utils.popen_read("hack/libdm_tag.sh").chomp, Utils.popen_read("hack/ostree_tag.sh").chomp, ].uniq.join(" ") ldflags = [ "-X main.gitCommit=", "-X github.com/containers/image/docker.systemRegistriesDirPath=#{etc/"containers/registries.d"}", "-X github.com/containers/image/internal/tmpdir.unixTempDirForBigFiles=#{ENV["TEMPDIR"]}", "-X github.com/containers/image/signature.systemDefaultPolicyPath=#{etc/"containers/policy.json"}", "-X github.com/containers/image/pkg/sysregistriesv2.systemRegistriesConfPath=#{etc/"containers/registries.conf"}", ].join(" ") system "go", "build", "-v", "-x", "-tags", buildtags, "-ldflags", ldflags, "-o", bin/"skopeo", "./cmd/skopeo" (etc/"containers").install "default-policy.json" => "policy.json" (etc/"containers/registries.d").install "default.yaml" prefix.install_metafiles end end test do cmd = "#{bin}/skopeo --override-os linux inspect docker://busybox" output = shell_output(cmd) assert_match "docker.io/library/busybox", output end end