diff options
author | mirror@stealer.net <mirror@stealer.net> | 2025-01-31 23:30:19 +0000 |
---|---|---|
committer | mirror@stealer.net <mirror@stealer.net> | 2025-01-31 23:30:19 +0000 |
commit | 5c2c98b0a579c7434b70e2ee8f3c8a7499298dbb (patch) | |
tree | aa0268f668eb35627871a28d13ea8bf04d29d03d /dev-python/python-linux-procfs |
2025-01-31 23:11:16+00:00grafted
Diffstat (limited to 'dev-python/python-linux-procfs')
-rw-r--r-- | dev-python/python-linux-procfs/Manifest | 3 | ||||
-rw-r--r-- | dev-python/python-linux-procfs/metadata.xml | 8 | ||||
-rw-r--r-- | dev-python/python-linux-procfs/python-linux-procfs-0.7.3.ebuild | 27 |
3 files changed, 38 insertions, 0 deletions
diff --git a/dev-python/python-linux-procfs/Manifest b/dev-python/python-linux-procfs/Manifest new file mode 100644 index 0000000000000..3f0b2bac00aa4 --- /dev/null +++ b/dev-python/python-linux-procfs/Manifest @@ -0,0 +1,3 @@ +DIST python-linux-procfs-0.7.3.tar.xz 11412 BLAKE2B 66c22261a3ab9fff68949e2e1e54a07ac5bc365d12e52b8149a02105e2ace85e22be38ec84fb1c97b3d4fec6392998d98252e11454a72135eacae770efa171ae SHA512 fbb4bd5b22ccafd6e8fed853f9bc175f9c7b5fc6795b9641a5e39404a96c1cdfdad7856fa89b3dc91ee9f13e3c76a23c79e3729fdfd7a10df1e46fdbb25aa631 +EBUILD python-linux-procfs-0.7.3.ebuild 651 BLAKE2B 6016d5e0020b73e610e6cca5df166a7bf5fd3a1baf9fd8eb8f02f14f91b945334c0cc3cb2a456cd7e337fbe0f22576b978fc824f8e790d4a22f5e0523ca103f2 SHA512 4f5ad16cb63e5935dd371531eeb81847a18563faddfc1d84e8a3ca58b17d74f35be83ba3b753137f622a8f24a2551700e58b6f89d65c95decdc9f903507a94ae +MISC metadata.xml 241 BLAKE2B 4f18c355c71824c25df283b2d463a5abbf2295446e74b960e868dd78d4910ac066725450478087567a6e66b7a8948d99e053f13a7e58dbf2b89fdaf5c2f3436c SHA512 c46e70ffd66754ad84c64806f2bbff25ba9a688f035176a4565afc95351ce10fffba64bbde89965501460b05978c7e59b3d84db6a8cb6efff4055d4b7a5ab5d8 diff --git a/dev-python/python-linux-procfs/metadata.xml b/dev-python/python-linux-procfs/metadata.xml new file mode 100644 index 0000000000000..efd7c8c218367 --- /dev/null +++ b/dev-python/python-linux-procfs/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="project"> + <email>python@gentoo.org</email> + <name>Python</name> + </maintainer> +</pkgmetadata> diff --git a/dev-python/python-linux-procfs/python-linux-procfs-0.7.3.ebuild b/dev-python/python-linux-procfs/python-linux-procfs-0.7.3.ebuild new file mode 100644 index 0000000000000..9c0709b185265 --- /dev/null +++ b/dev-python/python-linux-procfs/python-linux-procfs-0.7.3.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..13} ) + +inherit distutils-r1 + +DESCRIPTION="Python classes to extract information from the Linux kernel /proc files" +HOMEPAGE=" + https://git.kernel.org/pub/scm/libs/python/python-linux-procfs/python-linux-procfs.git/ +" +SRC_URI="https://cdn.kernel.org/pub/software/libs/python/${PN}/${P}.tar.xz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND=" + dev-python/six[${PYTHON_USEDEP}] +" + +python_test() { + "${EPYTHON}" ./bitmasklist_test.py || die "Tests failed with ${EPYTHON}" +} |