From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CB7A7138350 for ; Tue, 5 May 2020 20:58:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 977FFE0C26; Tue, 5 May 2020 20:58:08 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 815D7E0C26 for ; Tue, 5 May 2020 20:58:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 866B134F5C1 for ; Tue, 5 May 2020 20:58:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0EF651FE for ; Tue, 5 May 2020 20:58:05 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1588712078.d2a33cbab3ae69ed9537ab43542a927dd470f1e9.vapier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/tvdb_api/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/tvdb_api/tvdb_api-2.0-r1.ebuild X-VCS-Directories: dev-python/tvdb_api/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: d2a33cbab3ae69ed9537ab43542a927dd470f1e9 X-VCS-Branch: master Date: Tue, 5 May 2020 20:58:05 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c644ca12-201d-4dfe-b931-5140b71a8a1e X-Archives-Hash: aa9327bac87f7a9b172058aa679e54ac commit: d2a33cbab3ae69ed9537ab43542a927dd470f1e9 Author: Mike Frysinger gentoo org> AuthorDate: Tue May 5 20:54:11 2020 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Tue May 5 20:54:38 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2a33cba dev-python/tvdb_api: add py3.7 & py3.8 & EAPI=7 Fixes: https://bugs.gentoo.org/719596 Signed-off-by: Mike Frysinger gentoo.org> dev-python/tvdb_api/tvdb_api-2.0-r1.ebuild | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/dev-python/tvdb_api/tvdb_api-2.0-r1.ebuild b/dev-python/tvdb_api/tvdb_api-2.0-r1.ebuild new file mode 100644 index 00000000000..4b2690e43f5 --- /dev/null +++ b/dev-python/tvdb_api/tvdb_api-2.0-r1.ebuild @@ -0,0 +1,19 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +PYTHON_COMPAT=( python3_{6,7,8} ) +inherit distutils-r1 + +DESCRIPTION="Python interface to thetvdb.com API" +HOMEPAGE="https://github.com/dbr/tvdb_api" +SRC_URI="mirror://pypi/t/${PN}/${P}.tar.gz" + +LICENSE="public-domain" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" +RDEPEND="dev-python/requests-cache[${PYTHON_USEDEP}]"