add stdlib-list-0.7.0

This commit is contained in:
Andreas Billmeier 2020-09-19 19:42:39 +02:00 committed by Andreas Billmeier
parent bcddf277ef
commit 9b26647a86
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 51 additions and 0 deletions

View File

@ -19,6 +19,7 @@
- bump pre-commit-2.7.1
- add pipdeptree-1.0.0
- bump pylint-2.6.0
* add stdlib-list-0.7.0
2020-09-18 homeassistant-0.115.0
* Py3.8 flagged: atenpdu, baidu-aip, bizkaibus, blinkt, brottsplatskartan, pydroid-ipcam

View File

@ -0,0 +1,3 @@
DIST stdlib-list-0.7.0.tar.gz 70492 BLAKE2B afd31b55a921d422191427098b2da4d404b433f170105201f55f7da477ddb7d534239c9d7098a029b13f44600e31db7331b5b3c8273550e95695b647c1dd5512 SHA512 b33255b14b068d185b94d0944d65673cac507b49354627886a787b944ad2fe097238ad391803c7e7ae00d6c25e1a80dbb65875cd11c8b7aa2ad777cd2442a025
EBUILD stdlib-list-0.7.0.ebuild 723 BLAKE2B 6d3562fda8fe93c0627414f0d9fe65067fedc8e520a05054043d6525e7ca18c44de8a2f3b24935b43d7e850001f9e8217827bf9ef3f375b3aad60c2aa1f24188 SHA512 202dafed080e6ee78f2e96e558a345f63856e4af67e8d1b4cd02f8eb15a3c00584854ee06e012c9c929b505ef5296950f36bd6652f95df595ae22e3c87cf541b
MISC metadata.xml 453 BLAKE2B 7dd9f5393a1fa42fc83b6e052ed5872985057dda68d44eefb65081cfceb7d074ef33562f00562b8954711c68d78bf580d55d846640ecf6960e5d09dd972802bb SHA512 fa8490e778eb1ff796453a36454cfc715c6579d03a41df21c688e44acd02b15b7dbd0359a701720da22991ce914e31cf1bb6ab5deeebac5f2edf2cb810a5f8c6

View File

@ -0,0 +1,15 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">stdlib-list</remote-id>
<maintainer status="unknown">
<email>jackmaney@gmail.com</email>
<name>Jack Maney</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,32 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6..8} )
inherit distutils-r1
DESCRIPTION="A list of Python Standard Libraries (2.6-7, 3.2-8)."
HOMEPAGE="https://github.com/jackmaney/python-stdlib-list https://pypi.org/project/stdlib-list/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.md"
RDEPEND=""
BDEPEND="${REDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}