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-inputstream-rtmp/
Date: Sat, 31 Oct 2020 20:27:50
Message-Id: 1604176057.1b16c26e2a38b1a6c854d181518bfdbad2856489.candrews@gentoo
1 commit: 1b16c26e2a38b1a6c854d181518bfdbad2856489
2 Author: Craig Andrews <candrews <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 31 20:23:21 2020 +0000
4 Commit: Craig Andrews <candrews <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 31 20:27:37 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b16c26e
7
8 media-plugins/kodi-inputstream-rtmp: 3.3.0 version bump
9
10 Package-Manager: Portage-3.0.8, Repoman-3.0.2
11 Signed-off-by: Craig Andrews <candrews <AT> gentoo.org>
12
13 media-plugins/kodi-inputstream-rtmp/Manifest | 1 +
14 .../kodi-inputstream-rtmp-3.3.0.ebuild | 45 ++++++++++++++++++++++
15 2 files changed, 46 insertions(+)
16
17 diff --git a/media-plugins/kodi-inputstream-rtmp/Manifest b/media-plugins/kodi-inputstream-rtmp/Manifest
18 index cb6746b37af..c292c9bf61a 100644
19 --- a/media-plugins/kodi-inputstream-rtmp/Manifest
20 +++ b/media-plugins/kodi-inputstream-rtmp/Manifest
21 @@ -1,2 +1,3 @@
22 DIST kodi-inputstream-rtmp-2.0.9.tar.gz 66408 BLAKE2B 466419ef7182c53ddbe358ffb9480f756b8ab7f1f8fe790bb7942ac1cbd14731e4ef2faa0c15d31652733fe49881cf7588a6e560e6f132b61da47d7a8e0e0367 SHA512 b38b45f6313bcf2827eabf80875840b8b24cf010e0f44c20241f8a20f438273020ebd34078562581c34c83f3c9109ec953ef1de819c85de2260f0377903fbd23
23 DIST kodi-inputstream-rtmp-3.1.1.tar.gz 75658 BLAKE2B 4a776d3e44326cfa8195ad75b49eecba08d4a6de6a43ea51ee31791556ed2a28536e77033d0c9833838be9a27b2a32dc5ac34c4e9ee92e7a9084b021afbd1100 SHA512 9509fe681c3e2699ebe18a3090bd31c32ccc2634ee0c3c5a686b380ce1d104ff7ec1620f6615495d26fb271164592c0cb4f287ef1852468edddfec9440773a53
24 +DIST kodi-inputstream-rtmp-3.3.0.tar.gz 76074 BLAKE2B d920235be127d67a73d3fe8b713459f1bc04491577d886352e0932fd13c638e694b322400c5d9512c0716aca7ef4ed5c3535a05472ea6fff5d0d5aeeebe34aeb SHA512 a981ecd904932ba372e7972137c78308f1fe6928286fead13ad692b41aed0303c7e95a1788984e69cad4984d4f36c1d875f98eeb4a0ed3608ca1c4f8335133cd
25
26 diff --git a/media-plugins/kodi-inputstream-rtmp/kodi-inputstream-rtmp-3.3.0.ebuild b/media-plugins/kodi-inputstream-rtmp/kodi-inputstream-rtmp-3.3.0.ebuild
27 new file mode 100644
28 index 00000000000..a0b89342cd1
29 --- /dev/null
30 +++ b/media-plugins/kodi-inputstream-rtmp/kodi-inputstream-rtmp-3.3.0.ebuild
31 @@ -0,0 +1,45 @@
32 +# Copyright 1999-2020 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +inherit kodi-addon
38 +
39 +DESCRIPTION="Kodi's RTMP inputstream addon"
40 +HOMEPAGE="https://github.com/xbmc/inputstream.rtmp"
41 +KODI_PLUGIN_NAME="inputstream.rtmp"
42 +
43 +case ${PV} in
44 +9999)
45 + SRC_URI=""
46 + EGIT_REPO_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}.git"
47 + EGIT_BRANCH="Matrix"
48 + inherit git-r3
49 + DEPEND="~media-tv/kodi-9999"
50 + ;;
51 +*)
52 + CODENAME="Matrix"
53 + KEYWORDS="~amd64 ~x86"
54 + SRC_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz"
55 + S="${WORKDIR}/${KODI_PLUGIN_NAME}-${PV}-${CODENAME}"
56 + DEPEND="=media-tv/kodi-19*:="
57 + ;;
58 +esac
59 +
60 +LICENSE="GPL-2+"
61 +SLOT="0"
62 +IUSE=""
63 +
64 +DEPEND+="
65 + media-video/rtmpdump[ssl]
66 + "
67 +
68 +RDEPEND="${DEPEND}"
69 +
70 +BDEPEND="virtual/pkgconfig"
71 +
72 +src_prepare() {
73 + if [ -d depends ]; then rm -rf depends || die; fi
74 +
75 + cmake_src_prepare
76 +}