diff options
author | V3n3RiX <venerix@koprulu.sector> | 2025-02-24 19:24:56 +0000 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2025-02-24 19:24:56 +0000 |
commit | d4653056cc74d97f24bef0d56b4ebe11c53c8b76 (patch) | |
tree | 5d4be0715302fad2089468027fadaa0372afd1d1 /app-containers | |
parent | 575bcb9220287a6f0d2577db1fd9fe55d9d8b745 (diff) |
gentoo auto-resync : 24:02:2025 - 19:24:56
Diffstat (limited to 'app-containers')
-rw-r--r-- | app-containers/Manifest.gz | bin | 9394 -> 9403 bytes | |||
-rw-r--r-- | app-containers/catatonit/Manifest | 2 | ||||
-rw-r--r-- | app-containers/catatonit/catatonit-0.2.1.ebuild | 31 |
3 files changed, 33 insertions, 0 deletions
diff --git a/app-containers/Manifest.gz b/app-containers/Manifest.gz Binary files differindex fc845fa43409..af8845ba5f25 100644 --- a/app-containers/Manifest.gz +++ b/app-containers/Manifest.gz diff --git a/app-containers/catatonit/Manifest b/app-containers/catatonit/Manifest index a87c097cfdef..6f6c51fa71de 100644 --- a/app-containers/catatonit/Manifest +++ b/app-containers/catatonit/Manifest @@ -1,4 +1,6 @@ DIST catatonit-0.2.0.tar.gz 16608 BLAKE2B 27b6ed1148aaef963140c42e2cb6a7a8c9c25f01eef62cf519c3b1c230c8f30838f5b9cb54bf0b37b1194084f3f0c750e20316738a330d6a01c830b71b45623c SHA512 115e72002e35bb2a03919f9422a9cb2d9a0e4f087862d4ffd20e9508af6d67efc359a577ec059574f2f6c98966a1f080b65dffc8dfb83b3c2ed48e63e2aeac3b +DIST catatonit-0.2.1.tar.gz 18479 BLAKE2B df489287a3c134fa0f9188a1c8bfd05b085b2173b733be3d3bc8f7e99ac2bd8529815a2fe33e09e15a6609e8310cda7ff3f6b51270ed687a4f217d40dd603655 SHA512 39fb66900e9c9541470a70bec66dc77cf04ef237aa69bbc4fbb4025ef3de5c335f8b28cb41d60cd4525683a61d270dc8582b200606c474817035a0ffd9afb849 EBUILD catatonit-0.2.0.ebuild 677 BLAKE2B 7dfcc247d5d25404fd15f4ed401a1b6ffc6ce00812dcd319157ee588f22773e8f2a7866083bb00b3ab147148c0cefdf60f6b2f32e8c893fc6cd193f1e0c488d4 SHA512 6a4847d45016cf0ccd0bb4cf1e322468e7ef1ab5d06496a390aff6537c10fbba9b977a114172323c976dfe0c205b6981bebea5972ca43f33af79e21b74ad2e30 +EBUILD catatonit-0.2.1.ebuild 679 BLAKE2B d7d43bfe27e6270eb585352038a31e1e5bc6a11e80805ba0e702de6d4fa8ee74f2387c47856541e309a56602bd911a8e980343fb8942aa9719cea633db2e9575 SHA512 a5c8c73e98fdba773b11e67a65089549786cf68bd71143073d80bb79bfa2b51001b44d54320fcbeccca1651985dc8570a741ef780c4251635f4273aea9fb6606 EBUILD catatonit-9999.ebuild 679 BLAKE2B 0d28afa2cb3598f9b604331206f15960e648170d56d7e52bb66f3f606b1cbc6eedd7b00e7061b2e3e6c88d5f8c2448cea42c4e4ae546b35bf5b43670af5fdd0e SHA512 9ece911ef2929c8e2a582c64e26034507173e60e9c0a8db431075e9ddcce5693b1fa011f001e3ae69629e37771593fbc909b7949b7298182d3ffd322313d16cc MISC metadata.xml 692 BLAKE2B 09ba40582b099dedbece9c70c475fbecaa4e0828fc6e4c64f3aaf728482f8857a88ee225c49b7e8a0b3ad14981bbd7d4fb9086ef7c590cab12ee49909401c446 SHA512 476d5d231b0adf644376b4535357569895934bf9e1a7f4e8fab6ac6f7f9150b56fcd762f1bfcb8b54e11da2b35bdc27e36fb1a486ea9a980e4865628697bffab diff --git a/app-containers/catatonit/catatonit-0.2.1.ebuild b/app-containers/catatonit/catatonit-0.2.1.ebuild new file mode 100644 index 000000000000..32ce92229063 --- /dev/null +++ b/app-containers/catatonit/catatonit-0.2.1.ebuild @@ -0,0 +1,31 @@ +# Copyright 2022-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools + +DESCRIPTION="A container init that is so simple it's effectively brain-dead" +HOMEPAGE="https://github.com/openSUSE/catatonit" + +if [[ ${PV} == 9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/openSUSE/catatonit.git" +else + SRC_URI="https://github.com/openSUSE/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~riscv" +fi + +LICENSE="GPL-2+" +SLOT="0" + +src_prepare() { + default + eautoreconf +} + +src_install() { + default + dodir /usr/libexec/podman + dosym -r /usr/bin/"${PN}" /usr/libexec/podman/"${PN}" +} |