Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-tv/mythtv/
Date: Sat, 01 Aug 2020 22:24:18
Message-Id: 1596320621.45f60ac4104b48773c19005388b50d60a56415e7.bman@gentoo
1 commit: 45f60ac4104b48773c19005388b50d60a56415e7
2 Author: Wilson Michaels <thebitpit <AT> earthlink <DOT> net>
3 AuthorDate: Sat Jul 25 18:15:31 2020 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 1 22:23:41 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45f60ac4
7
8 media-tv/mythtv: add runtime depend, remove old revision
9
10 Closes: https://bugs.gentoo.org/733470
11 Package-Manager: Portage-2.3.103, Repoman-2.3.23
12 Signed-off-by: Wilson Michaels <thebitpit <AT> earthlink.net>
13 Closes: https://github.com/gentoo/gentoo/pull/16817
14 Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
15
16 media-tv/mythtv/{mythtv-31.0.ebuild => mythtv-31.0-r2.ebuild} | 6 ++++--
17 1 file changed, 4 insertions(+), 2 deletions(-)
18
19 diff --git a/media-tv/mythtv/mythtv-31.0.ebuild b/media-tv/mythtv/mythtv-31.0-r2.ebuild
20 similarity index 98%
21 rename from media-tv/mythtv/mythtv-31.0.ebuild
22 rename to media-tv/mythtv/mythtv-31.0-r2.ebuild
23 index 9d3ead365ea..8c2640774db 100644
24 --- a/media-tv/mythtv/mythtv-31.0.ebuild
25 +++ b/media-tv/mythtv/mythtv-31.0-r2.ebuild
26 @@ -137,6 +137,7 @@ DEPEND="
27 dev-python/future[${PYTHON_USEDEP}]
28 dev-python/lxml[${PYTHON_USEDEP}]
29 dev-python/mysqlclient[${PYTHON_USEDEP}]
30 + dev-python/requests-cache[${PYTHON_USEDEP}]
31 dev-python/simplejson[${PYTHON_USEDEP}]
32 ')
33 )
34 @@ -146,6 +147,7 @@ python_check_deps() {
35 has_version "dev-python/future[${PYTHON_USEDEP}]" &&
36 has_version "dev-python/lxml[${PYTHON_USEDEP}]" &&
37 has_version "dev-python/mysqlclient[${PYTHON_USEDEP}]" &&
38 + has_version "dev-python/requests-cache[${PYTHON_USEDEP}]" &&
39 has_version "dev-python/simplejson[${PYTHON_USEDEP}]"
40 }
41
42 @@ -385,11 +387,11 @@ src_install() {
43
44 insinto /usr/share/mythtv/contrib
45 # Ensure we don't install scripts needing the perl bindings (bug #516968) Finding none is OK.
46 - if use perl; then
47 + if ! use perl; then
48 find contrib/ -name '*.pl' -exec rm {} \;
49 fi
50 # Ensure we don't install scripts needing the python bindings (bug #516968) Finding none is OK.
51 - if use python; then
52 + if ! use python; then
53 find contrib/ -name '*.py' -exec rm {} \;
54 fi
55 doins -r contrib/*