update stdlib-list-0.8.0

This commit is contained in:
Andreas Billmeier 2021-06-18 19:06:54 +02:00 committed by Andreas Billmeier
parent 2a8abaaf80
commit 762578c1d1
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 39 additions and 5 deletions

View File

@ -1,3 +1,5 @@
DIST stdlib-list-0.7.0.tar.gz 70492 BLAKE2B afd31b55a921d422191427098b2da4d404b433f170105201f55f7da477ddb7d534239c9d7098a029b13f44600e31db7331b5b3c8273550e95695b647c1dd5512 SHA512 b33255b14b068d185b94d0944d65673cac507b49354627886a787b944ad2fe097238ad391803c7e7ae00d6c25e1a80dbb65875cd11c8b7aa2ad777cd2442a025
EBUILD stdlib-list-0.7.0.ebuild 728 BLAKE2B c416f9bb576c28fc5a1d1f21e52a949cb00177a38ba4c071f8c569a3a316e44b11559d3997ded5edb7bcd6113d1256c38c11cfc71a8e4e85c790c02c87b11117 SHA512 66e86c6ae6461f217fdf517705850b916c1dcd75f0b9f5b310c8ab70bc5712d9ca6c63004cd7615a280438f3c8bb277154dc669c133358d15927efe02fed3e29
DIST stdlib-list-0.8.0.tar.gz 82752 BLAKE2B 3e83a444c9b27e76aae1be0a51c30e9fabe2791743d135eccf951a7dd30d95e2bd814c501587dc0d135dd157f0e172b7ac94d0f1f1dc41ae4d992e202745414a SHA512 0b6d890714353d00834dcf4c3e9b7f4c3de32245fe85c945cf16df9000af31dfee1b1f08de8cca729ffe5785058b0ab1a06efba7548c88883c4a9c4d2d4e1fb9
EBUILD stdlib-list-0.7.0.ebuild 718 BLAKE2B a63f8ac826a3563f7137361cf0db84f69b60524248cb29e2089e82d9b113736f5f83bf411d46ddc2ae130a32c57187d93b9f7cc45b5a7e1e7628d9b4a8e624dd SHA512 e5dc52830862015c5650dac38799c8255729ef1507d23606b1042a895123170d3b871bd75f44b20ace09f2f0c7886e2649bc4cf303b9919c587eb8fd3ec6349c
EBUILD stdlib-list-0.8.0.ebuild 718 BLAKE2B a63f8ac826a3563f7137361cf0db84f69b60524248cb29e2089e82d9b113736f5f83bf411d46ddc2ae130a32c57187d93b9f7cc45b5a7e1e7628d9b4a8e624dd SHA512 e5dc52830862015c5650dac38799c8255729ef1507d23606b1042a895123170d3b871bd75f44b20ace09f2f0c7886e2649bc4cf303b9919c587eb8fd3ec6349c
MISC metadata.xml 453 BLAKE2B 7dd9f5393a1fa42fc83b6e052ed5872985057dda68d44eefb65081cfceb7d074ef33562f00562b8954711c68d78bf580d55d846640ecf6960e5d09dd972802bb SHA512 fa8490e778eb1ff796453a36454cfc715c6579d03a41df21c688e44acd02b15b7dbd0359a701720da22991ce914e31cf1bb6ab5deeebac5f2edf2cb810a5f8c6

View File

@ -1,13 +1,13 @@
# Copyright 1999-2020 Gentoo Authors
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6..8} )
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="A list of Python Standard Libraries (2.6-7, 3.2-8)."
DESCRIPTION="A list of Python Standard Libraries (2.6-7, 3.2-9)."
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"
@ -19,7 +19,7 @@ IUSE="test"
DOCS="README.md"
RDEPEND=""
BDEPEND="${REDEPEND}
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]

View File

@ -0,0 +1,32 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="A list of Python Standard Libraries (2.6-7, 3.2-9)."
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 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.md"
RDEPEND=""
BDEPEND="
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
}