Gentoo Archives: gentoo-commits

From: "Jörg Bornkessel" <hd_brummy@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-plugins/vdr-satip/
Date: Wed, 25 Dec 2019 18:53:58
Message-Id: 1577300003.1e00c132d8777c97b9d31e725f3ed4cdfe1bfe0b.hd_brummy@gentoo
1 commit: 1e00c132d8777c97b9d31e725f3ed4cdfe1bfe0b
2 Author: Joerg Bornkessel <hd_brummy <AT> gentoo <DOT> org>
3 AuthorDate: Wed Dec 25 18:32:55 2019 +0000
4 Commit: Jörg Bornkessel <hd_brummy <AT> gentoo <DOT> org>
5 CommitDate: Wed Dec 25 18:53:23 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e00c132
7
8 media-plugins/vdr-satip: version bump
9
10 this version needs
11 >=media-plugins/vdr-2.4
12
13 Package-Manager: Portage-2.3.82, Repoman-2.3.18
14 Signed-off-by: Joerg Bornkessel <hd_brummy <AT> gentoo.org>
15
16 media-plugins/vdr-satip/Manifest | 1 +
17 .../vdr-satip/vdr-satip-2.4.1_p20191027.ebuild | 36 ++++++++++++++++++++++
18 2 files changed, 37 insertions(+)
19
20 diff --git a/media-plugins/vdr-satip/Manifest b/media-plugins/vdr-satip/Manifest
21 index b00a76e8edc..e4b6ece6b3e 100644
22 --- a/media-plugins/vdr-satip/Manifest
23 +++ b/media-plugins/vdr-satip/Manifest
24 @@ -1,2 +1,3 @@
25 DIST vdr-satip-2.2.3.tgz 62722 BLAKE2B 408fe520b4210fa24667d4244560d5132260ce08067d482a50b12446c42c0c34fd922b3429d00c4e3550a7b1dc1d21bfac534cae9de478594751b9cf0f558d52 SHA512 451606b52831c009aaec894f0547c59a9447279d7f96a4b2291614eab09a3539849abcb6974b7c2c4b34e7b43a2f9c782ab1ea6bfd4e35f9747349065fb6a5e7
26 DIST vdr-satip-2.2.5.tgz 74669 BLAKE2B e586297f0f0c1ca776d4c9f83b46da7f7afe82b80ac7e79ec2da7107c793f5c8a5092590ad23030a435e2d034b084373b9b069bac6ef81822723d33ff6c7fab2 SHA512 3f8ab1d9e84843e71bc6fc8f712d178fa3d304d0959ec977de1b11829e27b575feb78735c6770b15d4dfb8f4fce933aed7df07a6d9ba0b20e937aacd3c643a21
27 +DIST vdr-satip-2.4.1_p20191027.tar.gz 74205 BLAKE2B 06d847bdec0aa996b5a12df8effcbed1f6cb508664aceda67f6ca415b84646e2f116e329068abd735403c145971146335a004d43e38ede133db03e37ba5b3117 SHA512 087b767583393608995141bf15f02793fb48ee448fe5c3becad34e2e84a4dc8391feb00c1b68fd37377837bd4468f766a8a389e720be375bd2cb6847277e887c
28
29 diff --git a/media-plugins/vdr-satip/vdr-satip-2.4.1_p20191027.ebuild b/media-plugins/vdr-satip/vdr-satip-2.4.1_p20191027.ebuild
30 new file mode 100644
31 index 00000000000..cd4da2275d4
32 --- /dev/null
33 +++ b/media-plugins/vdr-satip/vdr-satip-2.4.1_p20191027.ebuild
34 @@ -0,0 +1,36 @@
35 +# Copyright 2019 Gentoo Authors
36 +# Distributed under the terms of the GNU General Public License v2
37 +
38 +EAPI=7
39 +
40 +inherit vdr-plugin-2
41 +
42 +GIT_COMMIT="19e3057f34d9c097c8c6bad30188b14d80b7a242"
43 +MY_P="vdr-plugin-satip-${GIT_COMMIT}"
44 +
45 +DESCRIPTION="VDR Plugin: integrates SAT>IP network devices seamlessly into VDR"
46 +HOMEPAGE="http://www.saunalahti.fi/~rahrenbe/vdr/satip/"
47 +SRC_URI="https://github.com/rofafor/vdr-plugin-satip/archive/${GIT_COMMIT}.tar.gz -> ${P}.tar.gz"
48 +
49 +LICENSE="GPL-2"
50 +SLOT="0"
51 +KEYWORDS="~amd64 ~arm ~x86"
52 +
53 +DEPEND=">=media-video/vdr-2.4.0
54 + >=net-misc/curl-7.36
55 + || ( dev-libs/pugixml
56 + dev-libs/tinyxml )"
57 +RDEPEND="${DEPEND}"
58 +
59 +QA_FLAGS_IGNORED="
60 + usr/lib/vdr/plugins/libvdr-satip.*
61 + usr/lib64/vdr/plugins/libvdr-satip.*"
62 +S="${WORKDIR}/${MY_P}"
63 +
64 +src_prepare() {
65 + vdr-plugin-2_src_prepare
66 +
67 + if has_version "dev-libs/tinyxml" ; then
68 + sed -e "s:#SATIP_USE_TINYXML:SATIP_USE_TINYXML:" -i Makefile || die "sed failed"
69 + fi
70 +}