Gentoo Archives: gentoo-commits

From: Mike Frysinger <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/tvdb_api/
Date: Tue, 05 May 2020 20:58:10
Message-Id: 1588712078.d2a33cbab3ae69ed9537ab43542a927dd470f1e9.vapier@gentoo
1 commit: d2a33cbab3ae69ed9537ab43542a927dd470f1e9
2 Author: Mike Frysinger <vapier <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 5 20:54:11 2020 +0000
4 Commit: Mike Frysinger <vapier <AT> gentoo <DOT> org>
5 CommitDate: Tue May 5 20:54:38 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2a33cba
7
8 dev-python/tvdb_api: add py3.7 & py3.8 & EAPI=7
9
10 Fixes: https://bugs.gentoo.org/719596
11 Signed-off-by: Mike Frysinger <vapier <AT> gentoo.org>
12
13 dev-python/tvdb_api/tvdb_api-2.0-r1.ebuild | 19 +++++++++++++++++++
14 1 file changed, 19 insertions(+)
15
16 diff --git a/dev-python/tvdb_api/tvdb_api-2.0-r1.ebuild b/dev-python/tvdb_api/tvdb_api-2.0-r1.ebuild
17 new file mode 100644
18 index 00000000000..4b2690e43f5
19 --- /dev/null
20 +++ b/dev-python/tvdb_api/tvdb_api-2.0-r1.ebuild
21 @@ -0,0 +1,19 @@
22 +# Copyright 1999-2020 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI="7"
26 +
27 +PYTHON_COMPAT=( python3_{6,7,8} )
28 +inherit distutils-r1
29 +
30 +DESCRIPTION="Python interface to thetvdb.com API"
31 +HOMEPAGE="https://github.com/dbr/tvdb_api"
32 +SRC_URI="mirror://pypi/t/${PN}/${P}.tar.gz"
33 +
34 +LICENSE="public-domain"
35 +SLOT="0"
36 +KEYWORDS="~amd64 ~x86"
37 +IUSE=""
38 +
39 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
40 +RDEPEND="dev-python/requests-cache[${PYTHON_USEDEP}]"