add python-jose-3.1.0

This commit is contained in:
Andreas Billmeier 2020-04-12 12:15:21 +02:00
parent 477f1603d3
commit 0ef1b1b075
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 51 additions and 1 deletions

View File

@ -46,7 +46,9 @@
* update homeassistant-0.108.2
* bump homeassistant-0.108.3
* fix nabucasa deps
* update rsa-4.0-r2, fix deps
* add python-jose-3.1.0
2020-04-05 homeassistant-0.108.0_beta3
* add tesla-powerwall-0.1.4
* bump apprise-0.8.5

View File

@ -0,0 +1,3 @@
DIST python-jose-3.1.0.tar.gz 252877 BLAKE2B ce9d8c73c690033d7d101599daf7b6c90ec5381a02a025149ae0a9148a885b132a2ce2fc7d7cb83576c5135d0787fb997ebadc7844dadb336cc3cb147f32cc05 SHA512 e5bbae0b41ed843a2d350382135cbada4696e34be20afc8b3c00e82b4359c709f52f5e8438a8b9df0e37ff55b15436d56d017052cb3974919f2390693e581d09
EBUILD python-jose-3.1.0.ebuild 705 BLAKE2B 6d70000c0b4a062ee59f61fcc5659c1f3b100b50973e4482baa415d395e5fa61f58c8587ea32f0fadcc784050e18104c715c1da9b74b42d24e7388fee7e05de7 SHA512 4be5388855d64095002bfcad4086124d7e6b43746b7778e00d618a35c392a69ef3db904051039b857a30fc4f4f3eb050581a5da750fab392669385098031acf5
MISC metadata.xml 464 BLAKE2B a6486a13e6b5bbaf338e6dea502b360c2eea8eccaf198f887dc122bd8b90e89524f657932436017fa0f59095f2fd607e2807891d0c6214261fbdd73ed478ca80 SHA512 8c41d011f142a0aafd995e70b025f514425c55452b717bad917a3fbd081f7b8d0355d1a84ec3405690caf7c7fda13aca27e1c95e1a173b56e5b3392e0ab53279

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">python-jose</remote-id>
<maintainer status="unknown">
<email>mike.philip.davis@gmail.com</email>
<name>Michael Davis</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,30 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6,7,8} )
inherit distutils-r1
DESCRIPTION="JOSE implementation in Python"
HOMEPAGE="http://github.com/mpdavis/python-jose https://pypi.org/project/python-jose/"
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"
RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
DEPEND="${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
}