diff options
author | Rahil Bhimjiani <me@rahil.rocks> | 2024-01-11 01:29:20 +0530 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2024-02-23 14:53:41 +0200 |
commit | ddc89103c6b281f6ae3aee3e9279e6db6a888f76 (patch) | |
tree | f713478bd959d506c79d1f719935bcd6b0115edb /app-containers | |
parent | app-containers/containers-common: drop 0.56.0 (diff) | |
download | gentoo-ddc89103c6b281f6ae3aee3e9279e6db6a888f76.tar.gz gentoo-ddc89103c6b281f6ae3aee3e9279e6db6a888f76.tar.bz2 gentoo-ddc89103c6b281f6ae3aee3e9279e6db6a888f76.zip |
app-containers/containers-image: drop 5.28.0
Signed-off-by: Rahil Bhimjiani <me@rahil.rocks>
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'app-containers')
-rw-r--r-- | app-containers/containers-image/Manifest | 1 | ||||
-rw-r--r-- | app-containers/containers-image/containers-image-5.28.0.ebuild | 45 |
2 files changed, 0 insertions, 46 deletions
diff --git a/app-containers/containers-image/Manifest b/app-containers/containers-image/Manifest index bd62dff68391..9e3ed9a8d5a9 100644 --- a/app-containers/containers-image/Manifest +++ b/app-containers/containers-image/Manifest @@ -1,3 +1,2 @@ -DIST containers-image-5.28.0.tar.gz 688100 BLAKE2B 0cee8be579bd11eb0524590d8afe16b6ef863d7adfd74db51b68385142804c8096fec3f2a492e0d5a5021eba9edc91219b327138635aaa329c6ef7d0c01129c8 SHA512 0b76539e04016f5f1067c576a877ace475f25d0f0840fc969606601105a8a7f0e242cc054b0a2cfb6f1b751d850734360a524c78563fdf2330c8ae8c11bba1cf DIST containers-image-5.29.0.tar.gz 706774 BLAKE2B 0af5c7c43e8b75df591cbd291d0865ac19322bf62ad98b4f36cfb51b006ced088f91f0b3f582ce29ae80582e72087467cfe589683216eeb50ad3762152853dc0 SHA512 5e670f85fe0b43769667f1a3e710434ab65c4ec2d8c60b0cad4b0ed41c35f84677528f9dfecb0b946de556ebbdd56f4949760432ec49b1b3c691120a323af869 DIST containers-image-5.29.2.tar.gz 707618 BLAKE2B f1556cbb26ceedd74a338355caf8b557c43286726f4be63544cebc9a8f4b92be78d7a0cddbedaba7352d13e9fc399f62ee114caba6c8b1ecc334dab1379e523b SHA512 f3f6e09670dc393067992a78303f01e2584dabe79ba156973a50d7a460c011e5a27d0ccdf0ff6b399099a9a3a4c57f3badf24fb5d0704efd645ab7196a544d8f diff --git a/app-containers/containers-image/containers-image-5.28.0.ebuild b/app-containers/containers-image/containers-image-5.28.0.ebuild deleted file mode 100644 index 7607ef875664..000000000000 --- a/app-containers/containers-image/containers-image-5.28.0.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DESCRIPTION="Default config and docs related to Containers' images" -HOMEPAGE="https://github.com/containers/image" - -if [[ ${PV} == *9999* ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/containers/image.git" -else - SRC_URI="https://github.com/containers/image/archive/v${PV}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/${P#containers-}" - KEYWORDS="amd64 arm64 ~riscv" -fi - -LICENSE="Apache-2.0" -SLOT="0" - -DEPEND=">=dev-go/go-md2man-2.0.2" - -src_prepare() { - default - eapply "${FILESDIR}/fix-warnings.patch" -} - -src_configure() { - return -} - -src_compile() { - emake docs -} - -src_test() { - return -} - -src_install() { - emake DESTDIR="${D}" install - - insinto /etc/containers - doins registries.conf -} |