-
Notifications
You must be signed in to change notification settings - Fork 278
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feature/rekor
Signed-off-by: Jason Hall <jason@chainguard.dev>
- Loading branch information
Showing
121 changed files
with
1,549 additions
and
389 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
package: | ||
name: ctop | ||
version: 0.7.7 | ||
epoch: 0 | ||
description: Top-like interface for container metrics | ||
target-architecture: | ||
- all | ||
copyright: | ||
- paths: | ||
- "*" | ||
attestation: TODO | ||
license: MIT | ||
environment: | ||
contents: | ||
packages: | ||
- busybox | ||
- ca-certificates-bundle | ||
- build-base | ||
- automake | ||
- go | ||
- git | ||
pipeline: | ||
- uses: fetch | ||
with: | ||
expected-sha512: 9924c4dc5da489f90b029bc8060e759edf02a170e17bbc9f9c29b6536e5bc3e5eec69af829c7662a1f69cd331fc24022cae8b30e865a07742fd7e3623bc7f33f | ||
uri: https://github.com/bcicen/ctop/archive/refs/tags/v${{package.version}}.tar.gz | ||
- runs: | | ||
make build | ||
install -Dm755 ctop "${{targets.destdir}}"/usr/bin/ctop |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
package: | ||
name: dhcping | ||
version: 1.2 | ||
epoch: 0 | ||
description: dhcp daemon ping program | ||
target-architecture: | ||
- all | ||
copyright: | ||
- paths: | ||
- "*" | ||
attestation: TODO | ||
license: BSD-2-Clause | ||
environment: | ||
contents: | ||
packages: | ||
- busybox | ||
- ca-certificates-bundle | ||
- build-base | ||
- automake | ||
- autoconf | ||
pipeline: | ||
- uses: fetch | ||
with: | ||
expected-sha256: 32ef86959b0bdce4b33d4b2b216eee7148f7de7037ced81b2116210bc7d3646a | ||
uri: http://www.mavetju.org/download/dhcping-${{package.version}}.tar.gz | ||
- uses: patch | ||
with: | ||
patches: fix-endless-getopt-loop.patch | ||
- uses: autoconf/configure | ||
with: | ||
opts: | | ||
--host=${{host.triplet.gnu}} \ | ||
--build=${{host.triplet.gnu}} | ||
- uses: autoconf/make | ||
- uses: autoconf/make-install | ||
- uses: strip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
From 27e74baf97c4669e14b8c690044ab979dc34b2ef Mon Sep 17 00:00:00 2001 | ||
From: Petr Fedchenkov <giggsoff@gmail.com> | ||
Date: Tue, 28 Jun 2022 10:54:24 +0300 | ||
Subject: [PATCH] Fix type to not hit endless getopt loop | ||
|
||
Signed-off-by: Petr Fedchenkov <giggsoff@gmail.com> | ||
--- | ||
dhcping.c | 2 +- | ||
1 file changed, 1 insertion(+), 1 deletion(-) | ||
|
||
diff --git a/dhcping.c b/dhcping.c | ||
index 7eb5ae6..cdce51c 100644 | ||
--- a/dhcping.c | ||
+++ b/dhcping.c | ||
@@ -70,7 +70,7 @@ unsigned char serveridentifier[4]; | ||
int maxwait=3; | ||
|
||
void doargs(int argc,char **argv) { | ||
- char ch; | ||
+ int ch; | ||
|
||
inform=request=verbose=VERBOSE=quiet=0; | ||
ci=gi=server="0.0.0.0"; | ||
-- | ||
2.34.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.