bump pyaftership-21.11.0

This commit is contained in:
2022-01-28 17:36:01 +01:00
committed by Andreas Billmeier
parent 5ae0080791
commit 0ff3616248
2 changed files with 37 additions and 0 deletions

View File

@@ -1,3 +1,5 @@
DIST pyaftership-0.1.2.tar.gz 2279 BLAKE2B 06e3e21600197ee251529afb6ee7e48ae5fd91d702c48dc1daaa3cfc30d5998f92110501b4feb0a9b67782a35e01596ca4d43a0855a4cfbb4ade0de90fc3f897 SHA512 a15da8dba84e91202de74b7d2662c25602f55b580770ac7f07fd225d5129b8e8898c1207f42f6287dbd7d078ab2636f5ee825b22463805b840cb139f4fff7ad4
DIST pyaftership-21.11.0.tar.gz 4435 BLAKE2B c81ba4ffbe686e61c08ebf6f9f068de12a00d8a2d7c109c17550d96433802533261a0dbb7353245b05fe833414147bc9dde8a58db6614727e8379f0ced2cc45e SHA512 e09e96dcadf639edb5d572bc39e4f61e87a0f4606271331b7db124dbf44858cbf17ec69f1a904a8f5a1b6e8b316adbf3bb3efa0486afd9e102dbe0a7be3efeb6
EBUILD pyaftership-0.1.2.ebuild 782 BLAKE2B 7a103f0e2b607623746e36f39ce205a95a49fde2690c535ed185ce71c8fe808427d43989106d982be9cf6b6bfe5dd7335c30d9f2910523521389a17b0cfab62e SHA512 6dc1f589dbbbb087e8ea661f07f46c13b9f7933de069095cb856c358dac26daa58a18ff409c5357adf7ef85f1962ba12e191233c385170e53f5b467510dfc025
EBUILD pyaftership-21.11.0.ebuild 868 BLAKE2B ac619afaad31327411dfba313960414b6bfec777ea1fca1810485db25caf3d0bb3e9c728dc7eaa19c966f053e8dca98186f920c0a6574c53734165ed54554509 SHA512 b74c158ce9c9a866667280e280619500e6bc3c223b56b0fdd41f5ac8dbfc6cf7676a7e13207a92bb06c18d69b609e563764d8765f9bfc9f8df7154eb34e20763
MISC metadata.xml 445 BLAKE2B ac4d0a73046d4f8bac706525f119c9f0175e4fafbd93da28fdd851ee1c1ec6623159820e7b810384e059eed7d3fd8dd245b6f6a2c87450dd382fcc1fcdcd466f SHA512 7c7533ada80dd277273cda1a5b3b838f8fdb5d0718798cf19b56bcc715d86c71b081a7f9fee5bf500bb0e720480684b9504b0b3560f9469f8768c75ca3f72e9a

View File

@@ -0,0 +1,35 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="A module to get information pending parcels."
HOMEPAGE="https://github.com/ludeeus/pyaftership https://pypi.org/project/pyaftership/"
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="dev-python/aiohttp[${PYTHON_USEDEP}]
dev-python/async_timeout[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytest-cov[${PYTHON_USEDEP}]
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}