Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

apko 0.19.1 #191287

Merged
merged 2 commits into from
Sep 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 14 additions & 10 deletions Formula/a/apko.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
class Apko < Formula
desc "Build OCI images from APK packages directly without Dockerfile"
homepage "https://github.com/chainguard-dev/apko"
url "https://github.com/chainguard-dev/apko/archive/refs/tags/v0.14.7.tar.gz"
sha256 "2615f3844cb180db4a346f526dbb2385ef2eae3c2b74b49e40fb71d2b11d0496"
url "https://github.com/chainguard-dev/apko/archive/refs/tags/v0.19.1.tar.gz"
sha256 "cee42a07681c743ef19418e39e785b53a2b15410629441d8bc6bb949e18b012a"
license "Apache-2.0"
head "https://github.com/chainguard-dev/apko.git", branch: "main"

Expand All @@ -15,14 +15,12 @@ class Apko < Formula
end

bottle do
sha256 cellar: :any_skip_relocation, arm64_sequoia: "a3c0965aad61ac244f3ce8fdea3260e52ad06c5c1f7f0fbe18639cf5eca0ea80"
sha256 cellar: :any_skip_relocation, arm64_sonoma: "ec0b33258fcd6ea9901c25932f9fe09bbe2824a1258e77b056f0c788fd7ab053"
sha256 cellar: :any_skip_relocation, arm64_ventura: "37a686d92b833950fa9ed0b5bbb8e03373ff305af777b2093907c1759b44bdda"
sha256 cellar: :any_skip_relocation, arm64_monterey: "13304d996f28b84c59e1bb7f4e5d5ea8ae61bd82eeff9d7d00417e3eff93054f"
sha256 cellar: :any_skip_relocation, sonoma: "5342935d4d21e32ab37b42fb4d7645470c95da0bb91aa75e2399c737e5ee6ce5"
sha256 cellar: :any_skip_relocation, ventura: "b6982d848138bb78540c9cd97e238ac3cb595c7a54a9d1fe1d162496f5f6284c"
sha256 cellar: :any_skip_relocation, monterey: "58b192edf4e1b25c6a3929c2d347bc5be3a616b6a48750b1d6d21a11b174462d"
sha256 cellar: :any_skip_relocation, x86_64_linux: "460bbe36f0949a9b56fc43611eac90d8ef26b88a660255078e52bb6c727ffaec"
sha256 cellar: :any_skip_relocation, arm64_sequoia: "66929382d06b7c4b2b31b169887772f65aadfc5492b911735bfe61465257877f"
sha256 cellar: :any_skip_relocation, arm64_sonoma: "66929382d06b7c4b2b31b169887772f65aadfc5492b911735bfe61465257877f"
sha256 cellar: :any_skip_relocation, arm64_ventura: "66929382d06b7c4b2b31b169887772f65aadfc5492b911735bfe61465257877f"
sha256 cellar: :any_skip_relocation, sonoma: "0204b14b03355bb65c193e217aa26b5673d208bcd721957fe56f942c0086759a"
sha256 cellar: :any_skip_relocation, ventura: "0204b14b03355bb65c193e217aa26b5673d208bcd721957fe56f942c0086759a"
sha256 cellar: :any_skip_relocation, x86_64_linux: "713f08cd8eb3b2a5fbf55c8132081e77afe0c9b6855f6b665344a25e80e29253"
end

depends_on "go" => :build
Expand Down Expand Up @@ -54,6 +52,12 @@ def install
# optional environment configuration
environment:
PATH: /usr/sbin:/sbin:/usr/bin:/bin

# no keys found for arch loongarch64 and releases [edge],
# so constraint the archs to x86_64 and aarch64
archs:
- x86_64
- aarch64
EOS
system bin/"apko", "build", testpath/"test.yml", "apko-alpine:test", "apko-alpine.tar"
assert_predicate testpath/"apko-alpine.tar", :exist?
Expand Down
Loading