Adding python3.10, podman

This commit is contained in:
Gerardo J. Puerta
2022-03-24 12:06:13 +01:00
parent 7d47d45fe6
commit 63bf96895a
72 changed files with 6362 additions and 0 deletions

View File

@ -0,0 +1,3 @@
DIST conmon-2.0.24.tar.gz 104680 BLAKE2B c2ca7197e6ba15eac948b292b34b8d6c4ebb4471c019ff5925f20c65f885c89093b8e6cc88a39acfac2950dbb9f4f1261aba365c86adc62450d887e77bda0317 SHA512 96e86ead995a4c18044ab1434e256126a2c58b4a1ce57ebf469b185571509ab9a5f01c25b379441d6a0e210743a63c72c5f7b1a8552289f4e720f76b2956723b
EBUILD conmon-2.0.24.ebuild 950 BLAKE2B e3fa274988abe852ae7d1a08ee63c041dd1966d09bbb6f70f3b933a01f151593eec1136baf7a0f3753a2a45402cfbf680e56a9b1a3cea821fbd74958616472e6 SHA512 aa7e8a7441a29068a8ab97a681c927031b94caa111e01b34f2005e7e63c8ec40cea8a51fa8e074300b518900896a4ca554acbe2b964633fb7df8dc1a62d1b1ed
MISC metadata.xml 326 BLAKE2B 88e40bbfd92c360f7ed559dc1f3ebe8d35a4905c413de8208a72e255e531d32f61dea3ad710b3a2743df01b29f3f5426440beff3ffcd59139d6f5ce118c17557 SHA512 0709bf7dd7300225974bbf974a3c90c27a368ae6862e080c95f0fb30f314b94c0502258773649fe2cdeba22ad9f5c0d29d000f95e8f7d961e9cdfbea108b4775

View File

@ -0,0 +1,43 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
KEYWORDS="~amd64"
DESCRIPTION="An OCI container runtime monitor"
HOMEPAGE="https://github.com/containers/conmon"
LICENSE="Apache-2.0"
SLOT="0"
IUSE="systemd crio +podman"
EGIT_COMMIT="59952292a3b07ac125575024ae21956efe0ecdfb"
SRC_URI="${HOMEPAGE}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
RDEPEND="dev-libs/glib:=
systemd? ( sys-apps/systemd:= )"
DEPEND="${RDEPEND}"
src_prepare() {
default
if ! use systemd; then
sed -e 's| pkg-config --exists libsystemd-journal | false |' \
-e 's| pkg-config --exists libsystemd | false |' \
-i Makefile || die
fi
}
src_compile() {
make
}
src_install() {
dobin bin/conmon
if use podman; then
dodir /usr/libexec/podman
ln /usr/bin/conmon /usr/libexec/podman/conmon
fi
if use crio; then
dodir /usr/libexec/crio
ln /usr/bin/conmon /usr/libexec/crio/conmon
fi
dodoc README.md
}

View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>zmedico@gentoo.org</email>
<name>Zac Medico</name>
</maintainer>
<upstream>
<remote-id type="github">containers/conmon</remote-id>
</upstream>
</pkgmetadata>