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: Thu, 12 Sep 2019 03:43:12
Message-Id: 1568259707.91ac7d3c6e00c6e7aacad6c97b006df68ad921ae.vapier@gentoo
1 commit: 91ac7d3c6e00c6e7aacad6c97b006df68ad921ae
2 Author: Mike Frysinger <vapier <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 8 04:34:48 2019 +0000
4 Commit: Mike Frysinger <vapier <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 12 03:41:47 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91ac7d3c
7
8 dev-python/tvdb_api: version bump to 2.0
9
10 The current version of tvnamer fails with the 1.10 snapshot.
11
12 Signed-off-by: Mike Frysinger <vapier <AT> gentoo.org>
13
14 dev-python/tvdb_api/Manifest | 1 +
15 dev-python/tvdb_api/tvdb_api-2.0.ebuild | 19 +++++++++++++++++++
16 2 files changed, 20 insertions(+)
17
18 diff --git a/dev-python/tvdb_api/Manifest b/dev-python/tvdb_api/Manifest
19 index ada1d38c8d2..1088c8b71b8 100644
20 --- a/dev-python/tvdb_api/Manifest
21 +++ b/dev-python/tvdb_api/Manifest
22 @@ -1,2 +1,3 @@
23 DIST tvdb_api-1.10_pre20150406.tar.gz 33758 BLAKE2B 929b9e1326b5665eab29b9361fb25a107c91cb34b8226f071f5ed07490f1f2a305644a00ba5fcfda68e1357f50b7ed52cd842c806d8da3fb00e5094db55a09f8 SHA512 a62680a8e18fa5cb246c0916232aecd06dd5f7381e589690f8fedf5b85a9eac01331a858880f888c14ece53c888ab8d18e7dd65a6665639f5f6f6d335138469d
24 DIST tvdb_api-1.9.tar.gz 32429 BLAKE2B 41ffff7c76131db3ff37e35dec8356aec85ca1180927ea468e4f3ae0980df4fce317b0366dd39dd7a219d5078c3a77f0caa94ab359b71f6750ea8d1067bc1112 SHA512 6ce13f47275eb3f37897da1b9bfb2d101184e3797abeec965c170d9b007661c3e0745396bc93bf365d6a1552fb461a2fd7b33777b4a67e58281c8ac3efb788df
25 +DIST tvdb_api-2.0.tar.gz 32751 BLAKE2B 6228ea0d8e9e679b7a70d6357917537cf8a6e362010ff6d1a212d51919689c656f8dc5cf67c694ddf7b4e2fd5b2fc0674393036c5ac38d8254878559921fe39c SHA512 74b1e036c2c71bff9f3d04bbf670da4069f68152545b09882aeddb5d1ebc873956ed00e8e28f2bd77a72ff97ae5fda23f1cfedd91f87187c31917ee31df17f3b
26
27 diff --git a/dev-python/tvdb_api/tvdb_api-2.0.ebuild b/dev-python/tvdb_api/tvdb_api-2.0.ebuild
28 new file mode 100644
29 index 00000000000..df8357e712a
30 --- /dev/null
31 +++ b/dev-python/tvdb_api/tvdb_api-2.0.ebuild
32 @@ -0,0 +1,19 @@
33 +# Copyright 1999-2019 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI="6"
37 +
38 +PYTHON_COMPAT=( python{2_7,3_5,3_6} )
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="Python interface to thetvdb.com API"
42 +HOMEPAGE="https://github.com/dbr/tvdb_api"
43 +SRC_URI="mirror://pypi/t/${PN}/${P}.tar.gz"
44 +
45 +LICENSE="public-domain"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~x86"
48 +IUSE=""
49 +
50 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
51 +RDEPEND="dev-python/requests-cache[${PYTHON_USEDEP}]"