diff options
author | Rahil Bhimjiani <rahil3108@gmail.com> | 2023-10-31 08:20:51 +0530 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2023-10-30 20:38:38 -0700 |
commit | b2ec41bf5a4a905ef926b40d9c2ef70ed1095f49 (patch) | |
tree | ece72d02199a60f230b79e15e1a873d7033d46ec /app-containers/catatonit | |
parent | sci-mathematics/pari: Stabilize 2.15.4-r1 amd64, #916560 (diff) | |
download | gentoo-b2ec41bf5a4a905ef926b40d9c2ef70ed1095f49.tar.gz gentoo-b2ec41bf5a4a905ef926b40d9c2ef70ed1095f49.tar.bz2 gentoo-b2ec41bf5a4a905ef926b40d9c2ef70ed1095f49.zip |
app-containers/catatonit: add 0.2.0, sync LICENSE changes and live
From GPL3+ to GPL2+
Signed-off-by: Rahil Bhimjiani <rahil3108@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/33602
Signed-off-by: Zac Medico <zmedico@gentoo.org>
Diffstat (limited to 'app-containers/catatonit')
-rw-r--r-- | app-containers/catatonit/Manifest | 1 | ||||
-rw-r--r-- | app-containers/catatonit/catatonit-0.2.0.ebuild | 31 | ||||
-rw-r--r-- | app-containers/catatonit/catatonit-9999.ebuild | 5 |
3 files changed, 35 insertions, 2 deletions
diff --git a/app-containers/catatonit/Manifest b/app-containers/catatonit/Manifest index fa6878661536..9d0f4c29aa55 100644 --- a/app-containers/catatonit/Manifest +++ b/app-containers/catatonit/Manifest @@ -1,2 +1,3 @@ DIST catatonit-0.1.7-automake.patch 965 BLAKE2B fd42082321b75210653657cadd09751aa70a1eabeea4abc0cbc06aa91c510cff70d4261759407426a198f1aa3a1826d9f3a255d18e0e22e2dad53eca6b76ee87 SHA512 62cb75e8dcff7348eb5fe9dfb57627659bb755ffdd6a29b6d4e486e2b4c92945fa7420410941523585102ac11b14c2a1700fb6fd3fd663e7f38c10863f82fa87 DIST catatonit-0.1.7.tar.gz 21720 BLAKE2B ab73198e55dd06d3d0af04e6eff17a2f1e70ab1c0f9ec35f68f9afe71ce8cd1bdc3320e9728a6d8036c2251fe95028e1aad0838d1c9f51e4cc70e482a1109c24 SHA512 7d3174c60e1c8bd1f4b95b7751ccbe01cac63265060f18914b53311f68f7b4c63c693604f348ccfac5db4a96939169f835fbbbd614803b18062053d94f7dca67 +DIST catatonit-0.2.0.tar.gz 16608 BLAKE2B 27b6ed1148aaef963140c42e2cb6a7a8c9c25f01eef62cf519c3b1c230c8f30838f5b9cb54bf0b37b1194084f3f0c750e20316738a330d6a01c830b71b45623c SHA512 115e72002e35bb2a03919f9422a9cb2d9a0e4f087862d4ffd20e9508af6d67efc359a577ec059574f2f6c98966a1f080b65dffc8dfb83b3c2ed48e63e2aeac3b diff --git a/app-containers/catatonit/catatonit-0.2.0.ebuild b/app-containers/catatonit/catatonit-0.2.0.ebuild new file mode 100644 index 000000000000..74469d9d4d19 --- /dev/null +++ b/app-containers/catatonit/catatonit-0.2.0.ebuild @@ -0,0 +1,31 @@ +# Copyright 2022-2023 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 ~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}" +} diff --git a/app-containers/catatonit/catatonit-9999.ebuild b/app-containers/catatonit/catatonit-9999.ebuild index 1531acd41b04..74469d9d4d19 100644 --- a/app-containers/catatonit/catatonit-9999.ebuild +++ b/app-containers/catatonit/catatonit-9999.ebuild @@ -7,7 +7,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 + +if [[ ${PV} == 9999* ]]; then inherit git-r3 EGIT_REPO_URI="https://github.com/openSUSE/catatonit.git" else @@ -15,7 +16,7 @@ else KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv" fi -LICENSE="GPL-3+" +LICENSE="GPL-2+" SLOT="0" src_prepare() { |