diff options
author | Rahil Bhimjiani <me@rahil.rocks> | 2024-01-11 01:31:20 +0530 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2024-02-23 14:53:41 +0200 |
commit | 52281c289e3c0b0704e40d60845b70ab7817e16d (patch) | |
tree | 8078bd1d545c25b7ff3862b8eab1d5ba2e7d4e89 /app-containers | |
parent | app-containers/containers-image: drop 5.28.0 (diff) | |
download | gentoo-52281c289e3c0b0704e40d60845b70ab7817e16d.tar.gz gentoo-52281c289e3c0b0704e40d60845b70ab7817e16d.tar.bz2 gentoo-52281c289e3c0b0704e40d60845b70ab7817e16d.zip |
app-containers/containers-storage: drop 1.50.2
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-storage/Manifest | 1 | ||||
-rw-r--r-- | app-containers/containers-storage/containers-storage-1.50.2.ebuild | 45 |
2 files changed, 0 insertions, 46 deletions
diff --git a/app-containers/containers-storage/Manifest b/app-containers/containers-storage/Manifest index 5e7953f39084..d965e5061a77 100644 --- a/app-containers/containers-storage/Manifest +++ b/app-containers/containers-storage/Manifest @@ -1,2 +1 @@ -DIST containers-storage-1.50.2.tar.gz 4278269 BLAKE2B 3a2b08c710c043cfc130b9ffe39807e5ced8aa3cdb9805e9d9a4d0f60d8136f99e78ca03992c566b7c7d9aa1c25a2ab9da5e9edc4f1f841663302f5873dce419 SHA512 eb2ca9d243511abd5d6d1727c60166422dbfef4a3ddbb5062e58d915d0705afcd10ded8f1f79e897f9f5244fb6b6d349fbf3ed86ae57f41e31a1965c4e926941 DIST containers-storage-1.51.0.tar.gz 4283732 BLAKE2B 108401d68e617e6237e68cf2147113680e0452a8d15ee099da9872508800f3e7b8f2c5508e17d9c5f3d58fec4efc1c20f23f1a567fe592533c0e63efd05ae5c8 SHA512 89916b49438bce8bb774b4aa799676d4b3a946a0b5207a1b5241b1a3ac0875b06b3cd8e81d7e23332ceae6010b693516fc31d8c7f75a37e7ad3056a83c75b6c1 diff --git a/app-containers/containers-storage/containers-storage-1.50.2.ebuild b/app-containers/containers-storage/containers-storage-1.50.2.ebuild deleted file mode 100644 index dd7c4875f46e..000000000000 --- a/app-containers/containers-storage/containers-storage-1.50.2.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' storage" -HOMEPAGE="https://github.com/containers/storage" - -if [[ ${PV} == *9999* ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/containers/storage.git" -else - SRC_URI="https://github.com/containers/storage/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}"/system-md2man-path.patch -} - -src_configure() { - return -} - -src_compile() { - emake -C docs containers-storage.conf.5 -} - -src_test() { - return -} - -src_install() { - emake DESTDIR="${D}" -C docs install - - insinto /etc/containers - doins storage.conf -} |