bump ismartgate-4.0.4

This commit is contained in:
Andreas Billmeier 2021-11-02 13:31:05 +01:00 committed by Andreas Billmeier
parent 79a5bb4131
commit 4893d3c430
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
2 changed files with 37 additions and 0 deletions

View File

@ -1,3 +1,5 @@
DIST ismartgate-4.0.0.tar.gz 20526 BLAKE2B 249b5695678a4e27a0ff056afc8eed75024f9f02c5ea8f3bb42d2c6ccb8030cca925f67dc073cb5d1e53437b1279b9ad5e10ee1ee26638c622221f64b574c5b6 SHA512 416bc066d457381b87ed7b09876230bee8dd43b9bf3ad3b4851327a251ec37588cc28c678cf39a32b2b14264736fab7f93675dffe5f921a19a1c5deec3cfe1de
DIST ismartgate-4.0.4.tar.gz 20517 BLAKE2B 621c4deee22e3f6d56ab952e5438356cbd0d88d8e411eb79f3cd16438ca38ddd47c92bae7e6e2d51df04f7471ca027fca09147a9da68bc0024415110f5e418ee SHA512 0cfeb7988690aa664150b3408a0bfd22663a7d0a0a553e07d2db49b4e9c89e4b4d0faba5ceba14f15554dbc3ec0f21fda0a3ef899d4314285446d0f0ab524617
EBUILD ismartgate-4.0.0.ebuild 874 BLAKE2B 86186d1a13e983b7f0c04da9bf1318e341422ca97c39d5274a6b6045028c9c5c0508a345f688c9290d6391fc1cecc26e4d753be98b8130c3f25625e3fa8d5940 SHA512 fc0a0b0428db47e62f642dd4866e9112ec407a432dfa1b07968167dc416562c582963441b6eb12f6c259664c6aacd0a1a8c9c4591576436c8623d36e8cd333b5
EBUILD ismartgate-4.0.4.ebuild 874 BLAKE2B 49eea179f699533b227e25e9f1c358061f524e9d05e4f7f05058493dca8f0a7f8fbaad2bd93b8edaefd43d839d9980f27e96f6b56a769c3bb672ce5c0bd24293 SHA512 079021e168096d60712e872027a94bcf11dfdd5eb99b44cb6ac7a4e2264020f91f02de1f80eaa9a61bdbe5549af1c5e23be0dfc3a99c966b466bf76830a9a615
MISC metadata.xml 471 BLAKE2B 8fe9181b496829abed13b288978ce528f99806e09fa49f6387aaa8d86ac2171ccc24d71afa9a159913b9b8c4bccb843102d6f5bb3736b28d99e05c19311f40f3 SHA512 01b3f46d1a6b6f20b3be79023505c9e5c4968f7c070ef003e5b3745e09293dd53432cb697e4a8199aa597a8fe03bec0df69684a7163629bf57355fffc28a0693

View File

@ -0,0 +1,35 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="8"
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="iSmartGate and GogoGate2 API"
HOMEPAGE="https://github.com/bdraco/ismartgate https://pypi.org/project/ismartgate/"
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/dicttoxml-1.7.4[${PYTHON_USEDEP}]
>=dev-python/defusedxml-0.7.1[${PYTHON_USEDEP}]
>=dev-python/pycryptodome-3.9.8[${PYTHON_USEDEP}]
>=dev-python/httpx-0.18.0[${PYTHON_USEDEP}]"
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
}