Gentoo Archives: gentoo-commits

From: Craig Andrews <candrews@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-plugins/kodi-pvr-iptvsimple/
Date: Mon, 01 Mar 2021 14:07:37
Message-Id: 1614607649.5a432d283f951a61ec07a995c9c03e4e16cab694.candrews@gentoo
1 commit: 5a432d283f951a61ec07a995c9c03e4e16cab694
2 Author: Craig Andrews <candrews <AT> gentoo <DOT> org>
3 AuthorDate: Mon Mar 1 14:07:03 2021 +0000
4 Commit: Craig Andrews <candrews <AT> gentoo <DOT> org>
5 CommitDate: Mon Mar 1 14:07:29 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a432d28
7
8 media-plugins/kodi-pvr-iptvsimple: 7.4.3 version bump
9
10 Package-Manager: Portage-3.0.16, Repoman-3.0.2
11 Signed-off-by: Craig Andrews <candrews <AT> gentoo.org>
12
13 media-plugins/kodi-pvr-iptvsimple/Manifest | 1 +
14 .../kodi-pvr-iptvsimple-7.4.3.ebuild | 43 ++++++++++++++++++++++
15 2 files changed, 44 insertions(+)
16
17 diff --git a/media-plugins/kodi-pvr-iptvsimple/Manifest b/media-plugins/kodi-pvr-iptvsimple/Manifest
18 index 0de537e6ec4..6a360729ab1 100644
19 --- a/media-plugins/kodi-pvr-iptvsimple/Manifest
20 +++ b/media-plugins/kodi-pvr-iptvsimple/Manifest
21 @@ -1 +1,2 @@
22 DIST kodi-pvr-iptvsimple-7.4.2.tar.gz 188056 BLAKE2B 84bbfe3e7623bdfa4b2e0977f1b19a2adca326ec5255854a34ba7d1b9c696ec4720d429d41acd1ceb59160b7a0e688d1eac6d4647349f9d06806b4da150ff796 SHA512 b153b14e70ece8d39a0de408776267d5c8e2e2e2c6981264a5753a3bb6ed98d7b1b2845e1ee5931482797b0c189603885e6838587ea9e2ef8d28085a1203f0c9
23 +DIST kodi-pvr-iptvsimple-7.4.3.tar.gz 188136 BLAKE2B 3579f25cc76ab1f1e65ff9826fb67c262534aa0f6e97ea336641e64881f7892978cecda16a82417ccc8e00fb04a44276645920ebde6a376a72b464c5b3573e6a SHA512 53a802aee16d85f2ad0af90eb0897d80b9311eb01ef32229385d1b4fdddb40bb3b96ed28f1745764bd5f2bbb632f787a1faaa4581b46207f5d6c3055f72df1fe
24
25 diff --git a/media-plugins/kodi-pvr-iptvsimple/kodi-pvr-iptvsimple-7.4.3.ebuild b/media-plugins/kodi-pvr-iptvsimple/kodi-pvr-iptvsimple-7.4.3.ebuild
26 new file mode 100644
27 index 00000000000..36d5b715c65
28 --- /dev/null
29 +++ b/media-plugins/kodi-pvr-iptvsimple/kodi-pvr-iptvsimple-7.4.3.ebuild
30 @@ -0,0 +1,43 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +inherit cmake kodi-addon
37 +
38 +DESCRIPTION="Kodi's IPTVSimple client addon"
39 +HOMEPAGE="https://github.com/kodi-pvr/pvr.iptvsimple"
40 +SRC_URI=""
41 +
42 +case ${PV} in
43 +9999)
44 + SRC_URI=""
45 + EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.iptvsimple.git"
46 + inherit git-r3
47 + ;;
48 +*)
49 + CODENAME="Matrix"
50 + KEYWORDS="~amd64 ~x86"
51 + SRC_URI="https://github.com/kodi-pvr/pvr.iptvsimple/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz"
52 + S="${WORKDIR}/pvr.iptvsimple-${PV}-${CODENAME}"
53 + ;;
54 +esac
55 +
56 +LICENSE="GPL-2"
57 +SLOT="0"
58 +IUSE=""
59 +
60 +DEPEND="
61 + dev-libs/pugixml
62 + =media-tv/kodi-19*
63 + sys-libs/zlib
64 + "
65 +
66 +RDEPEND="
67 + ${DEPEND}
68 + "
69 +
70 +src_prepare() {
71 + [ -d depends ] && rm -rf depends || die
72 + cmake_src_prepare
73 +}