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: Mon, 11 Feb 2019 15:12:44
Message-Id: 1549897954.e1d5d19fb69fc10a808c1544476b3510359e5594.candrews@gentoo
1 commit: e1d5d19fb69fc10a808c1544476b3510359e5594
2 Author: Craig Andrews <candrews <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 11 15:10:53 2019 +0000
4 Commit: Craig Andrews <candrews <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 11 15:12:34 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1d5d19f
7
8 media-plugins/kodi-inputstream-rtmp: 2.0.5 version bump
9
10 Package-Manager: Portage-2.3.59, Repoman-2.3.12
11 Signed-off-by: Craig Andrews <candrews <AT> gentoo.org>
12
13 media-plugins/kodi-inputstream-rtmp/Manifest | 1 +
14 .../kodi-inputstream-rtmp-2.0.5.ebuild | 36 ++++++++++++++++++++++
15 2 files changed, 37 insertions(+)
16
17 diff --git a/media-plugins/kodi-inputstream-rtmp/Manifest b/media-plugins/kodi-inputstream-rtmp/Manifest
18 index 44ba817d9a4..e281879e16f 100644
19 --- a/media-plugins/kodi-inputstream-rtmp/Manifest
20 +++ b/media-plugins/kodi-inputstream-rtmp/Manifest
21 @@ -1,3 +1,4 @@
22 DIST kodi-inputstream-rtmp-1.0.4.tar.gz 7271 BLAKE2B c76b46fc1ba1bbe45084071ee0521b8f421a87886723abce3103867f8c542dbee364c9cb64a3e7237c59cfcc9afd910bb4ba5b749d5e1f6efa4ac215b1ced26d SHA512 659990b2cbe6e9119c650e151aaae0ccd33f8b9f5d6efd1436f4cb6c78beb51c8fae528b844278348066e1b10fe2a7fa6c05e32b54be82f5a750a5a14c8bd9d2
23 DIST kodi-inputstream-rtmp-1.0.5.tar.gz 7271 BLAKE2B dfc7a80684d0c872761baf4e8603b491b6530cb0e8a5aad782f18165cb15ec54aaf7557b877eab74c87a46d68481aefecde2f0b15fc748c5a7800593f9033a45 SHA512 7a58ec265586fc0ffc8b1021aa1529d171c8ea14202f80b443d51dbfbfd8f0424a2b5f94687d302a3681e2931ac268e89e8d2e82635ac5b792cc8c9bd8f020af
24 DIST kodi-inputstream-rtmp-2.0.4.tar.gz 18259 BLAKE2B 714090d52b1e46e79b88b34b3a400edb444668be2856eb92b61769ecec802be4a7fc1ab73380febbf0cb277b6a1758f2f4f81efb6d1c6c1d266691de6071f7cb SHA512 ac7a7f3f40f4c7d4ec176299ae0d8dd389f1e041d6633a65190e7e8a0a87e87142ebf4f80a36b7429524f7d1571ce5d1708ac753edae695b1d1d84de73e5d88f
25 +DIST kodi-inputstream-rtmp-2.0.5.tar.gz 18280 BLAKE2B ce906740bebaa33ffa813a94f8b73cc9640e9a7f08059d972c23dee5d811c57e33c43d7e41b690d693de86f238ff2c936f2375baae3db1b40033a539e6c0587a SHA512 178ecfedae24b2ca0b13de997861e89063eff929a6a1a2b0b6b3e32a45bddd238304466a9f1f52b6213db3faee93144ae77fc9c4045c3783780a50bc1ae11166
26
27 diff --git a/media-plugins/kodi-inputstream-rtmp/kodi-inputstream-rtmp-2.0.5.ebuild b/media-plugins/kodi-inputstream-rtmp/kodi-inputstream-rtmp-2.0.5.ebuild
28 new file mode 100644
29 index 00000000000..28f7ef29d68
30 --- /dev/null
31 +++ b/media-plugins/kodi-inputstream-rtmp/kodi-inputstream-rtmp-2.0.5.ebuild
32 @@ -0,0 +1,36 @@
33 +# Copyright 1999-2019 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=6
37 +
38 +inherit cmake-utils kodi-addon
39 +
40 +DESCRIPTION="Kodi's RTMP inputstream addon"
41 +HOMEPAGE="https://github.com/xbmc/inputstream.rtmp"
42 +SRC_URI=""
43 +
44 +case ${PV} in
45 +9999)
46 + SRC_URI=""
47 + EGIT_REPO_URI="https://github.com/xbmc/inputstream.rtmp.git"
48 + inherit git-r3
49 + ;;
50 +*)
51 + CODENAME="Leia"
52 + KEYWORDS="~amd64 ~x86"
53 + SRC_URI="https://github.com/xbmc/inputstream.rtmp/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz"
54 + S="${WORKDIR}/inputstream.rtmp-${PV}-${CODENAME}"
55 + ;;
56 +esac
57 +
58 +LICENSE="GPL-2"
59 +SLOT="0"
60 +IUSE=""
61 +
62 +DEPEND="
63 + =media-tv/kodi-18*
64 + media-video/rtmpdump
65 + "
66 +RDEPEND="
67 + ${DEPEND}
68 + "