* [gentoo-commits] repo/gentoo:master commit in: media-plugins/vdr-streamdev/
@ 2016-05-30 20:45 Joerg Bornkessel
0 siblings, 0 replies; 12+ messages in thread
From: Joerg Bornkessel @ 2016-05-30 20:45 UTC (permalink / raw
To: gentoo-commits
commit: 13f1e8d632e14e62ecbcfb2c75aced3459a08096
Author: Joerg Bornkessel <hd_brummy <AT> gentoo <DOT> org>
AuthorDate: Mon May 30 20:44:50 2016 +0000
Commit: Joerg Bornkessel <hd_brummy <AT> gentoo <DOT> org>
CommitDate: Mon May 30 20:44:50 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13f1e8d6
media-plugins/vdr-streamdev: new snapshot, support >=vdr-2.3.1
Package-Manager: portage-2.3.0_rc1
media-plugins/vdr-streamdev/Manifest | 1 +
.../vdr-streamdev-0.6.1_p20160320.ebuild | 99 ++++++++++++++++++++++
2 files changed, 100 insertions(+)
diff --git a/media-plugins/vdr-streamdev/Manifest b/media-plugins/vdr-streamdev/Manifest
index 5ec1b4a..778b54e 100644
--- a/media-plugins/vdr-streamdev/Manifest
+++ b/media-plugins/vdr-streamdev/Manifest
@@ -1 +1,2 @@
+DIST vdr-plugin-streamdev-674bb5b331240de3ba2a8beb63a1276003e64e3e.tar.bz2 163096 SHA256 5a9fa7ba82fe40b0380e76c94814c662cc82486cd6097710a9c8857307ac4970 SHA512 f9439a4c3dd453869f9cf3171ddb5e34c2a625d7873cb1648138e4b94715ec3acd8d3db69df5ae5bf1bc21f0401f9b12a126395b0f2696c129ee7725c1715902 WHIRLPOOL 30269bc0938ef5b6ac85e85bad85f34e9c6d8e1a704ab1bf18d156bb2d5fa4b7b24c1126c95d12e94946981e5274e137a347d3faa04e915a3a8015ca16e98894
DIST vdr-streamdev-0.6.1.tgz 186546 SHA256 b3ea814a572eb17699df4ae2a90a1ad6c22c0a68a8235e7f7ccf299d1ed43955 SHA512 bbe6231bd8e69e299c8d94173e7ed4b1f49e5b17b7bcadf2d1e827b5e8dd57c6b975c8c409fd44f252110099b3565a7d4d8c2f7d03636fc2d2e3580d0050d971 WHIRLPOOL e226ddbec680bb43857f96ae1553b71d218f87593cf179c65919444c19aa26392e42ef9dbe8607ddffc81ce781cb5a8b60123650a14be7c0997bc605b066c9f7
diff --git a/media-plugins/vdr-streamdev/vdr-streamdev-0.6.1_p20160320.ebuild b/media-plugins/vdr-streamdev/vdr-streamdev-0.6.1_p20160320.ebuild
new file mode 100644
index 0000000..3ef2bc7
--- /dev/null
+++ b/media-plugins/vdr-streamdev/vdr-streamdev-0.6.1_p20160320.ebuild
@@ -0,0 +1,99 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit vdr-plugin-2
+
+GIT_VERSION="674bb5b331240de3ba2a8beb63a1276003e64e3e"
+
+DESCRIPTION="VDR Plugin: Client/Server and http streaming plugin"
+HOMEPAGE="http://projects.vdr-developer.org/projects/plg-streamdev"
+SRC_URI="http://projects.vdr-developer.org/git/vdr-plugin-streamdev.git/snapshot/vdr-plugin-streamdev-${GIT_VERSION}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="client +server"
+
+DEPEND=">=media-video/vdr-1.7.25"
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}/vdr-plugin-streamdev-${GIT_VERSION}"
+
+REQUIRED_USE="|| ( client server )"
+
+# vdr-plugin-2.eclass changes
+PO_SUBDIR="client server"
+
+src_prepare() {
+ # make detection in vdr-plugin-2.eclass for new Makefile handling happy
+ echo "# SOFILE" >> Makefile
+
+ # rm unneeded entry
+ sed -i Makefile -e "s:-I\$(VDRDIR)/include::"
+
+ vdr-plugin-2_src_prepare
+
+ for flag in client server; do
+ if ! use ${flag}; then
+ sed -i Makefile \
+ -e '/^.PHONY:/s/'${flag}'//' \
+ -e '/^.PHONY:/s/'install-${flag}'//' \
+ -e '/^all:/s/'${flag}'//' \
+ -e '/^install:/s/'install-${flag}'//'
+ fi
+ done
+
+ fix_vdr_libsi_include server/livestreamer.c
+}
+
+src_install() {
+ vdr-plugin-2_src_install
+
+ if use server; then
+ insinto /usr/share/vdr/streamdev
+ doins streamdev-server/externremux.sh
+
+ insinto /usr/share/vdr/rcscript
+ newins "${FILESDIR}"/rc-addon-0.6.0.sh plugin-streamdev-server.sh
+
+ insinto /etc/conf.d
+ newins "${FILESDIR}"/confd-0.6.0 vdr.streamdev-server
+
+ insinto /etc/vdr/plugins/streamdev-server
+ newins streamdev-server/streamdevhosts.conf streamdevhosts.conf
+ fowners vdr:vdr /etc/vdr -R
+ fi
+}
+
+pkg_preinst() {
+ has_version "<${CATEGORY}/${PN}-0.6.0"
+ previous_less_than_0_6_0=$?
+}
+
+pkg_postinst() {
+ vdr-plugin-2_pkg_postinst
+
+ if [[ -e "${ROOT}"/etc/vdr/plugins/streamdev/streamdevhosts.conf ]]; then
+ einfo "move config file to new config DIR ${ROOT}/etc/vdr/plugins/streamdev-server/"
+ mv "${ROOT}"/etc/vdr/plugins/streamdev/streamdevhosts.conf "${ROOT}"/etc/vdr/plugins/streamdev-server/streamdevhosts.conf
+ fi
+
+ if [[ $previous_less_than_0_6_0 = 0 ]]; then
+ einfo "The server-side setting \"Suspend behaviour\" has been dropped in 0.6.0 in favour"
+ einfo "of priority based precedence. A priority of 0 and above means that clients"
+ einfo "have precedence. A negative priority gives precedence to local live TV on the"
+ einfo "server. So if \"Suspend behaviour\" was previously set to \"Client may suspend\" or"
+ einfo "\"Never suspended\", you will have to configure a negative priority. If the"
+ einfo "\"Suspend behaviour\" was set to \"Always suspended\", the default values should do."
+ einfo ""
+ einfo "Configure the desired priorities for HTTP and IGMP Multicast streaming in the"
+ einfo "settings of streamdev-server. If you haven't updated all your streamdev-clients"
+ einfo "to at least 0.5.2, configure \"Legacy Client Priority\", too."
+ einfo ""
+ einfo "In streamdev-client, you should set \"Minimum Priority\" to -99. Adjust \"Live TV"
+ einfo "Priority\" if necessary."
+ fi
+}
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-plugins/vdr-streamdev/
@ 2016-06-19 21:30 Joerg Bornkessel
0 siblings, 0 replies; 12+ messages in thread
From: Joerg Bornkessel @ 2016-06-19 21:30 UTC (permalink / raw
To: gentoo-commits
commit: d8ffe65c5aad45ea802ad5c218676bbafef216e6
Author: Joerg Bornkessel <hd_brummy <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 19 21:28:06 2016 +0000
Commit: Joerg Bornkessel <hd_brummy <AT> gentoo <DOT> org>
CommitDate: Sun Jun 19 21:29:44 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8ffe65c
media-plugins/vdr-streamdev: fixed BadInsIntoDir
Package-Manager: portage-2.3.0_rc1
media-plugins/vdr-streamdev/vdr-streamdev-0.6.1.ebuild | 5 ++---
media-plugins/vdr-streamdev/vdr-streamdev-0.6.1_p20160320.ebuild | 3 +--
2 files changed, 3 insertions(+), 5 deletions(-)
diff --git a/media-plugins/vdr-streamdev/vdr-streamdev-0.6.1.ebuild b/media-plugins/vdr-streamdev/vdr-streamdev-0.6.1.ebuild
index ab17d28..ac29370 100644
--- a/media-plugins/vdr-streamdev/vdr-streamdev-0.6.1.ebuild
+++ b/media-plugins/vdr-streamdev/vdr-streamdev-0.6.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
@@ -57,8 +57,7 @@ src_install() {
insinto /usr/share/vdr/rcscript
newins "${FILESDIR}"/rc-addon-0.6.0.sh plugin-streamdev-server.sh
- insinto /etc/conf.d
- newins "${FILESDIR}"/confd-0.6.0 vdr.streamdev-server
+ newconfd "${FILESDIR}"/confd-0.6.0 vdr.streamdev-server
insinto /etc/vdr/plugins/streamdev-server
newins streamdev-server/streamdevhosts.conf streamdevhosts.conf
diff --git a/media-plugins/vdr-streamdev/vdr-streamdev-0.6.1_p20160320.ebuild b/media-plugins/vdr-streamdev/vdr-streamdev-0.6.1_p20160320.ebuild
index 3ef2bc7..2bd82d2 100644
--- a/media-plugins/vdr-streamdev/vdr-streamdev-0.6.1_p20160320.ebuild
+++ b/media-plugins/vdr-streamdev/vdr-streamdev-0.6.1_p20160320.ebuild
@@ -59,8 +59,7 @@ src_install() {
insinto /usr/share/vdr/rcscript
newins "${FILESDIR}"/rc-addon-0.6.0.sh plugin-streamdev-server.sh
- insinto /etc/conf.d
- newins "${FILESDIR}"/confd-0.6.0 vdr.streamdev-server
+ newconfd "${FILESDIR}"/confd-0.6.0 vdr.streamdev-server
insinto /etc/vdr/plugins/streamdev-server
newins streamdev-server/streamdevhosts.conf streamdevhosts.conf
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-plugins/vdr-streamdev/
@ 2016-09-28 21:41 Joerg Bornkessel
0 siblings, 0 replies; 12+ messages in thread
From: Joerg Bornkessel @ 2016-09-28 21:41 UTC (permalink / raw
To: gentoo-commits
commit: d7f50f70f09331ada2e6e76e265e26dec56d7ea3
Author: Joerg Bornkessel <hd_brummy <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 28 21:33:59 2016 +0000
Commit: Joerg Bornkessel <hd_brummy <AT> gentoo <DOT> org>
CommitDate: Wed Sep 28 21:40:49 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7f50f70
media-plugins/vdr-streamdev: keyword ~arm, armv7a-hardfloat tested
Package-Manager: portage-2.3.0
media-plugins/vdr-streamdev/vdr-streamdev-0.6.1_p20160320.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-plugins/vdr-streamdev/vdr-streamdev-0.6.1_p20160320.ebuild b/media-plugins/vdr-streamdev/vdr-streamdev-0.6.1_p20160320.ebuild
index 2bd82d2..440c0b3 100644
--- a/media-plugins/vdr-streamdev/vdr-streamdev-0.6.1_p20160320.ebuild
+++ b/media-plugins/vdr-streamdev/vdr-streamdev-0.6.1_p20160320.ebuild
@@ -14,7 +14,7 @@ SRC_URI="http://projects.vdr-developer.org/git/vdr-plugin-streamdev.git/snapshot
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm ~x86"
IUSE="client +server"
DEPEND=">=media-video/vdr-1.7.25"
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-plugins/vdr-streamdev/
@ 2018-03-26 19:18 Aaron Bauman
0 siblings, 0 replies; 12+ messages in thread
From: Aaron Bauman @ 2018-03-26 19:18 UTC (permalink / raw
To: gentoo-commits
commit: 7044d1cb686a5ae80410bcabf7eecfcd56af1831
Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Sun Mar 11 17:26:52 2018 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Mon Mar 26 19:15:42 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7044d1cb
media-plugins/vdr-streamdev: use HTTPS
media-plugins/vdr-streamdev/vdr-streamdev-0.6.1.ebuild | 4 ++--
media-plugins/vdr-streamdev/vdr-streamdev-0.6.1_p20160320.ebuild | 6 +++---
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/media-plugins/vdr-streamdev/vdr-streamdev-0.6.1.ebuild b/media-plugins/vdr-streamdev/vdr-streamdev-0.6.1.ebuild
index 9239b49b8bd..bdacdc2493d 100644
--- a/media-plugins/vdr-streamdev/vdr-streamdev-0.6.1.ebuild
+++ b/media-plugins/vdr-streamdev/vdr-streamdev-0.6.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
@@ -8,7 +8,7 @@ inherit vdr-plugin-2
VERSION="1580" # every bump, new version !
DESCRIPTION="VDR Plugin: Client/Server and http streaming plugin"
-HOMEPAGE="http://projects.vdr-developer.org/projects/plg-streamdev"
+HOMEPAGE="https://projects.vdr-developer.org/projects/plg-streamdev"
SRC_URI="mirror://vdr-developerorg/${VERSION}/${P}.tgz"
LICENSE="GPL-2"
diff --git a/media-plugins/vdr-streamdev/vdr-streamdev-0.6.1_p20160320.ebuild b/media-plugins/vdr-streamdev/vdr-streamdev-0.6.1_p20160320.ebuild
index 404cde672e9..8e69d583132 100644
--- a/media-plugins/vdr-streamdev/vdr-streamdev-0.6.1_p20160320.ebuild
+++ b/media-plugins/vdr-streamdev/vdr-streamdev-0.6.1_p20160320.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -8,8 +8,8 @@ inherit vdr-plugin-2
GIT_VERSION="674bb5b331240de3ba2a8beb63a1276003e64e3e"
DESCRIPTION="VDR Plugin: Client/Server and http streaming plugin"
-HOMEPAGE="http://projects.vdr-developer.org/projects/plg-streamdev"
-SRC_URI="http://projects.vdr-developer.org/git/vdr-plugin-streamdev.git/snapshot/vdr-plugin-streamdev-${GIT_VERSION}.tar.bz2"
+HOMEPAGE="https://projects.vdr-developer.org/projects/plg-streamdev"
+SRC_URI="https://projects.vdr-developer.org/git/vdr-plugin-streamdev.git/snapshot/vdr-plugin-streamdev-${GIT_VERSION}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-plugins/vdr-streamdev/
@ 2020-01-03 19:30 Jörg Bornkessel
0 siblings, 0 replies; 12+ messages in thread
From: Jörg Bornkessel @ 2020-01-03 19:30 UTC (permalink / raw
To: gentoo-commits
commit: 682af47f141f95e154b18ab76f92716455c40186
Author: Joerg Bornkessel <hd_brummy <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 3 19:29:21 2020 +0000
Commit: Jörg Bornkessel <hd_brummy <AT> gentoo <DOT> org>
CommitDate: Fri Jan 3 19:30:07 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=682af47f
media-plugins/vdr-streamdev: version bump, minor fixes
readdy for vdr-2.4
fixed prepare/install phase depend by use-flags
Suggested-by: Martin Dummer <martin.dummer <AT> gmx.net>
Closes: https://bugs.gentoo.org/703992
Package-Manager: Portage-2.3.83, Repoman-2.3.20
Signed-off-by: Joerg Bornkessel <hd_brummy <AT> gentoo.org>
media-plugins/vdr-streamdev/Manifest | 1 +
.../vdr-streamdev/vdr-streamdev-0.6.1.ebuild | 4 +-
.../vdr-streamdev-0.6.1_p20160320.ebuild | 4 +-
.../vdr-streamdev-0.6.1_p20170930.ebuild | 78 ++++++++++++++++++++++
4 files changed, 83 insertions(+), 4 deletions(-)
diff --git a/media-plugins/vdr-streamdev/Manifest b/media-plugins/vdr-streamdev/Manifest
index daf09a582a6..e6086445fdf 100644
--- a/media-plugins/vdr-streamdev/Manifest
+++ b/media-plugins/vdr-streamdev/Manifest
@@ -1,2 +1,3 @@
DIST vdr-plugin-streamdev-674bb5b331240de3ba2a8beb63a1276003e64e3e.tar.bz2 163096 BLAKE2B f451c435b24b69b0b09b5f2f041888ed3593ed7deee727a027672df9dd4d7c9183a68d40751ae5c12765037b4d5520f8ad824ead357b2a6597aaa15be7e573f5 SHA512 f9439a4c3dd453869f9cf3171ddb5e34c2a625d7873cb1648138e4b94715ec3acd8d3db69df5ae5bf1bc21f0401f9b12a126395b0f2696c129ee7725c1715902
+DIST vdr-plugin-streamdev-e2a9b979d3fb92967c7a6a8221e674eb7e55c813.tar.bz2 163403 BLAKE2B 4cacadc091ab8d28ccd4318eaf18aaef8f45e6caab86ef461d1b1047039ec921984ebad091d29420779982b5b37606defe5aa6c6828e8f28788886ba9839efea SHA512 e1eb69f62785178c06fa6700bd1b94ac12f2c58b1a7b8067312613279b59c5ef8157474e27863e8b2d0e47700f67fca7a61595c49809512e9e1efdb27c85eac8
DIST vdr-streamdev-0.6.1.tgz 186546 BLAKE2B 7d5d92c8ec92e7a57e8e335bdbdf5c91bcbfcdc3ea96fe8154af7015f33d6f2822cf35681a8018cad5b19776199d90870b747bc0a551f42a7b0eedc94f040188 SHA512 bbe6231bd8e69e299c8d94173e7ed4b1f49e5b17b7bcadf2d1e827b5e8dd57c6b975c8c409fd44f252110099b3565a7d4d8c2f7d03636fc2d2e3580d0050d971
diff --git a/media-plugins/vdr-streamdev/vdr-streamdev-0.6.1.ebuild b/media-plugins/vdr-streamdev/vdr-streamdev-0.6.1.ebuild
index bdacdc2493d..86fe10fda4b 100644
--- a/media-plugins/vdr-streamdev/vdr-streamdev-0.6.1.ebuild
+++ b/media-plugins/vdr-streamdev/vdr-streamdev-0.6.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
@@ -14,7 +14,7 @@ SRC_URI="mirror://vdr-developerorg/${VERSION}/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
-IUSE="client +server"
+IUSE="client server"
DEPEND=">=media-video/vdr-1.7.25"
RDEPEND="${DEPEND}"
diff --git a/media-plugins/vdr-streamdev/vdr-streamdev-0.6.1_p20160320.ebuild b/media-plugins/vdr-streamdev/vdr-streamdev-0.6.1_p20160320.ebuild
index 8e69d583132..855928673f0 100644
--- a/media-plugins/vdr-streamdev/vdr-streamdev-0.6.1_p20160320.ebuild
+++ b/media-plugins/vdr-streamdev/vdr-streamdev-0.6.1_p20160320.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -14,7 +14,7 @@ SRC_URI="https://projects.vdr-developer.org/git/vdr-plugin-streamdev.git/snapsho
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
-IUSE="client +server"
+IUSE="client server"
DEPEND=">=media-video/vdr-1.7.25"
RDEPEND="${DEPEND}"
diff --git a/media-plugins/vdr-streamdev/vdr-streamdev-0.6.1_p20170930.ebuild b/media-plugins/vdr-streamdev/vdr-streamdev-0.6.1_p20170930.ebuild
new file mode 100644
index 00000000000..b5c3b4f0a9c
--- /dev/null
+++ b/media-plugins/vdr-streamdev/vdr-streamdev-0.6.1_p20170930.ebuild
@@ -0,0 +1,78 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit vdr-plugin-2
+
+GIT_VERSION="e2a9b979d3fb92967c7a6a8221e674eb7e55c813"
+
+DESCRIPTION="VDR Plugin: Client/Server and http streaming plugin"
+HOMEPAGE="https://projects.vdr-developer.org/projects/plg-streamdev"
+SRC_URI="https://projects.vdr-developer.org/git/vdr-plugin-streamdev.git/snapshot/vdr-plugin-streamdev-${GIT_VERSION}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="client server"
+REQUIRED_USE="|| ( client server )"
+
+DEPEND=">=media-video/vdr-2.3"
+RDEPEND="${DEPEND}"
+
+QA_FLAGS_IGNORED="
+ usr/lib/vdr/plugins/libvdr-streamdev-.*
+ usr/lib64/vdr/plugins/libvdr-streamdev-.*"
+S="${WORKDIR}/vdr-plugin-streamdev-${GIT_VERSION}"
+
+# vdr-plugin-2.eclass changes
+PO_SUBDIR="client server"
+
+src_prepare() {
+ # make detection in vdr-plugin-2.eclass for new Makefile handling happy
+ echo "# SOFILE" >> Makefile || die "modify Makefile failed"
+
+ # rm unneeded entry
+ sed -i Makefile -e "s:-I\$(VDRDIR)/include::" || die "modify Makefile failed"
+
+ vdr-plugin-2_src_prepare
+
+ for flag in client server; do
+ if ! use ${flag}; then
+ sed -i Makefile \
+ -e '/^.PHONY:/s/'${flag}'//' \
+ -e '/^.PHONY:/s/'install-${flag}'//' \
+ -e '/^all:/s/'${flag}'//' \
+ -e '/^install:/s/'install-${flag}'//' || die "modify Makefile failed"
+ fi
+ done
+
+ fix_vdr_libsi_include server/livestreamer.c
+}
+
+src_install() {
+ vdr-plugin-2_src_install
+
+ if use server; then
+ insinto /usr/share/vdr/streamdev
+ doins streamdev-server/externremux.sh
+
+ insinto /usr/share/vdr/rcscript
+ newins "${FILESDIR}"/rc-addon-0.6.0.sh plugin-streamdev-server.sh
+
+ newconfd "${FILESDIR}"/confd-0.6.0 vdr.streamdev-server
+
+ insinto /etc/vdr/plugins/streamdev-server
+ newins streamdev-server/streamdevhosts.conf streamdevhosts.conf
+ fowners vdr:vdr /etc/vdr -R
+ fi
+}
+
+pkg_postinst() {
+ vdr-plugin-2_pkg_postinst
+
+ if [[ -e "${EROOT}"/etc/vdr/plugins/streamdev/streamdevhosts.conf ]]; then
+ einfo "move config file to new config DIR ${EROOT}/etc/vdr/plugins/streamdev-server/"
+ mv "${EROOT}"/etc/vdr/plugins/streamdev/streamdevhosts.conf "${EROOT}"/etc/vdr/plugins/streamdev-server/streamdevhosts.conf
+ fi
+}
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-plugins/vdr-streamdev/
@ 2021-07-17 14:07 Mikle Kolyada
0 siblings, 0 replies; 12+ messages in thread
From: Mikle Kolyada @ 2021-07-17 14:07 UTC (permalink / raw
To: gentoo-commits
commit: 7ea1d8e055c19559c6fb33c7733bd3524fc877be
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 17 14:07:05 2021 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sat Jul 17 14:07:05 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ea1d8e0
media-plugins/vdr-streamdev: Stabilize 0.6.1_p20170930 amd64, #794253
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
media-plugins/vdr-streamdev/vdr-streamdev-0.6.1_p20170930.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/media-plugins/vdr-streamdev/vdr-streamdev-0.6.1_p20170930.ebuild b/media-plugins/vdr-streamdev/vdr-streamdev-0.6.1_p20170930.ebuild
index b5c3b4f0a9c..f2d220ce8dd 100644
--- a/media-plugins/vdr-streamdev/vdr-streamdev-0.6.1_p20170930.ebuild
+++ b/media-plugins/vdr-streamdev/vdr-streamdev-0.6.1_p20170930.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2020 Gentoo Authors
+# Copyright 2020-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -13,7 +13,7 @@ SRC_URI="https://projects.vdr-developer.org/git/vdr-plugin-streamdev.git/snapsho
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm ~x86"
IUSE="client server"
REQUIRED_USE="|| ( client server )"
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-plugins/vdr-streamdev/
@ 2021-07-17 14:09 Mikle Kolyada
0 siblings, 0 replies; 12+ messages in thread
From: Mikle Kolyada @ 2021-07-17 14:09 UTC (permalink / raw
To: gentoo-commits
commit: 670a73d3f096389de078abf4f65bee3818fc3e33
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 17 14:09:00 2021 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sat Jul 17 14:09:00 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=670a73d3
media-plugins/vdr-streamdev: Stabilize 0.6.1_p20170930 x86, #794253
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
media-plugins/vdr-streamdev/vdr-streamdev-0.6.1_p20170930.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-plugins/vdr-streamdev/vdr-streamdev-0.6.1_p20170930.ebuild b/media-plugins/vdr-streamdev/vdr-streamdev-0.6.1_p20170930.ebuild
index f2d220ce8dd..3be806ff9c9 100644
--- a/media-plugins/vdr-streamdev/vdr-streamdev-0.6.1_p20170930.ebuild
+++ b/media-plugins/vdr-streamdev/vdr-streamdev-0.6.1_p20170930.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://projects.vdr-developer.org/git/vdr-plugin-streamdev.git/snapsho
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm x86"
IUSE="client server"
REQUIRED_USE="|| ( client server )"
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-plugins/vdr-streamdev/
@ 2021-10-22 8:22 Jakov Smolić
0 siblings, 0 replies; 12+ messages in thread
From: Jakov Smolić @ 2021-10-22 8:22 UTC (permalink / raw
To: gentoo-commits
commit: 96b22f0bc7d608e6f422ea3941fbe62e99b1fe54
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 22 07:47:30 2021 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Fri Oct 22 08:21:28 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96b22f0b
media-plugins/vdr-streamdev: drop 0.6.1, 0.6.1_p20160320
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
media-plugins/vdr-streamdev/Manifest | 2 -
.../vdr-streamdev/vdr-streamdev-0.6.1.ebuild | 95 ---------------------
.../vdr-streamdev-0.6.1_p20160320.ebuild | 97 ----------------------
3 files changed, 194 deletions(-)
diff --git a/media-plugins/vdr-streamdev/Manifest b/media-plugins/vdr-streamdev/Manifest
index e6086445fdf..a38648dd031 100644
--- a/media-plugins/vdr-streamdev/Manifest
+++ b/media-plugins/vdr-streamdev/Manifest
@@ -1,3 +1 @@
-DIST vdr-plugin-streamdev-674bb5b331240de3ba2a8beb63a1276003e64e3e.tar.bz2 163096 BLAKE2B f451c435b24b69b0b09b5f2f041888ed3593ed7deee727a027672df9dd4d7c9183a68d40751ae5c12765037b4d5520f8ad824ead357b2a6597aaa15be7e573f5 SHA512 f9439a4c3dd453869f9cf3171ddb5e34c2a625d7873cb1648138e4b94715ec3acd8d3db69df5ae5bf1bc21f0401f9b12a126395b0f2696c129ee7725c1715902
DIST vdr-plugin-streamdev-e2a9b979d3fb92967c7a6a8221e674eb7e55c813.tar.bz2 163403 BLAKE2B 4cacadc091ab8d28ccd4318eaf18aaef8f45e6caab86ef461d1b1047039ec921984ebad091d29420779982b5b37606defe5aa6c6828e8f28788886ba9839efea SHA512 e1eb69f62785178c06fa6700bd1b94ac12f2c58b1a7b8067312613279b59c5ef8157474e27863e8b2d0e47700f67fca7a61595c49809512e9e1efdb27c85eac8
-DIST vdr-streamdev-0.6.1.tgz 186546 BLAKE2B 7d5d92c8ec92e7a57e8e335bdbdf5c91bcbfcdc3ea96fe8154af7015f33d6f2822cf35681a8018cad5b19776199d90870b747bc0a551f42a7b0eedc94f040188 SHA512 bbe6231bd8e69e299c8d94173e7ed4b1f49e5b17b7bcadf2d1e827b5e8dd57c6b975c8c409fd44f252110099b3565a7d4d8c2f7d03636fc2d2e3580d0050d971
diff --git a/media-plugins/vdr-streamdev/vdr-streamdev-0.6.1.ebuild b/media-plugins/vdr-streamdev/vdr-streamdev-0.6.1.ebuild
deleted file mode 100644
index 86fe10fda4b..00000000000
--- a/media-plugins/vdr-streamdev/vdr-streamdev-0.6.1.ebuild
+++ /dev/null
@@ -1,95 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit vdr-plugin-2
-
-VERSION="1580" # every bump, new version !
-
-DESCRIPTION="VDR Plugin: Client/Server and http streaming plugin"
-HOMEPAGE="https://projects.vdr-developer.org/projects/plg-streamdev"
-SRC_URI="mirror://vdr-developerorg/${VERSION}/${P}.tgz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="client server"
-
-DEPEND=">=media-video/vdr-1.7.25"
-RDEPEND="${DEPEND}"
-
-REQUIRED_USE="|| ( client server )"
-
-# vdr-plugin-2.eclass changes
-PO_SUBDIR="client server"
-
-src_prepare() {
- # make detection in vdr-plugin-2.eclass for new Makefile handling happy
- echo "# SOFILE" >> Makefile
-
- # rm unneeded entry
- sed -i Makefile -e "s:-I\$(VDRDIR)/include::"
-
- vdr-plugin-2_src_prepare
-
- for flag in client server; do
- if ! use ${flag}; then
- sed -i Makefile \
- -e '/^.PHONY:/s/'${flag}'//' \
- -e '/^.PHONY:/s/'install-${flag}'//' \
- -e '/^all:/s/'${flag}'//' \
- -e '/^install:/s/'install-${flag}'//'
- fi
- done
-
- fix_vdr_libsi_include server/livestreamer.c
-}
-
-src_install() {
- vdr-plugin-2_src_install
-
- if use server; then
- insinto /usr/share/vdr/streamdev
- doins streamdev-server/externremux.sh
-
- insinto /usr/share/vdr/rcscript
- newins "${FILESDIR}"/rc-addon-0.6.0.sh plugin-streamdev-server.sh
-
- newconfd "${FILESDIR}"/confd-0.6.0 vdr.streamdev-server
-
- insinto /etc/vdr/plugins/streamdev-server
- newins streamdev-server/streamdevhosts.conf streamdevhosts.conf
- fowners vdr:vdr /etc/vdr -R
- fi
-}
-
-pkg_preinst() {
- has_version "<${CATEGORY}/${PN}-0.6.0"
- previous_less_than_0_6_0=$?
-}
-
-pkg_postinst() {
- vdr-plugin-2_pkg_postinst
-
- if [[ -e "${ROOT}"/etc/vdr/plugins/streamdev/streamdevhosts.conf ]]; then
- einfo "move config file to new config DIR ${ROOT}/etc/vdr/plugins/streamdev-server/"
- mv "${ROOT}"/etc/vdr/plugins/streamdev/streamdevhosts.conf "${ROOT}"/etc/vdr/plugins/streamdev-server/streamdevhosts.conf
- fi
-
- if [[ $previous_less_than_0_6_0 = 0 ]]; then
- einfo "The server-side setting \"Suspend behaviour\" has been dropped in 0.6.0 in favour"
- einfo "of priority based precedence. A priority of 0 and above means that clients"
- einfo "have precedence. A negative priority gives precedence to local live TV on the"
- einfo "server. So if \"Suspend behaviour\" was previously set to \"Client may suspend\" or"
- einfo "\"Never suspended\", you will have to configure a negative priority. If the"
- einfo "\"Suspend behaviour\" was set to \"Always suspended\", the default values should do."
- einfo ""
- einfo "Configure the desired priorities for HTTP and IGMP Multicast streaming in the"
- einfo "settings of streamdev-server. If you haven't updated all your streamdev-clients"
- einfo "to at least 0.5.2, configure \"Legacy Client Priority\", too."
- einfo ""
- einfo "In streamdev-client, you should set \"Minimum Priority\" to -99. Adjust \"Live TV"
- einfo "Priority\" if necessary."
- fi
-}
diff --git a/media-plugins/vdr-streamdev/vdr-streamdev-0.6.1_p20160320.ebuild b/media-plugins/vdr-streamdev/vdr-streamdev-0.6.1_p20160320.ebuild
deleted file mode 100644
index 855928673f0..00000000000
--- a/media-plugins/vdr-streamdev/vdr-streamdev-0.6.1_p20160320.ebuild
+++ /dev/null
@@ -1,97 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit vdr-plugin-2
-
-GIT_VERSION="674bb5b331240de3ba2a8beb63a1276003e64e3e"
-
-DESCRIPTION="VDR Plugin: Client/Server and http streaming plugin"
-HOMEPAGE="https://projects.vdr-developer.org/projects/plg-streamdev"
-SRC_URI="https://projects.vdr-developer.org/git/vdr-plugin-streamdev.git/snapshot/vdr-plugin-streamdev-${GIT_VERSION}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
-IUSE="client server"
-
-DEPEND=">=media-video/vdr-1.7.25"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/vdr-plugin-streamdev-${GIT_VERSION}"
-
-REQUIRED_USE="|| ( client server )"
-
-# vdr-plugin-2.eclass changes
-PO_SUBDIR="client server"
-
-src_prepare() {
- # make detection in vdr-plugin-2.eclass for new Makefile handling happy
- echo "# SOFILE" >> Makefile
-
- # rm unneeded entry
- sed -i Makefile -e "s:-I\$(VDRDIR)/include::"
-
- vdr-plugin-2_src_prepare
-
- for flag in client server; do
- if ! use ${flag}; then
- sed -i Makefile \
- -e '/^.PHONY:/s/'${flag}'//' \
- -e '/^.PHONY:/s/'install-${flag}'//' \
- -e '/^all:/s/'${flag}'//' \
- -e '/^install:/s/'install-${flag}'//'
- fi
- done
-
- fix_vdr_libsi_include server/livestreamer.c
-}
-
-src_install() {
- vdr-plugin-2_src_install
-
- if use server; then
- insinto /usr/share/vdr/streamdev
- doins streamdev-server/externremux.sh
-
- insinto /usr/share/vdr/rcscript
- newins "${FILESDIR}"/rc-addon-0.6.0.sh plugin-streamdev-server.sh
-
- newconfd "${FILESDIR}"/confd-0.6.0 vdr.streamdev-server
-
- insinto /etc/vdr/plugins/streamdev-server
- newins streamdev-server/streamdevhosts.conf streamdevhosts.conf
- fowners vdr:vdr /etc/vdr -R
- fi
-}
-
-pkg_preinst() {
- has_version "<${CATEGORY}/${PN}-0.6.0"
- previous_less_than_0_6_0=$?
-}
-
-pkg_postinst() {
- vdr-plugin-2_pkg_postinst
-
- if [[ -e "${ROOT}"/etc/vdr/plugins/streamdev/streamdevhosts.conf ]]; then
- einfo "move config file to new config DIR ${ROOT}/etc/vdr/plugins/streamdev-server/"
- mv "${ROOT}"/etc/vdr/plugins/streamdev/streamdevhosts.conf "${ROOT}"/etc/vdr/plugins/streamdev-server/streamdevhosts.conf
- fi
-
- if [[ $previous_less_than_0_6_0 = 0 ]]; then
- einfo "The server-side setting \"Suspend behaviour\" has been dropped in 0.6.0 in favour"
- einfo "of priority based precedence. A priority of 0 and above means that clients"
- einfo "have precedence. A negative priority gives precedence to local live TV on the"
- einfo "server. So if \"Suspend behaviour\" was previously set to \"Client may suspend\" or"
- einfo "\"Never suspended\", you will have to configure a negative priority. If the"
- einfo "\"Suspend behaviour\" was set to \"Always suspended\", the default values should do."
- einfo ""
- einfo "Configure the desired priorities for HTTP and IGMP Multicast streaming in the"
- einfo "settings of streamdev-server. If you haven't updated all your streamdev-clients"
- einfo "to at least 0.5.2, configure \"Legacy Client Priority\", too."
- einfo ""
- einfo "In streamdev-client, you should set \"Minimum Priority\" to -99. Adjust \"Live TV"
- einfo "Priority\" if necessary."
- fi
-}
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-plugins/vdr-streamdev/
@ 2022-06-28 15:39 Joonas Niilola
0 siblings, 0 replies; 12+ messages in thread
From: Joonas Niilola @ 2022-06-28 15:39 UTC (permalink / raw
To: gentoo-commits
commit: e80c64fe3eb6669c23993dcc56bb374ad0caf8b9
Author: Martin Dummer <martin.dummer <AT> gmx <DOT> net>
AuthorDate: Tue Jan 25 23:43:31 2022 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Tue Jun 28 15:38:20 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e80c64fe
media-plugins/vdr-streamdev: version bump to 0.6.3
new EAPI 8
make USE=server the default
adopt proxy maintainership
change HOME due to retirement of http://projects.vdr-developer.org
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Martin Dummer <martin.dummer <AT> gmx.net>
Closes: https://github.com/gentoo/gentoo/pull/23960
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
media-plugins/vdr-streamdev/Manifest | 1 +
media-plugins/vdr-streamdev/metadata.xml | 24 ++++---
.../vdr-streamdev/vdr-streamdev-0.6.3.ebuild | 79 ++++++++++++++++++++++
3 files changed, 95 insertions(+), 9 deletions(-)
diff --git a/media-plugins/vdr-streamdev/Manifest b/media-plugins/vdr-streamdev/Manifest
index a38648dd0317..eae037cd7b8d 100644
--- a/media-plugins/vdr-streamdev/Manifest
+++ b/media-plugins/vdr-streamdev/Manifest
@@ -1 +1,2 @@
DIST vdr-plugin-streamdev-e2a9b979d3fb92967c7a6a8221e674eb7e55c813.tar.bz2 163403 BLAKE2B 4cacadc091ab8d28ccd4318eaf18aaef8f45e6caab86ef461d1b1047039ec921984ebad091d29420779982b5b37606defe5aa6c6828e8f28788886ba9839efea SHA512 e1eb69f62785178c06fa6700bd1b94ac12f2c58b1a7b8067312613279b59c5ef8157474e27863e8b2d0e47700f67fca7a61595c49809512e9e1efdb27c85eac8
+DIST vdr-streamdev-0.6.3.tar.gz 196906 BLAKE2B 300c24aac6f0c59fc438eafa9a300e0b68dbfb43064cf887ab9d1fbdc1b22a8ec5349a38fa5c2188ef78dbc1ac7f238e88abe0ed9d1cbcd01e4a1afde7b890cf SHA512 2c949f08f399f2570a54da67809235b6882d594fc5583b27df96b3e87951bcfc62f96c9aef715130540620cbe54f028106598941fe8cbdb80b3d0943009c039f
diff --git a/media-plugins/vdr-streamdev/metadata.xml b/media-plugins/vdr-streamdev/metadata.xml
index 6ecec60aea2b..a4f638e9ccf0 100644
--- a/media-plugins/vdr-streamdev/metadata.xml
+++ b/media-plugins/vdr-streamdev/metadata.xml
@@ -1,19 +1,25 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
+ <maintainer type="person" proxied="yes">
+ <email>martin.dummer@gmx.net</email>
+ <name>Martin Dummer</name>
+ </maintainer>
+ <maintainer type="project" proxied="proxy">
+ <email>proxy-maint@gentoo.org</email>
+ <name>Proxy Maintainers</name>
+ </maintainer>
<maintainer type="project">
<email>vdr@gentoo.org</email>
<name>Gentoo VDR Project</name>
</maintainer>
<use>
- <flag name="client">
- Compile the VDR plugin vdr-streamdev-client
- that acts like a dvb-budget card
- </flag>
- <flag name="server">
- Compile the VDR plugin vdr-streamdev-server
- that allows remote systems to access the
- DVB cards used for the local VDR
- </flag>
+ <flag name="client">Compile the VDR plugin vdr-streamdev-client that can connect a vdr to a
+ remote streamdev-server instance</flag>
+ <flag name="server">Compile the VDR plugin vdr-streamdev-server that allows remote systems to access the
+ vdr using streamdev-specific VTP and HTTP protocol</flag>
</use>
+ <upstream>
+ <remote-id type="github">vdr-projects/vdr-plugin-streamdev</remote-id>
+ </upstream>
</pkgmetadata>
diff --git a/media-plugins/vdr-streamdev/vdr-streamdev-0.6.3.ebuild b/media-plugins/vdr-streamdev/vdr-streamdev-0.6.3.ebuild
new file mode 100644
index 000000000000..3565a40465d6
--- /dev/null
+++ b/media-plugins/vdr-streamdev/vdr-streamdev-0.6.3.ebuild
@@ -0,0 +1,79 @@
+# Copyright 2020-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit vdr-plugin-2
+
+DESCRIPTION="VDR Plugin: Client/Server and http streaming plugin"
+HOMEPAGE="https://github.com/vdr-projects/vdr-plugin-streamdev"
+SRC_URI="https://github.com/vdr-projects/vdr-plugin-streamdev/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/vdr-plugin-streamdev-${PV}"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="client +server"
+REQUIRED_USE="|| ( client server )"
+
+DEPEND="acct-user/vdr
+ >=media-video/vdr-2.3"
+BDEPEND="${DEPEND}"
+RDEPEND="${DEPEND}"
+
+QA_FLAGS_IGNORED="
+ usr/lib/vdr/plugins/libvdr-streamdev-.*
+ usr/lib64/vdr/plugins/libvdr-streamdev-.*"
+
+# vdr-plugin-2.eclass changes
+PO_SUBDIR="client server"
+
+src_prepare() {
+ # make detection in vdr-plugin-2.eclass for new Makefile handling happy
+ echo "# SOFILE" >> Makefile || die "modify Makefile failed"
+
+ # remove unnecessary include
+ sed -i Makefile -e "s:-I\$(VDRDIR)/include::" || die "modify Makefile failed"
+
+ vdr-plugin-2_src_prepare
+
+ local flag
+ for flag in client server; do
+ if ! use ${flag}; then
+ sed -i Makefile \
+ -e '/^.PHONY:/s/'${flag}'//' \
+ -e '/^.PHONY:/s/'install-${flag}'//' \
+ -e '/^all:/s/'${flag}'//' \
+ -e '/^install:/s/'install-${flag}'//' || die "modify Makefile failed"
+ fi
+ done
+
+ fix_vdr_libsi_include server/livestreamer.c
+}
+
+src_install() {
+ vdr-plugin-2_src_install
+
+ if use server; then
+ insinto /usr/share/vdr/streamdev
+ doins streamdev-server/externremux.sh
+
+ insinto /usr/share/vdr/rcscript
+ newins "${FILESDIR}"/rc-addon-0.6.0.sh plugin-streamdev-server.sh
+
+ newconfd "${FILESDIR}"/confd-0.6.0 vdr.streamdev-server
+
+ insinto /etc/vdr/plugins/streamdev-server
+ newins streamdev-server/streamdevhosts.conf streamdevhosts.conf
+ fowners vdr:vdr /etc/vdr -R
+ fi
+}
+
+pkg_postinst() {
+ vdr-plugin-2_pkg_postinst
+
+ if [[ -e "${EROOT}"/etc/vdr/plugins/streamdev/streamdevhosts.conf ]]; then
+ einfo "move config file to new config DIR ${EROOT}/etc/vdr/plugins/streamdev-server/"
+ mv "${EROOT}"/etc/vdr/plugins/streamdev/streamdevhosts.conf "${EROOT}"/etc/vdr/plugins/streamdev-server/streamdevhosts.conf || die
+ fi
+}
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-plugins/vdr-streamdev/
@ 2022-08-28 6:59 Joonas Niilola
0 siblings, 0 replies; 12+ messages in thread
From: Joonas Niilola @ 2022-08-28 6:59 UTC (permalink / raw
To: gentoo-commits
commit: 6d51df495e9b9537932b665d866144d650bd7248
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 28 06:57:01 2022 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sun Aug 28 06:59:22 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d51df49
media-plugins/vdr-streamdev: Stabilize 0.6.3 amd64, #866605
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
media-plugins/vdr-streamdev/vdr-streamdev-0.6.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-plugins/vdr-streamdev/vdr-streamdev-0.6.3.ebuild b/media-plugins/vdr-streamdev/vdr-streamdev-0.6.3.ebuild
index 02b5e7e2ae29..b553e1ec6339 100644
--- a/media-plugins/vdr-streamdev/vdr-streamdev-0.6.3.ebuild
+++ b/media-plugins/vdr-streamdev/vdr-streamdev-0.6.3.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/vdr-plugin-streamdev-${PV}"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm ~x86"
IUSE="client +server"
REQUIRED_USE="|| ( client server )"
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-plugins/vdr-streamdev/
@ 2022-08-28 7:02 Joonas Niilola
0 siblings, 0 replies; 12+ messages in thread
From: Joonas Niilola @ 2022-08-28 7:02 UTC (permalink / raw
To: gentoo-commits
commit: b3fd64e84e03316104ccf0879534e0e4b21acbb6
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 28 07:02:24 2022 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sun Aug 28 07:02:24 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3fd64e8
media-plugins/vdr-streamdev: Stabilize 0.6.3 x86, #866605
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
media-plugins/vdr-streamdev/vdr-streamdev-0.6.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-plugins/vdr-streamdev/vdr-streamdev-0.6.3.ebuild b/media-plugins/vdr-streamdev/vdr-streamdev-0.6.3.ebuild
index b553e1ec6339..378c2ef62603 100644
--- a/media-plugins/vdr-streamdev/vdr-streamdev-0.6.3.ebuild
+++ b/media-plugins/vdr-streamdev/vdr-streamdev-0.6.3.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/vdr-plugin-streamdev-${PV}"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm x86"
IUSE="client +server"
REQUIRED_USE="|| ( client server )"
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-plugins/vdr-streamdev/
@ 2024-06-13 6:56 Joonas Niilola
0 siblings, 0 replies; 12+ messages in thread
From: Joonas Niilola @ 2024-06-13 6:56 UTC (permalink / raw
To: gentoo-commits
commit: a76655a7e8c84ce0e8cf8b709db7c406ba2c2c61
Author: Martin Dummer <martin.dummer <AT> gmx <DOT> net>
AuthorDate: Thu May 2 15:26:47 2024 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Thu Jun 13 06:56:02 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a76655a7
media-plugins/vdr-streamdev: drop 0.6.1_p20170930
fix pkgcheck issues
Signed-off-by: Martin Dummer <martin.dummer <AT> gmx.net>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
media-plugins/vdr-streamdev/Manifest | 1 -
.../vdr-streamdev-0.6.1_p20170930.ebuild | 78 ----------------------
.../vdr-streamdev/vdr-streamdev-0.6.3.ebuild | 6 +-
3 files changed, 3 insertions(+), 82 deletions(-)
diff --git a/media-plugins/vdr-streamdev/Manifest b/media-plugins/vdr-streamdev/Manifest
index eae037cd7b8d..cfdc3ffeac38 100644
--- a/media-plugins/vdr-streamdev/Manifest
+++ b/media-plugins/vdr-streamdev/Manifest
@@ -1,2 +1 @@
-DIST vdr-plugin-streamdev-e2a9b979d3fb92967c7a6a8221e674eb7e55c813.tar.bz2 163403 BLAKE2B 4cacadc091ab8d28ccd4318eaf18aaef8f45e6caab86ef461d1b1047039ec921984ebad091d29420779982b5b37606defe5aa6c6828e8f28788886ba9839efea SHA512 e1eb69f62785178c06fa6700bd1b94ac12f2c58b1a7b8067312613279b59c5ef8157474e27863e8b2d0e47700f67fca7a61595c49809512e9e1efdb27c85eac8
DIST vdr-streamdev-0.6.3.tar.gz 196906 BLAKE2B 300c24aac6f0c59fc438eafa9a300e0b68dbfb43064cf887ab9d1fbdc1b22a8ec5349a38fa5c2188ef78dbc1ac7f238e88abe0ed9d1cbcd01e4a1afde7b890cf SHA512 2c949f08f399f2570a54da67809235b6882d594fc5583b27df96b3e87951bcfc62f96c9aef715130540620cbe54f028106598941fe8cbdb80b3d0943009c039f
diff --git a/media-plugins/vdr-streamdev/vdr-streamdev-0.6.1_p20170930.ebuild b/media-plugins/vdr-streamdev/vdr-streamdev-0.6.1_p20170930.ebuild
deleted file mode 100644
index 3be806ff9c96..000000000000
--- a/media-plugins/vdr-streamdev/vdr-streamdev-0.6.1_p20170930.ebuild
+++ /dev/null
@@ -1,78 +0,0 @@
-# Copyright 2020-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit vdr-plugin-2
-
-GIT_VERSION="e2a9b979d3fb92967c7a6a8221e674eb7e55c813"
-
-DESCRIPTION="VDR Plugin: Client/Server and http streaming plugin"
-HOMEPAGE="https://projects.vdr-developer.org/projects/plg-streamdev"
-SRC_URI="https://projects.vdr-developer.org/git/vdr-plugin-streamdev.git/snapshot/vdr-plugin-streamdev-${GIT_VERSION}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm x86"
-IUSE="client server"
-REQUIRED_USE="|| ( client server )"
-
-DEPEND=">=media-video/vdr-2.3"
-RDEPEND="${DEPEND}"
-
-QA_FLAGS_IGNORED="
- usr/lib/vdr/plugins/libvdr-streamdev-.*
- usr/lib64/vdr/plugins/libvdr-streamdev-.*"
-S="${WORKDIR}/vdr-plugin-streamdev-${GIT_VERSION}"
-
-# vdr-plugin-2.eclass changes
-PO_SUBDIR="client server"
-
-src_prepare() {
- # make detection in vdr-plugin-2.eclass for new Makefile handling happy
- echo "# SOFILE" >> Makefile || die "modify Makefile failed"
-
- # rm unneeded entry
- sed -i Makefile -e "s:-I\$(VDRDIR)/include::" || die "modify Makefile failed"
-
- vdr-plugin-2_src_prepare
-
- for flag in client server; do
- if ! use ${flag}; then
- sed -i Makefile \
- -e '/^.PHONY:/s/'${flag}'//' \
- -e '/^.PHONY:/s/'install-${flag}'//' \
- -e '/^all:/s/'${flag}'//' \
- -e '/^install:/s/'install-${flag}'//' || die "modify Makefile failed"
- fi
- done
-
- fix_vdr_libsi_include server/livestreamer.c
-}
-
-src_install() {
- vdr-plugin-2_src_install
-
- if use server; then
- insinto /usr/share/vdr/streamdev
- doins streamdev-server/externremux.sh
-
- insinto /usr/share/vdr/rcscript
- newins "${FILESDIR}"/rc-addon-0.6.0.sh plugin-streamdev-server.sh
-
- newconfd "${FILESDIR}"/confd-0.6.0 vdr.streamdev-server
-
- insinto /etc/vdr/plugins/streamdev-server
- newins streamdev-server/streamdevhosts.conf streamdevhosts.conf
- fowners vdr:vdr /etc/vdr -R
- fi
-}
-
-pkg_postinst() {
- vdr-plugin-2_pkg_postinst
-
- if [[ -e "${EROOT}"/etc/vdr/plugins/streamdev/streamdevhosts.conf ]]; then
- einfo "move config file to new config DIR ${EROOT}/etc/vdr/plugins/streamdev-server/"
- mv "${EROOT}"/etc/vdr/plugins/streamdev/streamdevhosts.conf "${EROOT}"/etc/vdr/plugins/streamdev-server/streamdevhosts.conf
- fi
-}
diff --git a/media-plugins/vdr-streamdev/vdr-streamdev-0.6.3.ebuild b/media-plugins/vdr-streamdev/vdr-streamdev-0.6.3.ebuild
index 378c2ef62603..a4a1120a119c 100644
--- a/media-plugins/vdr-streamdev/vdr-streamdev-0.6.3.ebuild
+++ b/media-plugins/vdr-streamdev/vdr-streamdev-0.6.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2020-2022 Gentoo Authors
+# Copyright 2020-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -18,7 +18,6 @@ REQUIRED_USE="|| ( client server )"
DEPEND="acct-user/vdr
>=media-video/vdr-2.3"
-BDEPEND="${DEPEND}"
RDEPEND="${DEPEND}"
QA_FLAGS_IGNORED="
@@ -79,6 +78,7 @@ pkg_postinst() {
if [[ -e "${EROOT}"/etc/vdr/plugins/streamdev/streamdevhosts.conf ]]; then
einfo "move config file to new config DIR ${EROOT}/etc/vdr/plugins/streamdev-server/"
- mv "${EROOT}"/etc/vdr/plugins/streamdev/streamdevhosts.conf "${EROOT}"/etc/vdr/plugins/streamdev-server/streamdevhosts.conf || die
+ mv "${EROOT}"/etc/vdr/plugins/streamdev/streamdevhosts.conf \
+ "${EROOT}"/etc/vdr/plugins/streamdev-server/streamdevhosts.conf || die
fi
}
^ permalink raw reply related [flat|nested] 12+ messages in thread
end of thread, other threads:[~2024-06-13 6:56 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-10-22 8:22 [gentoo-commits] repo/gentoo:master commit in: media-plugins/vdr-streamdev/ Jakov Smolić
-- strict thread matches above, loose matches on Subject: below --
2024-06-13 6:56 Joonas Niilola
2022-08-28 7:02 Joonas Niilola
2022-08-28 6:59 Joonas Niilola
2022-06-28 15:39 Joonas Niilola
2021-07-17 14:09 Mikle Kolyada
2021-07-17 14:07 Mikle Kolyada
2020-01-03 19:30 Jörg Bornkessel
2018-03-26 19:18 Aaron Bauman
2016-09-28 21:41 Joerg Bornkessel
2016-06-19 21:30 Joerg Bornkessel
2016-05-30 20:45 Joerg Bornkessel
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox