summaryrefslogtreecommitdiff
path: root/dev-python/sortedcollections
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
commita3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-python/sortedcollections
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadbaldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'dev-python/sortedcollections')
-rw-r--r--dev-python/sortedcollections/Manifest1
-rw-r--r--dev-python/sortedcollections/metadata.xml10
-rw-r--r--dev-python/sortedcollections/sortedcollections-2.1.0.ebuild37
3 files changed, 0 insertions, 48 deletions
diff --git a/dev-python/sortedcollections/Manifest b/dev-python/sortedcollections/Manifest
deleted file mode 100644
index ae64c7f98057..000000000000
--- a/dev-python/sortedcollections/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST sortedcollections-2.1.0.gh.tar.gz 48563 BLAKE2B 5de36155858dc055c9412ff410bd70b489aba292a2956216db95641e10dcb249b98e5c005c4d7c4fd00b25c3315c65b3f43f404737591632ac223a4045b775b5 SHA512 7cb95af1791ab8f8c99847c1b9e0b8c1e7cc7dfe8a9df5db8bb3c96ceb2f15d7351ab4ff081d037d34dbb6c3108f4b575ca22c9e9e911a727d31b9ba3bf975f6
diff --git a/dev-python/sortedcollections/metadata.xml b/dev-python/sortedcollections/metadata.xml
deleted file mode 100644
index f66072768843..000000000000
--- a/dev-python/sortedcollections/metadata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <upstream>
- <doc>https://grantjenks.com/docs/sortedcollections/</doc>
- <remote-id type="github">grantjenks/python-sortedcollections</remote-id>
- <remote-id type="pypi">sortedcollections</remote-id>
- </upstream>
- <!-- maintainer-needed -->
-</pkgmetadata>
diff --git a/dev-python/sortedcollections/sortedcollections-2.1.0.ebuild b/dev-python/sortedcollections/sortedcollections-2.1.0.ebuild
deleted file mode 100644
index 18e0e8ed990d..000000000000
--- a/dev-python/sortedcollections/sortedcollections-2.1.0.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 2021-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{13..14} )
-DISTUTILS_USE_PEP517=setuptools
-inherit distutils-r1
-
-DESCRIPTION="Apache2 licensed Python sorted collections library"
-HOMEPAGE="
- https://pypi.org/project/sortedcollections/
- https://github.com/grantjenks/python-sortedcollections
-"
-SRC_URI="https://github.com/grantjenks/python-${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz"
-S="${WORKDIR}/python-${P}"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
-
-RDEPEND="dev-python/sortedcontainers[${PYTHON_USEDEP}]"
-BDEPEND="doc? ( ${RDEPEND} )"
-
-distutils_enable_tests pytest
-distutils_enable_sphinx docs
-
-src_prepare() {
- # breaks pytest
- rm tox.ini || die
-
- distutils-r1_src_prepare
-}
-
-python_test() {
- epytest --doctest-glob="*.rst"
-}