diff --git a/digests.txt b/digests.txt index 9bf3193..c151666 100644 --- a/digests.txt +++ b/digests.txt @@ -52,12 +52,13 @@ f745fee8efc807a1493d2c9bd617b1345f10a4dab02cc528fe930647846682ea iputils 0297a099ae95eed13d48bce2d4d624544857680095b6201e9919e1d5da45a6cd jq 63db8d16b2549bb68498ab60f700bc12d9fec725db38440678aefc4f83353537 json-c 2b7016af8f507d31d222b30e8c42e26bec7178963edf4a029ea50563b87914f6 k9s -1ace822e40987f94a442c76505fbbe7446da5481e57c7e57d5b51d5b8362d65a keyfork +bd6167d2a4a6c3b1c3f9c0accbb1fe0d5854f64997bd1d9d8d822cdf628f8baf keyfork facd6c6d1eacf6a0d180f9b231fc45527ecd1693db97cecff282e1b5cbe989d5 ksops-dry-run 70fa7f6e5918ddb66732d4ef42e979dd6db38ad92875f5ad8ff1a6d04450fa3d kubeconform f647075cb0330b8cfc3d35ac097d9155e130ea5d1dd16c99e927c7a3b4da47ed kubectl a99a74f2e37770ea3cb6fe8a4ebe8e731800ab3ea1ed3813b9f374592adf85f2 kustomize 57655bd5bed28075a8ab96e1e50d9a6f88a0321893dcda0f53b4b483a5188f7a kustomize-sops +742ac429b484bf2b441f9ad72d1c67b44795343c0b5ab646ca5a4bcb8a27f592 libarchive 1267bb842bcb6e8bff56e2b72599357605a5e141f76629f7e96187ae85a07197 libassuan bc8dc2d91963008d3bdb462251269bce239a17b8966818023ec950301f8d744a libcap 23c734a9376d588c2ac112c61d84309c511281fbc62e0fcdbb04e97ef4d2f99d libffi @@ -94,6 +95,7 @@ a7078cbde902f0c891910a54bee2b4f073d456f1e10f8a051000d05b616eb7b2 nettle 7899c399f2924c5ba0dfbce9ce6f8391e27ecd0564f0341fb85f83ba293e1ebe npth 088dbc336e34f16f7a8e323f114918468a7e4b13b190c43593ca7b0dffea54b4 openpgp-card-tools 8da704d0078d445d3af0338764b9f3a87ba4841744c396c8eddef15466366553 opensc +79e8a8b5994cec32e486ffb59c76ae3f6b3081ac9c578da4bf633383e6b45e66 openssh 9bd55ed05263a538e6a23c0262edc356c998a24674f3b8ad008a4b117a4cdf3b openssl fd9b0600f7f73f87d9d678b8b8a7119e0f9b9314c9959bd0d180c31736cb97d6 pcsc-lite d83997bda2b9500c8a4567df827a90d65efa842f9a2bb361b6f394589cf167d5 pcsc-tools diff --git a/packages/keyfork/Containerfile b/packages/keyfork/Containerfile index 4df3d62..6cb9961 100644 --- a/packages/keyfork/Containerfile +++ b/packages/keyfork/Containerfile @@ -1,6 +1,6 @@ FROM scratch AS base -ENV VERSION=0.2.2 -ENV SRC_HASH=4a70a6ae1c2fcb6448552950ab67536b9d1abcb5d6e41dedd28db24e3979271f +ENV VERSION=0.2.3 +ENV SRC_HASH=0beafb5ee6c7cab77295c40b25f58d709187ef11d849e0646281b57d2a6b5523 ENV SRC_FILE=keyfork-v${VERSION}.tar.gz ENV SRC_SITE=https://git.distrust.co/public/keyfork/archive/${SRC_FILE} diff --git a/packages/libarchive/Containerfile b/packages/libarchive/Containerfile new file mode 100644 index 0000000..8785bfd --- /dev/null +++ b/packages/libarchive/Containerfile @@ -0,0 +1,33 @@ +FROM scratch as base +ARG ARCH=x86_64 +ENV VERSION=3.7.4 +ENV SRC_HASH=f887755c434a736a609cbd28d87ddbfbe9d6a3bb5b703c22c02f6af80a802735 +ENV SRC_FILE=libarchive-${VERSION}.tar.xz +ENV SRC_SITE=https://libarchive.org/downloads/${SRC_FILE} + +FROM base as fetch +ADD --checksum=sha256:${SRC_HASH} ${SRC_SITE} . + +FROM fetch as build +COPY --from=stagex/busybox . / +COPY --from=stagex/binutils . / +COPY --from=stagex/musl . / +COPY --from=stagex/make . / +COPY --from=stagex/gcc . / +RUN tar -xf ${SRC_FILE} +WORKDIR libarchive-${VERSION} +RUN --network=none <<-EOF + set -ex + ./configure \ + --build=${ARCH}-linux-musl \ + --host=${ARCH}-linux-musl \ + --prefix=/usr \ + --without-xml2 + make -j "$(nproc)" +EOF + +FROM build as install +RUN --network=none make DESTDIR="/rootfs" install + +FROM stagex/filesystem as package +COPY --from=install /rootfs/. / diff --git a/packages/openssh/Containerfile b/packages/openssh/Containerfile new file mode 100644 index 0000000..0de282c --- /dev/null +++ b/packages/openssh/Containerfile @@ -0,0 +1,64 @@ +FROM scratch as base +ENV VERSION=9.8p1 +ENV SRC_HASH=dd8bd002a379b5d499dfb050dd1fa9af8029e80461f4bb6c523c49973f5a39f3 +ENV SRC_FILE=openssh-${VERSION}.tar.gz +ENV SRC_SITE=https://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/${SRC_FILE} + +FROM base as fetch +ADD --checksum=sha256:${SRC_HASH} ${SRC_SITE} . + +FROM fetch as build +COPY --from=stagex/busybox . / +COPY --from=stagex/gcc . / +COPY --from=stagex/binutils . / +COPY --from=stagex/make . / +COPY --from=stagex/bison . / +COPY --from=stagex/libtool . / +COPY --from=stagex/zlib . / +COPY --from=stagex/libzstd . / +COPY --from=stagex/flex . / +COPY --from=stagex/openssl . / +COPY --from=stagex/perl . / +COPY --from=stagex/autoconf . / +COPY --from=stagex/automake . / +COPY --from=stagex/pkgconf . / +COPY --from=stagex/gettext . / +COPY --from=stagex/m4 . / +COPY --from=stagex/argp-standalone . / +COPY --from=stagex/musl . / +COPY --from=stagex/musl-fts . / +COPY --from=stagex/musl-obstack . / +COPY --from=stagex/linux-headers . / +RUN tar -xf ${SRC_FILE} +WORKDIR openssh-${VERSION} +ADD *.patch . +RUN --network=none <<-EOF + set -eux + autoreconf -vif + ./configure \ + --build="x86_64-linux-musl" \ + --host="x86_64-linux-musl" \ + --prefix=/usr \ + --sysconfdir=/etc/ssh \ + --libexecdir=/usr/lib/ssh \ + --mandir=/usr/share/man \ + --with-cflags="$(pkg-config --cflags --static utmps)" \ + --with-libs="$(pkg-config --libs --static utmps)" \ + --with-privsep-path=/var/empty \ + --with-pid-dir=/run \ + --with-mantype=doc \ + --with-xauth=/usr/bin/xauth \ + --with-default-path='/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin' \ + --disable-utmp \ + --disable-wtmp \ + --disable-lastlog \ + --disable-strip \ + --with-ssl-engine + make -j "$(nproc)" +EOF + +FROM build as install +RUN --network=none make DESTDIR=/rootfs install + +FROM stagex/filesystem as package +COPY --from=install /rootfs/. / diff --git a/signatures/stagex/ccid@sha256=0f50ff4441d8b20ff73babab652fc0a563bce46385100240de4ae587012c9505/signature-2 b/signatures/stagex/ccid@sha256=0f50ff4441d8b20ff73babab652fc0a563bce46385100240de4ae587012c9505/signature-2 new file mode 100644 index 0000000..87169c2 Binary files /dev/null and b/signatures/stagex/ccid@sha256=0f50ff4441d8b20ff73babab652fc0a563bce46385100240de4ae587012c9505/signature-2 differ diff --git a/signatures/stagex/ccid@sha256=0f50ff4441d8b20ff73babab652fc0a563bce46385100240de4ae587012c9505/signature-3 b/signatures/stagex/ccid@sha256=0f50ff4441d8b20ff73babab652fc0a563bce46385100240de4ae587012c9505/signature-3 new file mode 100644 index 0000000..7982a24 Binary files /dev/null and b/signatures/stagex/ccid@sha256=0f50ff4441d8b20ff73babab652fc0a563bce46385100240de4ae587012c9505/signature-3 differ diff --git a/signatures/stagex/curl@sha256=0b72be087ffc4767c9fb58f3bf55ed99cbd48217871e23d8bdc31b6afb1e0253/signature-2 b/signatures/stagex/curl@sha256=0b72be087ffc4767c9fb58f3bf55ed99cbd48217871e23d8bdc31b6afb1e0253/signature-2 new file mode 100644 index 0000000..dad388a Binary files /dev/null and b/signatures/stagex/curl@sha256=0b72be087ffc4767c9fb58f3bf55ed99cbd48217871e23d8bdc31b6afb1e0253/signature-2 differ diff --git a/signatures/stagex/curl@sha256=0b72be087ffc4767c9fb58f3bf55ed99cbd48217871e23d8bdc31b6afb1e0253/signature-3 b/signatures/stagex/curl@sha256=0b72be087ffc4767c9fb58f3bf55ed99cbd48217871e23d8bdc31b6afb1e0253/signature-3 new file mode 100644 index 0000000..cd309c9 Binary files /dev/null and b/signatures/stagex/curl@sha256=0b72be087ffc4767c9fb58f3bf55ed99cbd48217871e23d8bdc31b6afb1e0253/signature-3 differ diff --git a/signatures/stagex/docbook-xml@sha256=ac56e8eaafde2485a6e60d3b46511701506de859fecf53d0b99be75c9fb63b6e/signature-2 b/signatures/stagex/docbook-xml@sha256=ac56e8eaafde2485a6e60d3b46511701506de859fecf53d0b99be75c9fb63b6e/signature-2 new file mode 100644 index 0000000..c5e4604 Binary files /dev/null and b/signatures/stagex/docbook-xml@sha256=ac56e8eaafde2485a6e60d3b46511701506de859fecf53d0b99be75c9fb63b6e/signature-2 differ diff --git a/signatures/stagex/docbook-xml@sha256=ac56e8eaafde2485a6e60d3b46511701506de859fecf53d0b99be75c9fb63b6e/signature-3 b/signatures/stagex/docbook-xml@sha256=ac56e8eaafde2485a6e60d3b46511701506de859fecf53d0b99be75c9fb63b6e/signature-3 new file mode 100644 index 0000000..c952a90 Binary files /dev/null and b/signatures/stagex/docbook-xml@sha256=ac56e8eaafde2485a6e60d3b46511701506de859fecf53d0b99be75c9fb63b6e/signature-3 differ diff --git a/signatures/stagex/docbook-xsl@sha256=76a6fd516da4306eaf24637934432bdae195c867125f55c8d70d7d177b64b590/signature-2 b/signatures/stagex/docbook-xsl@sha256=76a6fd516da4306eaf24637934432bdae195c867125f55c8d70d7d177b64b590/signature-2 new file mode 100644 index 0000000..c9d5115 Binary files /dev/null and b/signatures/stagex/docbook-xsl@sha256=76a6fd516da4306eaf24637934432bdae195c867125f55c8d70d7d177b64b590/signature-2 differ diff --git a/signatures/stagex/docbook-xsl@sha256=76a6fd516da4306eaf24637934432bdae195c867125f55c8d70d7d177b64b590/signature-3 b/signatures/stagex/docbook-xsl@sha256=76a6fd516da4306eaf24637934432bdae195c867125f55c8d70d7d177b64b590/signature-3 new file mode 100644 index 0000000..784d7f0 Binary files /dev/null and b/signatures/stagex/docbook-xsl@sha256=76a6fd516da4306eaf24637934432bdae195c867125f55c8d70d7d177b64b590/signature-3 differ diff --git a/signatures/stagex/flashtools@sha256=e2ac807475e66201ad50eee09bf9625ad0e97dc136818ff11775cb13a54d764b/signature-2 b/signatures/stagex/flashtools@sha256=e2ac807475e66201ad50eee09bf9625ad0e97dc136818ff11775cb13a54d764b/signature-2 new file mode 100644 index 0000000..eced16f Binary files /dev/null and b/signatures/stagex/flashtools@sha256=e2ac807475e66201ad50eee09bf9625ad0e97dc136818ff11775cb13a54d764b/signature-2 differ diff --git a/signatures/stagex/flashtools@sha256=e2ac807475e66201ad50eee09bf9625ad0e97dc136818ff11775cb13a54d764b/signature-3 b/signatures/stagex/flashtools@sha256=e2ac807475e66201ad50eee09bf9625ad0e97dc136818ff11775cb13a54d764b/signature-3 new file mode 100644 index 0000000..06c8a54 Binary files /dev/null and b/signatures/stagex/flashtools@sha256=e2ac807475e66201ad50eee09bf9625ad0e97dc136818ff11775cb13a54d764b/signature-3 differ diff --git a/signatures/stagex/git@sha256=d177bde1f1ca0f20f74502af4da17b89628683f21116573ada69f38b46d367a6/signature-2 b/signatures/stagex/git@sha256=d177bde1f1ca0f20f74502af4da17b89628683f21116573ada69f38b46d367a6/signature-2 new file mode 100644 index 0000000..4f77e04 Binary files /dev/null and b/signatures/stagex/git@sha256=d177bde1f1ca0f20f74502af4da17b89628683f21116573ada69f38b46d367a6/signature-2 differ diff --git a/signatures/stagex/git@sha256=d177bde1f1ca0f20f74502af4da17b89628683f21116573ada69f38b46d367a6/signature-3 b/signatures/stagex/git@sha256=d177bde1f1ca0f20f74502af4da17b89628683f21116573ada69f38b46d367a6/signature-3 new file mode 100644 index 0000000..3d1260a --- /dev/null +++ b/signatures/stagex/git@sha256=d177bde1f1ca0f20f74502af4da17b89628683f21116573ada69f38b46d367a6/signature-3 @@ -0,0 +1,5 @@ + R"ҶVJ.,LNQVLI+,SStRRRSKS+3Kju2s<$yi%)@ +><)%009 (1$%<881%2",< dKIe̼" +řy%E u%y ov200r1Ȋ)t4YYU[L 3pq +D0t5IsѩKX_wBq.תNo:"wz̻6x&yr-TLXtȝl5S̳M(÷7]tր5gYz.fXem,r̋c/oy7 B.hfZ8!EIxz}E%հbEAv}Bs\R]4B9<[./h18%'$ӊOl/κܪqwDӷ[gg4W:?~s sy,RvQSX%Ui-.2~Fti%U=GO=~#g5DQw{.?>h/xf䅙E /cP^_K;{Dn:ʹR_[2qB+WUSg_},L~sݽ5U7o3 YC]%. +uY*)hX<"tze'5*J \ No newline at end of file diff --git a/signatures/stagex/go-md2man@sha256=693b5f99ed745bfadac5d89ad45f3e26400059b68430db23c4895e38bb0c8025/signature-2 b/signatures/stagex/go-md2man@sha256=693b5f99ed745bfadac5d89ad45f3e26400059b68430db23c4895e38bb0c8025/signature-2 new file mode 100644 index 0000000..ac9422c Binary files /dev/null and b/signatures/stagex/go-md2man@sha256=693b5f99ed745bfadac5d89ad45f3e26400059b68430db23c4895e38bb0c8025/signature-2 differ diff --git a/signatures/stagex/go-md2man@sha256=693b5f99ed745bfadac5d89ad45f3e26400059b68430db23c4895e38bb0c8025/signature-3 b/signatures/stagex/go-md2man@sha256=693b5f99ed745bfadac5d89ad45f3e26400059b68430db23c4895e38bb0c8025/signature-3 new file mode 100644 index 0000000..1d16f55 Binary files /dev/null and b/signatures/stagex/go-md2man@sha256=693b5f99ed745bfadac5d89ad45f3e26400059b68430db23c4895e38bb0c8025/signature-3 differ diff --git a/signatures/stagex/grub@sha256=5f382615881470e0cf9c670bead785507545a2b829b391247313f516c63355e3/signature-2 b/signatures/stagex/grub@sha256=5f382615881470e0cf9c670bead785507545a2b829b391247313f516c63355e3/signature-2 new file mode 100644 index 0000000..dba2ffc Binary files /dev/null and b/signatures/stagex/grub@sha256=5f382615881470e0cf9c670bead785507545a2b829b391247313f516c63355e3/signature-2 differ diff --git a/signatures/stagex/grub@sha256=5f382615881470e0cf9c670bead785507545a2b829b391247313f516c63355e3/signature-3 b/signatures/stagex/grub@sha256=5f382615881470e0cf9c670bead785507545a2b829b391247313f516c63355e3/signature-3 new file mode 100644 index 0000000..730e5ee Binary files /dev/null and b/signatures/stagex/grub@sha256=5f382615881470e0cf9c670bead785507545a2b829b391247313f516c63355e3/signature-3 differ diff --git a/signatures/stagex/keyfork@sha256=bd6167d2a4a6c3b1c3f9c0accbb1fe0d5854f64997bd1d9d8d822cdf628f8baf/signature-1 b/signatures/stagex/keyfork@sha256=bd6167d2a4a6c3b1c3f9c0accbb1fe0d5854f64997bd1d9d8d822cdf628f8baf/signature-1 new file mode 100644 index 0000000..514ab10 Binary files /dev/null and b/signatures/stagex/keyfork@sha256=bd6167d2a4a6c3b1c3f9c0accbb1fe0d5854f64997bd1d9d8d822cdf628f8baf/signature-1 differ diff --git a/signatures/stagex/keyfork@sha256=bd6167d2a4a6c3b1c3f9c0accbb1fe0d5854f64997bd1d9d8d822cdf628f8baf/signature-2 b/signatures/stagex/keyfork@sha256=bd6167d2a4a6c3b1c3f9c0accbb1fe0d5854f64997bd1d9d8d822cdf628f8baf/signature-2 new file mode 100644 index 0000000..2ea17b7 Binary files /dev/null and b/signatures/stagex/keyfork@sha256=bd6167d2a4a6c3b1c3f9c0accbb1fe0d5854f64997bd1d9d8d822cdf628f8baf/signature-2 differ diff --git a/signatures/stagex/libarchive@sha256=742ac429b484bf2b441f9ad72d1c67b44795343c0b5ab646ca5a4bcb8a27f592/signature-1 b/signatures/stagex/libarchive@sha256=742ac429b484bf2b441f9ad72d1c67b44795343c0b5ab646ca5a4bcb8a27f592/signature-1 new file mode 100644 index 0000000..56198d9 Binary files /dev/null and b/signatures/stagex/libarchive@sha256=742ac429b484bf2b441f9ad72d1c67b44795343c0b5ab646ca5a4bcb8a27f592/signature-1 differ diff --git a/signatures/stagex/libarchive@sha256=742ac429b484bf2b441f9ad72d1c67b44795343c0b5ab646ca5a4bcb8a27f592/signature-2 b/signatures/stagex/libarchive@sha256=742ac429b484bf2b441f9ad72d1c67b44795343c0b5ab646ca5a4bcb8a27f592/signature-2 new file mode 100644 index 0000000..adf6e4d Binary files /dev/null and b/signatures/stagex/libarchive@sha256=742ac429b484bf2b441f9ad72d1c67b44795343c0b5ab646ca5a4bcb8a27f592/signature-2 differ diff --git a/signatures/stagex/libusb@sha256=c67807377fb18d2a874d975b43e37056eb4067a5be74ebf8c1f5e5ec65ae5650/signature-2 b/signatures/stagex/libusb@sha256=c67807377fb18d2a874d975b43e37056eb4067a5be74ebf8c1f5e5ec65ae5650/signature-2 new file mode 100644 index 0000000..43b68eb Binary files /dev/null and b/signatures/stagex/libusb@sha256=c67807377fb18d2a874d975b43e37056eb4067a5be74ebf8c1f5e5ec65ae5650/signature-2 differ diff --git a/signatures/stagex/libusb@sha256=c67807377fb18d2a874d975b43e37056eb4067a5be74ebf8c1f5e5ec65ae5650/signature-3 b/signatures/stagex/libusb@sha256=c67807377fb18d2a874d975b43e37056eb4067a5be74ebf8c1f5e5ec65ae5650/signature-3 new file mode 100644 index 0000000..663484d Binary files /dev/null and b/signatures/stagex/libusb@sha256=c67807377fb18d2a874d975b43e37056eb4067a5be74ebf8c1f5e5ec65ae5650/signature-3 differ diff --git a/signatures/stagex/linux-airgap@sha256=a4fac3ca7795e171a4d1b3b634fdae1790d4f8d076f3c1ac8a38f3ece72e1ec5/signature-2 b/signatures/stagex/linux-airgap@sha256=a4fac3ca7795e171a4d1b3b634fdae1790d4f8d076f3c1ac8a38f3ece72e1ec5/signature-2 new file mode 100644 index 0000000..100f89e Binary files /dev/null and b/signatures/stagex/linux-airgap@sha256=a4fac3ca7795e171a4d1b3b634fdae1790d4f8d076f3c1ac8a38f3ece72e1ec5/signature-2 differ diff --git a/signatures/stagex/linux-airgap@sha256=a4fac3ca7795e171a4d1b3b634fdae1790d4f8d076f3c1ac8a38f3ece72e1ec5/signature-3 b/signatures/stagex/linux-airgap@sha256=a4fac3ca7795e171a4d1b3b634fdae1790d4f8d076f3c1ac8a38f3ece72e1ec5/signature-3 new file mode 100644 index 0000000..c8fe725 Binary files /dev/null and b/signatures/stagex/linux-airgap@sha256=a4fac3ca7795e171a4d1b3b634fdae1790d4f8d076f3c1ac8a38f3ece72e1ec5/signature-3 differ diff --git a/signatures/stagex/mockgen@sha256=4625fbe2fda77b9e5037d08e4b8c65c1232427ade3ee4e0728ac73a0b26472a8/signature-2 b/signatures/stagex/mockgen@sha256=4625fbe2fda77b9e5037d08e4b8c65c1232427ade3ee4e0728ac73a0b26472a8/signature-2 new file mode 100644 index 0000000..c975b86 Binary files /dev/null and b/signatures/stagex/mockgen@sha256=4625fbe2fda77b9e5037d08e4b8c65c1232427ade3ee4e0728ac73a0b26472a8/signature-2 differ diff --git a/signatures/stagex/mockgen@sha256=4625fbe2fda77b9e5037d08e4b8c65c1232427ade3ee4e0728ac73a0b26472a8/signature-3 b/signatures/stagex/mockgen@sha256=4625fbe2fda77b9e5037d08e4b8c65c1232427ade3ee4e0728ac73a0b26472a8/signature-3 new file mode 100644 index 0000000..8d9ce1e Binary files /dev/null and b/signatures/stagex/mockgen@sha256=4625fbe2fda77b9e5037d08e4b8c65c1232427ade3ee4e0728ac73a0b26472a8/signature-3 differ diff --git a/signatures/stagex/opensc@sha256=8da704d0078d445d3af0338764b9f3a87ba4841744c396c8eddef15466366553/signature-2 b/signatures/stagex/opensc@sha256=8da704d0078d445d3af0338764b9f3a87ba4841744c396c8eddef15466366553/signature-2 new file mode 100644 index 0000000..63533fa Binary files /dev/null and b/signatures/stagex/opensc@sha256=8da704d0078d445d3af0338764b9f3a87ba4841744c396c8eddef15466366553/signature-2 differ diff --git a/signatures/stagex/opensc@sha256=8da704d0078d445d3af0338764b9f3a87ba4841744c396c8eddef15466366553/signature-3 b/signatures/stagex/opensc@sha256=8da704d0078d445d3af0338764b9f3a87ba4841744c396c8eddef15466366553/signature-3 new file mode 100644 index 0000000..795dbef Binary files /dev/null and b/signatures/stagex/opensc@sha256=8da704d0078d445d3af0338764b9f3a87ba4841744c396c8eddef15466366553/signature-3 differ diff --git a/signatures/stagex/openssh@sha256=79e8a8b5994cec32e486ffb59c76ae3f6b3081ac9c578da4bf633383e6b45e66/signature-1 b/signatures/stagex/openssh@sha256=79e8a8b5994cec32e486ffb59c76ae3f6b3081ac9c578da4bf633383e6b45e66/signature-1 new file mode 100644 index 0000000..e812cb6 Binary files /dev/null and b/signatures/stagex/openssh@sha256=79e8a8b5994cec32e486ffb59c76ae3f6b3081ac9c578da4bf633383e6b45e66/signature-1 differ diff --git a/signatures/stagex/openssh@sha256=79e8a8b5994cec32e486ffb59c76ae3f6b3081ac9c578da4bf633383e6b45e66/signature-2 b/signatures/stagex/openssh@sha256=79e8a8b5994cec32e486ffb59c76ae3f6b3081ac9c578da4bf633383e6b45e66/signature-2 new file mode 100644 index 0000000..72e51e4 Binary files /dev/null and b/signatures/stagex/openssh@sha256=79e8a8b5994cec32e486ffb59c76ae3f6b3081ac9c578da4bf633383e6b45e66/signature-2 differ diff --git a/signatures/stagex/pcsc-lite@sha256=fd9b0600f7f73f87d9d678b8b8a7119e0f9b9314c9959bd0d180c31736cb97d6/signature-2 b/signatures/stagex/pcsc-lite@sha256=fd9b0600f7f73f87d9d678b8b8a7119e0f9b9314c9959bd0d180c31736cb97d6/signature-2 new file mode 100644 index 0000000..6dcb145 Binary files /dev/null and b/signatures/stagex/pcsc-lite@sha256=fd9b0600f7f73f87d9d678b8b8a7119e0f9b9314c9959bd0d180c31736cb97d6/signature-2 differ diff --git a/signatures/stagex/pcsc-lite@sha256=fd9b0600f7f73f87d9d678b8b8a7119e0f9b9314c9959bd0d180c31736cb97d6/signature-3 b/signatures/stagex/pcsc-lite@sha256=fd9b0600f7f73f87d9d678b8b8a7119e0f9b9314c9959bd0d180c31736cb97d6/signature-3 new file mode 100644 index 0000000..26e03f8 Binary files /dev/null and b/signatures/stagex/pcsc-lite@sha256=fd9b0600f7f73f87d9d678b8b8a7119e0f9b9314c9959bd0d180c31736cb97d6/signature-3 differ diff --git a/signatures/stagex/pcsc-tools@sha256=d83997bda2b9500c8a4567df827a90d65efa842f9a2bb361b6f394589cf167d5/signature-2 b/signatures/stagex/pcsc-tools@sha256=d83997bda2b9500c8a4567df827a90d65efa842f9a2bb361b6f394589cf167d5/signature-2 new file mode 100644 index 0000000..ca0fc1c Binary files /dev/null and b/signatures/stagex/pcsc-tools@sha256=d83997bda2b9500c8a4567df827a90d65efa842f9a2bb361b6f394589cf167d5/signature-2 differ diff --git a/signatures/stagex/pcsc-tools@sha256=d83997bda2b9500c8a4567df827a90d65efa842f9a2bb361b6f394589cf167d5/signature-3 b/signatures/stagex/pcsc-tools@sha256=d83997bda2b9500c8a4567df827a90d65efa842f9a2bb361b6f394589cf167d5/signature-3 new file mode 100644 index 0000000..7dc0db8 Binary files /dev/null and b/signatures/stagex/pcsc-tools@sha256=d83997bda2b9500c8a4567df827a90d65efa842f9a2bb361b6f394589cf167d5/signature-3 differ diff --git a/signatures/stagex/perl-module-build@sha256=015ca74b2658e6d181cccaff00dd23c1f90ad1816fcf965324e76fa3454e66e5/signature-2 b/signatures/stagex/perl-module-build@sha256=015ca74b2658e6d181cccaff00dd23c1f90ad1816fcf965324e76fa3454e66e5/signature-2 new file mode 100644 index 0000000..2b60e3c Binary files /dev/null and b/signatures/stagex/perl-module-build@sha256=015ca74b2658e6d181cccaff00dd23c1f90ad1816fcf965324e76fa3454e66e5/signature-2 differ diff --git a/signatures/stagex/perl-module-build@sha256=015ca74b2658e6d181cccaff00dd23c1f90ad1816fcf965324e76fa3454e66e5/signature-3 b/signatures/stagex/perl-module-build@sha256=015ca74b2658e6d181cccaff00dd23c1f90ad1816fcf965324e76fa3454e66e5/signature-3 new file mode 100644 index 0000000..b23fe08 Binary files /dev/null and b/signatures/stagex/perl-module-build@sha256=015ca74b2658e6d181cccaff00dd23c1f90ad1816fcf965324e76fa3454e66e5/signature-3 differ diff --git a/signatures/stagex/perl-pod-parser@sha256=839acbbd364e05dac68f877ce1777bb42b8ec3bc82c84986eb7805b1c928f341/signature-2 b/signatures/stagex/perl-pod-parser@sha256=839acbbd364e05dac68f877ce1777bb42b8ec3bc82c84986eb7805b1c928f341/signature-2 new file mode 100644 index 0000000..ada2250 Binary files /dev/null and b/signatures/stagex/perl-pod-parser@sha256=839acbbd364e05dac68f877ce1777bb42b8ec3bc82c84986eb7805b1c928f341/signature-2 differ diff --git a/signatures/stagex/perl-pod-parser@sha256=839acbbd364e05dac68f877ce1777bb42b8ec3bc82c84986eb7805b1c928f341/signature-3 b/signatures/stagex/perl-pod-parser@sha256=839acbbd364e05dac68f877ce1777bb42b8ec3bc82c84986eb7805b1c928f341/signature-3 new file mode 100644 index 0000000..6b385ff Binary files /dev/null and b/signatures/stagex/perl-pod-parser@sha256=839acbbd364e05dac68f877ce1777bb42b8ec3bc82c84986eb7805b1c928f341/signature-3 differ diff --git a/signatures/stagex/po4a@sha256=4e18208d998a26cac3da0f66aebd02a15c1f526ec0517fc184f47e99539c8513/signature-2 b/signatures/stagex/po4a@sha256=4e18208d998a26cac3da0f66aebd02a15c1f526ec0517fc184f47e99539c8513/signature-2 new file mode 100644 index 0000000..2255574 Binary files /dev/null and b/signatures/stagex/po4a@sha256=4e18208d998a26cac3da0f66aebd02a15c1f526ec0517fc184f47e99539c8513/signature-2 differ diff --git a/signatures/stagex/po4a@sha256=4e18208d998a26cac3da0f66aebd02a15c1f526ec0517fc184f47e99539c8513/signature-3 b/signatures/stagex/po4a@sha256=4e18208d998a26cac3da0f66aebd02a15c1f526ec0517fc184f47e99539c8513/signature-3 new file mode 100644 index 0000000..17b4ff5 Binary files /dev/null and b/signatures/stagex/po4a@sha256=4e18208d998a26cac3da0f66aebd02a15c1f526ec0517fc184f47e99539c8513/signature-3 differ diff --git a/signatures/stagex/talosctl@sha256=04415fd1dcca6fb9a2edcb11ef12402d120bbded0c13dc4ce38aff0c9c205791/signature-2 b/signatures/stagex/talosctl@sha256=04415fd1dcca6fb9a2edcb11ef12402d120bbded0c13dc4ce38aff0c9c205791/signature-2 new file mode 100644 index 0000000..a60a1b5 Binary files /dev/null and b/signatures/stagex/talosctl@sha256=04415fd1dcca6fb9a2edcb11ef12402d120bbded0c13dc4ce38aff0c9c205791/signature-2 differ diff --git a/signatures/stagex/talosctl@sha256=04415fd1dcca6fb9a2edcb11ef12402d120bbded0c13dc4ce38aff0c9c205791/signature-3 b/signatures/stagex/talosctl@sha256=04415fd1dcca6fb9a2edcb11ef12402d120bbded0c13dc4ce38aff0c9c205791/signature-3 new file mode 100644 index 0000000..0d14594 Binary files /dev/null and b/signatures/stagex/talosctl@sha256=04415fd1dcca6fb9a2edcb11ef12402d120bbded0c13dc4ce38aff0c9c205791/signature-3 differ diff --git a/signatures/stagex/xz@sha256=f6ca72fc9096ef5f694b6b7f9b7ad323a571d9447eb5cc790042f72e69b9aad8/signature-2 b/signatures/stagex/xz@sha256=f6ca72fc9096ef5f694b6b7f9b7ad323a571d9447eb5cc790042f72e69b9aad8/signature-2 new file mode 100644 index 0000000..3572b96 Binary files /dev/null and b/signatures/stagex/xz@sha256=f6ca72fc9096ef5f694b6b7f9b7ad323a571d9447eb5cc790042f72e69b9aad8/signature-2 differ diff --git a/signatures/stagex/xz@sha256=f6ca72fc9096ef5f694b6b7f9b7ad323a571d9447eb5cc790042f72e69b9aad8/signature-3 b/signatures/stagex/xz@sha256=f6ca72fc9096ef5f694b6b7f9b7ad323a571d9447eb5cc790042f72e69b9aad8/signature-3 new file mode 100644 index 0000000..9f8ab03 Binary files /dev/null and b/signatures/stagex/xz@sha256=f6ca72fc9096ef5f694b6b7f9b7ad323a571d9447eb5cc790042f72e69b9aad8/signature-3 differ diff --git a/src/packages.mk b/src/packages.mk index c6f0239..dec1f0e 100644 --- a/src/packages.mk +++ b/src/packages.mk @@ -300,7 +300,8 @@ out/curl/index.json: \ out/gcc/index.json \ out/make/index.json \ out/musl/index.json \ - out/openssl/index.json + out/openssl/index.json \ + out/perl/index.json $(call build,curl) .PHONY: diffutils @@ -861,6 +862,18 @@ out/kustomize-sops/index.json: \ out/go/index.json $(call build,kustomize-sops) +.PHONY: libarchive +libarchive: out/libarchive/index.json +out/libarchive/index.json: \ + packages/libarchive/Containerfile \ + out/binutils/index.json \ + out/busybox/index.json \ + out/filesystem/index.json \ + out/gcc/index.json \ + out/make/index.json \ + out/musl/index.json + $(call build,libarchive) + .PHONY: libassuan libassuan: out/libassuan/index.json out/libassuan/index.json: \ @@ -1444,6 +1457,33 @@ out/opensc/index.json: \ out/zlib/index.json $(call build,opensc) +.PHONY: openssh +openssh: out/openssh/index.json +out/openssh/index.json: \ + packages/openssh/Containerfile \ + out/argp-standalone/index.json \ + out/autoconf/index.json \ + out/automake/index.json \ + out/binutils/index.json \ + out/bison/index.json \ + out/busybox/index.json \ + out/filesystem/index.json \ + out/flex/index.json \ + out/gcc/index.json \ + out/gettext/index.json \ + out/libtool/index.json \ + out/libzstd/index.json \ + out/linux-headers/index.json \ + out/m4/index.json \ + out/make/index.json \ + out/musl/index.json \ + out/musl-fts/index.json \ + out/musl-obstack/index.json \ + out/perl/index.json \ + out/pkgconf/index.json \ + out/zlib/index.json + $(call build,openssh) + .PHONY: openssl openssl: out/openssl/index.json out/openssl/index.json: \