add plexauth-0.0.4

This commit is contained in:
Andreas Billmeier 2019-10-02 00:26:33 +02:00
parent f57e598ca6
commit 8bb518b682
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 49 additions and 0 deletions

View File

@ -0,0 +1,3 @@
DIST plexauth-0.0.4.tar.gz 2446 BLAKE2B bff56a8b6822e502c56a67a64fefbfaf8a1f1faa5818eb6de0f4d71fdd7db8ef64f0c1f8b95697786d8fd0e2ef23f54eaae8b300b6cc8a1101f157ea7d3049f4 SHA512 9a00f4a44e6e11d4a558702a49493b276009b110b2468c6e8056e768d8b2773894e232570c77031ee8d957e454558fc645e96b3fc8158c71953511a18bcae5af
EBUILD plexauth-0.0.4.ebuild 765 BLAKE2B c0e200a67113c2aca8322629e6efa0ebcf030966699415d6f5b3f439664aaa7fe76fc7a0cd574c374e24502ff4a9d26724d4c74e574d08189c9c8dde9b4e1c9f SHA512 203d41b8cbe668670419a8e9af38740e4ba5115a00ba5ce62666cfa142f6f2d7f6bf86f081d5c5145617722dc8685326ff99ae997bb050faa5091d39f04e9763
MISC metadata.xml 475 BLAKE2B 9459dec0967e61c576bcf3fa6e637774d961fe66e5be991f054a2cd46e22bd3b8549a64f8fb34018956f7153cb83bfa620224b1f5bd2426c70f8bdff4ab8b866 SHA512 06f1b92b82e84d9b54a81f35d92e024ad8feaeae2f4605a5fb028de46f4382589caa8d4536b7d0989dd5178a638cf01f14da518cda04f5ab9dc32b7a33faac82

View File

@ -0,0 +1,16 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<herd>python</herd>
<upstream>
<remote-id type="pypi">plexauth</remote-id>
<maintainer status="unknown">
<email>jjlawren@users.noreply.github.com</email>
<name>Jason Lawrence</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,30 @@
# Copyright 1999-2019 Gentoo Authors Andreas Billmeier b (at) edevau.net
# Distributed under the terms of the GNU General Public License v3.0
EAPI="7"
PYTHON_COMPAT=( python3_{5,6,7} )
inherit distutils-r1
DESCRIPTION="Handles the authorization flow to obtain tokens from Plex.tv via external redirection."
HOMEPAGE="https://github.com/jjlawren/python-plexauth/ https://pypi.org/project/plexauth/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=""
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
}