summaryrefslogtreecommitdiff
path: root/opt/catatonit
diff options
context:
space:
mode:
authorrawnix ports <ports@rawnix.org>2026-09-26 18:19:05 +0000
committerrawnix ports <ports@rawnix.org>2026-09-26 18:19:05 +0000
commitc82e88dd00d1b0b7fcfb4e5628d99611388cef6f (patch)
tree56d864b5a5c6c145edd96178ae219a8f90e191a6 /opt/catatonit
downloadports-c82e88dd00d1b0b7fcfb4e5628d99611388cef6f.tar.gz
sync 2026-09-26 18:19 UTC
1672 files changed, 151396 insertions(+)
Diffstat (limited to 'opt/catatonit')
-rw-r--r--opt/catatonit/.footprint4
-rw-r--r--opt/catatonit/.signature6
-rw-r--r--opt/catatonit/MAKEPKG32
3 files changed, 42 insertions, 0 deletions
diff --git a/opt/catatonit/.footprint b/opt/catatonit/.footprint
new file mode 100644
index 0000000..b834b8d
--- /dev/null
+++ b/opt/catatonit/.footprint
@@ -0,0 +1,4 @@
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/libexec/
+drwxr-xr-x root/root usr/libexec/podman/
+-rwxr-xr-x root/root usr/libexec/podman/catatonit
diff --git a/opt/catatonit/.signature b/opt/catatonit/.signature
new file mode 100644
index 0000000..1e47e27
--- /dev/null
+++ b/opt/catatonit/.signature
@@ -0,0 +1,6 @@
+RWTZ9IduCSQ/mCNAM0KHgjAWaxs/B4Johjo9we7KdBwiPa+CeqJmBHZTb4H2LTKYPbVZiVR2J0w5CRUVmlvdpus5LWpE1b4D2w0=
+
+SHA256 (MAKEPKG) = 58935f2cec09b66e530749da98fd5be1d3a81ba818cb7fccdf7f9e6117c423c1
+SHA256 (.footprint) = c8fcfc00c61b316c6fe4310ecc3fd6a3300d2efa4aeccda4a7b80dd2210edf07
+SHA256 (v0.2.1.tar.gz) = 771385049516fdd561fbb9164eddf376075c4c7de3900a8b18654660172748f1
+SHA256 (catatonit#0.2.1-1.pkg.tar.gz) = ecd42d6b1fb0787033505e1d7307d1d5bff82e93eb0a30b1e52bde961edc87db
diff --git a/opt/catatonit/MAKEPKG b/opt/catatonit/MAKEPKG
new file mode 100644
index 0000000..76731fc
--- /dev/null
+++ b/opt/catatonit/MAKEPKG
@@ -0,0 +1,32 @@
+#!/bin/mkpkg
+# description: Minimal init for containers (pause process)
+# url: https://github.com/openSUSE/catatonit
+
+name=catatonit
+version=0.2.1
+release=1
+depends=()
+makedeps=(autoconf automake libtool)
+source=(https://github.com/openSUSE/$name/archive/refs/tags/v$version.tar.gz)
+
+sha256sums=(
+ "771385049516fdd561fbb9164eddf376075c4c7de3900a8b18654660172748f1"
+)
+
+build() {
+ cd $name-$version
+
+ autoreconf -fiv
+ ./configure \
+ --prefix=/usr
+
+ make
+ install -Dm755 $name $PKG/usr/libexec/podman/$name
+}
+
+signify() {
+ untrusted comment: public key
+ RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
+}
+
+# vim: filetype=sh