add pkce-1.0.3

This commit is contained in:
Andreas Billmeier 2021-02-13 14:57:41 +01:00 committed by Andreas Billmeier
parent 047082aa5c
commit 38472c8003
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 51 additions and 0 deletions

View File

@ -19,6 +19,7 @@
* bump HATasmota-0.2.8
* bump aiolip-1.1.4
* bump tesla-powerwall-0.3.5
* add pkce-1.0.3
2021-02-09
* bump pychromecast-8.0.0

3
dev-python/pkce/Manifest Normal file
View File

@ -0,0 +1,3 @@
DIST pkce-1.0.3.tar.gz 2757 BLAKE2B 2bc9690164c1f7b1e007374bcab62c1b0360b36f2da4532b71381fecea0210f8c52df2d4a18081716a0d738033512664bea87a9dc205bac81b5e3fb23db6a9e0 SHA512 a153ce4aa0e41f31145810bb58fcf23e00cc1e58d0a0299185c84febc4417d88b69b80417eccb2beb2c633e15f9fdb1eed3ddedbf2c99f7fc61e134e4ca0950c
EBUILD pkce-1.0.3.ebuild 670 BLAKE2B 7779826b65d0a0a35e61946cba1d5094f97f7c9a82d81d972ccc2ba20d0fa99d81a98fec9cf30f1fa450afb164aeac469977f3c2544ac552986a54def774f3c5 SHA512 0935e01d98e35730011e435cca8d45702fc2bcfd11456ed79b6a45fed21ffad77f977d21f0c3d798c12422de3552d9eae2f79e790ab3178e8f44b6f18113ed59
MISC metadata.xml 455 BLAKE2B 78da88f403d4563cee499dba3ce619e89d730223bae7e2af8d5b5d9f2a8404979e59fc12df037a8366dd22a11c59232b03154210b57f0103ad76decbcc4d4a75 SHA512 e303d9a110fe2002f613351e5654d2924d22e076b684f09c1197e5ba3abc1f8e3e6df9458b7f560ad0894e13ede38986a108d074eaf33ebae632e73a94cb896d

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">pkce</remote-id>
<maintainer status="unknown">
<email>despres.romeo@gmail.com</email>
<name>Roméo Després</name>
</maintainer>
</upstream>
</pkgmetadata>

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_{7..9} )
inherit distutils-r1
DESCRIPTION="PKCE Pyhton generator."
HOMEPAGE="https://github.com/RomeoDespres/pkce https://pypi.org/project/pkce/"
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
}