add pkce-1.0.3

This commit is contained in:
2022-02-26 06:40:37 +01:00
committed by Andreas Billmeier
parent 740c6e40fa
commit 2cc70eb02e
3 changed files with 50 additions and 0 deletions

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 669 BLAKE2B 371dd34f926e5b2ab627b967c1e0a82b2cbc8c1d4576ac7b890018d000862395513e628bae4623565873eb8efaffd9fb2096c6a6c461950799952d81eca26b16 SHA512 5d9dd447f69cb6fd2b193392db060d001355f6bdde6b491a66d718c0d57f2b397840b832def3f937cc732b4cf4f32bd4d050c0f72a1c4c3ed3ac5da4440df666
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-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="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
}