summaryrefslogtreecommitdiff
path: root/dev-python/toml
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/toml')
-rw-r--r--dev-python/toml/Manifest2
-rw-r--r--dev-python/toml/metadata.xml13
-rw-r--r--dev-python/toml/toml-0.10.2.ebuild41
3 files changed, 0 insertions, 56 deletions
diff --git a/dev-python/toml/Manifest b/dev-python/toml/Manifest
deleted file mode 100644
index 8da485d9f803..000000000000
--- a/dev-python/toml/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST toml-0.10.2.gh.tar.gz 23325 BLAKE2B dedab7d08dadca963e62d64e9108e254dd73b78761985faa892792823027befc6473ae02c35c275a216b4544d1af8776afa78e39c63c95eb856e2bccf1de49c4 SHA512 5c706a3ae336e6b29bdce9752b91c677f7610cbcc1af4169cc24779e248031406cd19ac367725b2aa7903e4b1db71fa59255238c0270b2c146fd5d7e12d9a5da
-DIST toml-test-2.1.0.gh.tar.gz 98383 BLAKE2B 9911882efce826335e4b2f9f4d1e22e559f320ef6976babd970c84b034c3c7c238e5dfbea23e5c6c99256db53a6522bddfb2c573ccb50426cd4a0bda43dcd58c SHA512 8006e87ae3df4232850461acfdf501ab89b18e607e3760b31f9a009c447548f927e44e8bae94fe6176f82379c1dcc3a896f5972962da593f92d31a3ee6adc644
diff --git a/dev-python/toml/metadata.xml b/dev-python/toml/metadata.xml
deleted file mode 100644
index 32487634ae92..000000000000
--- a/dev-python/toml/metadata.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<?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>
diff --git a/dev-python/toml/toml-0.10.2.ebuild b/dev-python/toml/toml-0.10.2.ebuild
deleted file mode 100644
index 0858c5c06d20..000000000000
--- a/dev-python/toml/toml-0.10.2.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# 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_{13..14} )
-
-inherit distutils-r1
-
-TT_PV=2.1.0
-TT_P="toml-test-${TT_PV}"
-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
- test? (
- https://github.com/toml-lang/toml-test/archive/refs/tags/v${TT_PV}.tar.gz
- -> ${TT_P}.gh.tar.gz
- )
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-
-RDEPEND="dev-python/numpy[${PYTHON_USEDEP}]"
-
-EPYTEST_PLUGINS=()
-distutils_enable_tests pytest
-
-src_prepare() {
- distutils-r1_src_prepare
-
- if use test; then
- mv "${WORKDIR}/${TT_P}" toml-test || die
- fi
-}