mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-10 23:52:59 -04:00
dev-python/sortedcollections: initial import
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in>
This commit is contained in:
1
dev-python/sortedcollections/Manifest
Normal file
1
dev-python/sortedcollections/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST sortedcollections-2.1.0.tar.gz 48563 BLAKE2B 5de36155858dc055c9412ff410bd70b489aba292a2956216db95641e10dcb249b98e5c005c4d7c4fd00b25c3315c65b3f43f404737591632ac223a4045b775b5 SHA512 7cb95af1791ab8f8c99847c1b9e0b8c1e7cc7dfe8a9df5db8bb3c96ceb2f15d7351ab4ff081d037d34dbb6c3108f4b575ca22c9e9e911a727d31b9ba3bf975f6
|
||||
13
dev-python/sortedcollections/metadata.xml
Normal file
13
dev-python/sortedcollections/metadata.xml
Normal file
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<upstream>
|
||||
<doc>http://www.grantjenks.com/docs/sortedcollections/</doc>
|
||||
<remote-id type="github">https://github.com/grantjenks/python-sortedcollections</remote-id>
|
||||
<remote-id type="pypi">sortedcollections</remote-id>
|
||||
</upstream>
|
||||
<maintainer type="person">
|
||||
<email>cyber+gentoo@sysrq.in</email>
|
||||
<name>Anna</name>
|
||||
</maintainer>
|
||||
</pkgmetadata>
|
||||
36
dev-python/sortedcollections/sortedcollections-2.1.0.ebuild
Normal file
36
dev-python/sortedcollections/sortedcollections-2.1.0.ebuild
Normal file
@@ -0,0 +1,36 @@
|
||||
# Copyright 2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{8..10} pypy3 )
|
||||
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}.tar.gz"
|
||||
S="${WORKDIR}/python-${PN}-${PV}"
|
||||
|
||||
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"
|
||||
}
|
||||
Reference in New Issue
Block a user