dev-python/toml: new package, add 0.10.2

Signed-off-by: Pavel Sobolev <contact@paveloom.dev>
This commit is contained in:
Pavel Sobolev
2026-03-16 20:37:37 +03:00
parent 64447e7e97
commit 3072366dd5
3 changed files with 50 additions and 0 deletions

1
dev-python/toml/Manifest Normal file
View File

@@ -0,0 +1 @@
DIST toml-0.10.2.gh.tar.gz 23325 BLAKE2B dedab7d08dadca963e62d64e9108e254dd73b78761985faa892792823027befc6473ae02c35c275a216b4544d1af8776afa78e39c63c95eb856e2bccf1de49c4 SHA512 5c706a3ae336e6b29bdce9752b91c677f7610cbcc1af4169cc24779e248031406cd19ac367725b2aa7903e4b1db71fa59255238c0270b2c146fd5d7e12d9a5da

View File

@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<name>Pavel Sobolev</name>
<email>contact@paveloom.dev</email>
</maintainer>
<upstream>
<bugs-to>https://github.com/uiri/toml/issues</bugs-to>
<remote-id type="github">uiri/toml</remote-id>
<remote-id type="pypi">toml</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,36 @@
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{12..14} )
inherit distutils-r1
DESCRIPTION="Python library for TOML"
HOMEPAGE="
https://github.com/uiri/toml
https://pypi.org/project/toml/
"
SRC_URI="https://github.com/uiri/toml/archive/refs/tags/${PV}.tar.gz -> ${P}.gh.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="dev-python/numpy[${PYTHON_USEDEP}]"
EPYTEST_DESELECT=(
tests/test_api.py::test_invalid_tests
tests/test_api.py::test_valid_tests
)
EPYTEST_PLUGINS=()
distutils_enable_tests pytest
src_install() {
distutils-r1_src_install
dodoc LICENSE
}