diff options
author | Rahil Bhimjiani <rahil3108@gmail.com> | 2023-11-17 16:05:13 +0530 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2023-11-28 22:16:33 -0800 |
commit | 0fd1ca6a523342c779a7aae8a67782762a87f623 (patch) | |
tree | d4d284170caf574a84a5e4c8aa6517c1543e51d8 /app-containers/containers-storage/containers-storage-1.51.0.ebuild | |
parent | app-containers/containers-image: add 5.29.0 & update live (diff) | |
download | gentoo-0fd1ca6a523342c779a7aae8a67782762a87f623.tar.gz gentoo-0fd1ca6a523342c779a7aae8a67782762a87f623.tar.bz2 gentoo-0fd1ca6a523342c779a7aae8a67782762a87f623.zip |
app-containers/containers-storage: add 1.51.0 & update live
1. Fix dep category of go-md2man
2. remove redundant functions
3. Add EPREFIX while installing
Signed-off-by: Rahil Bhimjiani <rahil3108@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/33865
Signed-off-by: Zac Medico <zmedico@gentoo.org>
Diffstat (limited to 'app-containers/containers-storage/containers-storage-1.51.0.ebuild')
-rw-r--r-- | app-containers/containers-storage/containers-storage-1.51.0.ebuild | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/app-containers/containers-storage/containers-storage-1.51.0.ebuild b/app-containers/containers-storage/containers-storage-1.51.0.ebuild new file mode 100644 index 000000000000..4af5e711a1f0 --- /dev/null +++ b/app-containers/containers-storage/containers-storage-1.51.0.ebuild @@ -0,0 +1,37 @@ +# 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" +fi + +LICENSE="Apache-2.0" +SLOT="0" + +BDEPEND=">=dev-go/go-md2man-2.0.2" + +src_prepare() { + default + eapply "${FILESDIR}"/system-md2man-path.patch +} + +src_compile() { + emake -C docs containers-storage.conf.5 +} + +src_install() { + emake DESTDIR="${ED}" -C docs install + + insinto /etc/containers + doins storage.conf +} |