add jellyfin-apiclient-python

This commit is contained in:
Fredrik Eriksson 2022-06-18 10:42:41 +02:00
parent 56e6f55ea6
commit 1296d020cf
Signed by: feffe
GPG Key ID: 97FD478B50475788
2 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,2 @@
DIST jellyfin-apiclient-python-1.8.1.tar.gz 29019 BLAKE2B 60a666b132f3d94e57bf09f32184b260e1562206f78a4e9836cb5618d072a91d1461282340d6b8a1cc21e8495df26fd3daa1d7191f0a95ef5e49f9cecfe37964 SHA512 b858fda1d16cf5e4bd6b0fa814b4ae7a8e4dc841dad91b0568c526885910339e2fa2740ee88a55f680d4bfdc00b0f5dbe1c6b6ef5b144b28b44ee9f75abd3bd1
EBUILD jellyfin-apiclient-python-1.8.1.ebuild 730 BLAKE2B 159550e37fb5f0606542049bd36e67c6dde549668aabb2357e3aca81b87b562a9121be9ef859754d51a309ecc1aba221d06282893b4afd7761ad67c09ff7b55c SHA512 d0df4e909036fe2ed4ef0e1698a7873e2de5800deee79ec30f6e052b6eebd9ce1e91f57db496c12e85fae412cda3462e08b33defa409585f65d57bfba9ef49a3

View File

@ -0,0 +1,34 @@
# Copyright 2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{8,9,10,11} )
inherit distutils-r1
DESCRIPTION="python library for jellyfin"
HOMEPAGE="https://github.com/jellyfin/jellyfin-apiclient-python"
if [[ ${PV} == *9999 ]] ; then
EGIT_REPO_URI="https://github.com/jellyfin/jellyfin-apiclient-python"
inherit git-r3
KEYWORDS="~amd64"
else
SRC_URI="https://github.com/jellyfin/jellyfin-apiclient-python/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="amd64"
fi
LICENSE="GPL-3"
SLOT="0"
IUSE=""
DEPEND="
dev-python/requests
dev-python/urllib3
dev-python/websocket-client
dev-python/six
dev-python/certifi
"
RDEPEND="${DEPEND}"
BDEPEND=""