From: "Craig Andrews" <candrews@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-plugins/kodi-pvr-iptvsimple/
Date: Tue, 6 Oct 2020 14:21:12 +0000 (UTC) [thread overview]
Message-ID: <1601994067.707d5df59f715839977f75a2deed0d97c6f3d32d.candrews@gentoo> (raw)
commit: 707d5df59f715839977f75a2deed0d97c6f3d32d
Author: Craig Andrews <candrews <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 6 14:18:39 2020 +0000
Commit: Craig Andrews <candrews <AT> gentoo <DOT> org>
CommitDate: Tue Oct 6 14:21:07 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=707d5df5
media-plugins/kodi-pvr-iptvsimple: 6.4.0 version bump
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Craig Andrews <candrews <AT> gentoo.org>
media-plugins/kodi-pvr-iptvsimple/Manifest | 1 +
.../kodi-pvr-iptvsimple-6.4.0.ebuild | 43 ++++++++++++++++++++++
2 files changed, 44 insertions(+)
diff --git a/media-plugins/kodi-pvr-iptvsimple/Manifest b/media-plugins/kodi-pvr-iptvsimple/Manifest
index ebeb5a68767..feafbaa5f1d 100644
--- a/media-plugins/kodi-pvr-iptvsimple/Manifest
+++ b/media-plugins/kodi-pvr-iptvsimple/Manifest
@@ -3,3 +3,4 @@ DIST kodi-pvr-iptvsimple-6.2.4.tar.gz 178392 BLAKE2B 5cb96bc2c13c429486c596aa5ee
DIST kodi-pvr-iptvsimple-6.3.0.tar.gz 178520 BLAKE2B 9536d15145f009a950d21537d6fe3659957589b38872f174ae26088f6c16eef3765485c3c6e9f6d36ad2a1d2c03bffdb983222f5d4878751f567e8c6eaa41302 SHA512 ffbae476606f1e2c286da69ece731c0e8894d1e50c8faba9f493951d1526ae73db3a4a00fe5b2f868f90416fd971321a130e251ac39a40f15d5515915f24cad4
DIST kodi-pvr-iptvsimple-6.3.1.tar.gz 178767 BLAKE2B 9ce62b099bb1b5bd8038b0b638a7673c8498a128d9901c17263edb17ee6482ad83eb4bd8acd4144eaf8b694e72bc2eecc4cefd3675de82177f185aca18403dfe SHA512 586f404c43e496ee7a12c84ed6f5ae9f373b1197be24b9d34df0c1c226961d0da5642b707f8f4bcf2ca9a5b38a3d5f6a8a17d31173af4e2c8ee6a0582707862d
DIST kodi-pvr-iptvsimple-6.3.2.tar.gz 192436 BLAKE2B 8d793ed6802a93457f1d1f2c1f08604c1f7e0387f29358ce3f97adf70ae5c05835dfd43bf59787970b8087ee948099d46b2d32ef5a76a04b9e91cfd048f745ea SHA512 20a44e24403575493d3afeb76cf376dfcd31a9f6dbc2e64e43ccc4a007cef517af1287d5b6985d925d523b926642cb79586e296707dd6ada891edf29523bf61c
+DIST kodi-pvr-iptvsimple-6.4.0.tar.gz 179020 BLAKE2B b4dbabc152cdea4c3768a6d74e1d67e2e1686ccc161fef40f25872e58ee07b66f732db1df48a1947103075b9828f11484a0961ede766806f0a27d2271fbc6a66 SHA512 b9a52244ef502c62127658903dddd0c391c5acae34999dd57a4a42fc4ce4d138b96dcd6f485eb08ef346a6d7e173175e5d7954feb8928fb8df097fb1ecbce051
diff --git a/media-plugins/kodi-pvr-iptvsimple/kodi-pvr-iptvsimple-6.4.0.ebuild b/media-plugins/kodi-pvr-iptvsimple/kodi-pvr-iptvsimple-6.4.0.ebuild
new file mode 100644
index 00000000000..d29c62c10d9
--- /dev/null
+++ b/media-plugins/kodi-pvr-iptvsimple/kodi-pvr-iptvsimple-6.4.0.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake kodi-addon
+
+DESCRIPTION="Kodi's IPTVSimple client addon"
+HOMEPAGE="https://github.com/kodi-pvr/pvr.iptvsimple"
+SRC_URI=""
+
+case ${PV} in
+9999)
+ SRC_URI=""
+ EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.iptvsimple.git"
+ inherit git-r3
+ ;;
+*)
+ CODENAME="Matrix"
+ KEYWORDS="~amd64 ~x86"
+ SRC_URI="https://github.com/kodi-pvr/pvr.iptvsimple/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz"
+ S="${WORKDIR}/pvr.iptvsimple-${PV}-${CODENAME}"
+ ;;
+esac
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE=""
+
+DEPEND="
+ dev-libs/pugixml
+ =media-tv/kodi-19*
+ sys-libs/zlib
+ "
+
+RDEPEND="
+ ${DEPEND}
+ "
+
+src_prepare() {
+ [ -d depends ] && rm -rf depends || die
+ cmake_src_prepare
+}
next reply other threads:[~2020-10-06 14:21 UTC|newest]
Thread overview: 52+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-10-06 14:21 Craig Andrews [this message]
-- strict thread matches above, loose matches on Subject: below --
2023-05-14 10:32 [gentoo-commits] repo/gentoo:master commit in: media-plugins/kodi-pvr-iptvsimple/ Andreas Sturmlechner
2021-07-14 22:51 Craig Andrews
2021-07-12 13:08 Craig Andrews
2021-07-05 1:08 Craig Andrews
2021-07-03 19:51 Craig Andrews
2021-05-17 5:48 Craig Andrews
2021-05-17 5:48 Craig Andrews
2021-05-10 13:57 Craig Andrews
2021-05-10 13:57 Craig Andrews
2021-05-02 20:56 Craig Andrews
2021-05-02 20:56 Craig Andrews
2021-04-09 16:34 Craig Andrews
2021-04-09 16:34 Craig Andrews
2021-04-07 0:36 Craig Andrews
2021-03-25 20:52 Craig Andrews
2021-03-25 20:52 Craig Andrews
2021-03-10 15:27 Craig Andrews
2021-03-10 15:27 Craig Andrews
2021-03-01 14:07 Craig Andrews
2021-02-19 20:52 Craig Andrews
2021-02-19 20:52 Craig Andrews
2021-02-08 14:24 Craig Andrews
2021-02-08 14:24 Craig Andrews
2021-01-06 14:58 Craig Andrews
2020-12-07 1:29 Craig Andrews
2020-12-07 1:29 Craig Andrews
2020-10-31 20:27 Craig Andrews
2020-10-08 20:01 Craig Andrews
2020-10-01 13:28 Craig Andrews
2020-09-01 18:50 Craig Andrews
2020-08-10 14:36 Craig Andrews
2020-08-02 1:32 Craig Andrews
2020-03-01 2:35 Craig Andrews
2019-11-28 17:11 Craig Andrews
2019-11-22 18:47 Craig Andrews
2019-11-04 18:51 Craig Andrews
2019-10-21 19:35 Craig Andrews
2019-10-11 17:53 Craig Andrews
2019-09-23 14:15 Craig Andrews
2019-09-06 20:12 Craig Andrews
2019-09-04 18:59 Craig Andrews
2019-09-04 18:59 Craig Andrews
2019-08-24 14:59 Craig Andrews
2019-08-20 0:16 Craig Andrews
2019-06-15 21:42 Craig Andrews
2019-01-15 14:42 Craig Andrews
2017-08-21 14:55 Craig Andrews
2017-07-30 10:10 Michał Górny
2017-05-24 20:13 Michał Górny
2017-02-01 22:16 David Seifert
2017-01-27 18:43 David Seifert
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1601994067.707d5df59f715839977f75a2deed0d97c6f3d32d.candrews@gentoo \
--to=candrews@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox