Adding python3.10, podman
This commit is contained in:
3
app-emulation/podman/Manifest
Normal file
3
app-emulation/podman/Manifest
Normal file
@ -0,0 +1,3 @@
|
||||
DIST podman-4.0.2.tar.gz 11377152 BLAKE2B ab022c3e7ef40685301f08b2d939e936b07e08231d5b86a84fefa6ea7a60c8f20a5e15b79788d862c263336204a9cd8d7206748b4530f2f42ccdd31df370747f SHA512 f3c42b3b3c75ca451b4c22c2d6f9f1b9ab9437b118b16e19f17f92f28b5849f8e3de4ebc97d8d249f565a61ba187214928c25a031204163a59174e94ce300a59
|
||||
EBUILD podman-4.0.2.ebuild 798 BLAKE2B 672b4653bbb5fdd7b2fea96a3ce9077548022ce34faa5e712974ac6054bb4d5e66d0ac5ec3a022b9f849d71696f4b4073c7d9406f66cfc630d82e064b822fd1c SHA512 6dde73643ebbb28125853413fdf6bce9a31b3526d70ac0f90e40b40dbe99ba1d7e89ac2433c60619f08fc66a9de704abbbeadf6a397fd6438dc0bc530665a9ae
|
||||
MISC metadata.xml 549 BLAKE2B 3abe771305fac3d044ccc50d495dcbe54c1023870dd3047e83cf750a658303fda48d4944202785f37fa1b40cb568acdb92872b5f97358d2025ccb3a87c91df15 SHA512 be3fbad66b2d519eb71fb8d2902eed883a40f087d3d4b48d908ea250b55f59865d3f6f2554189f8d7372cd0b4310fdfa37f1202e7f2e781f70299fed0dad2c96
|
16
app-emulation/podman/metadata.xml
Normal file
16
app-emulation/podman/metadata.xml
Normal file
@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<longdescription lang="en">
|
||||
runc is a CLI tool for spawning and running containers according
|
||||
to the OCF (Open Container Format) specification.
|
||||
</longdescription>
|
||||
<!-- maintainer-needed -->
|
||||
<use>
|
||||
<flag name="ambient">Enable support for ambient capability</flag>
|
||||
<flag name="apparmor">Enable AppArmor support</flag>
|
||||
</use>
|
||||
<upstream>
|
||||
<remote-id type="github">docker/runc</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
45
app-emulation/podman/podman-4.0.2.ebuild
Normal file
45
app-emulation/podman/podman-4.0.2.ebuild
Normal file
@ -0,0 +1,45 @@
|
||||
# Copyright 1999-2018 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
SRC_URI="https://github.com/containers/podman/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="amd64 ~arm ~ppc64"
|
||||
|
||||
DESCRIPTION="A tool for managing OCI containers and pods"
|
||||
HOMEPAGE="https://podman.io"
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="
|
||||
${COMMON_DEPEND}
|
||||
>=dev-lang/go-1.12
|
||||
dev-go/go-md2man
|
||||
"
|
||||
|
||||
RDEPEND="
|
||||
>=app-emulation/conmon-2.0.24
|
||||
app-emulation/containerd
|
||||
"
|
||||
|
||||
S=${WORKDIR}/${P}
|
||||
|
||||
RESTRICT="test"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
# sed -i -e "s/git rev-parse.*\$/echo gentoo)/" -e "/COMMIT :=/d" -e "/COMMIT_NO :=/d" Makefile || die
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
PREFIX="/usr" make
|
||||
}
|
||||
|
||||
src_install() {
|
||||
dobin bin/podman
|
||||
dobin bin/podman-remote
|
||||
dobin bin/rootlessport
|
||||
}
|
||||
|
Reference in New Issue
Block a user