commit:     39232256b9746639ea9aa2fedce7047b0177532a
Author:     Martin Dummer <martin.dummer <AT> gmx <DOT> net>
AuthorDate: Fri Nov  7 21:58:45 2025 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Nov 12 09:48:40 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39232256

media-plugins/vdr-live: drop 3.0.6

Signed-off-by: Martin Dummer <martin.dummer <AT> gmx.net>
Part-of: https://github.com/gentoo/gentoo/pull/44535
Closes: https://github.com/gentoo/gentoo/pull/44535
Signed-off-by: Sam James <sam <AT> gentoo.org>

 media-plugins/vdr-live/Manifest              |  1 -
 media-plugins/vdr-live/files/confd-2.3       | 29 ---------
 media-plugins/vdr-live/files/rc-addon-2.3.sh | 30 ---------
 media-plugins/vdr-live/vdr-live-3.0.6.ebuild | 94 ----------------------------
 4 files changed, 154 deletions(-)

diff --git a/media-plugins/vdr-live/Manifest b/media-plugins/vdr-live/Manifest
index 6c2b2b3b0816..df676dffc891 100644
--- a/media-plugins/vdr-live/Manifest
+++ b/media-plugins/vdr-live/Manifest
@@ -1,3 +1,2 @@
-DIST vdr-live-3.0.6.tar.gz 737583 BLAKE2B 
e9fd7f95df7c3fcd11e9e63131c948c1d318e2bb0c5cbc2fab950abc2889df8ca8a33b71f5394b3c22c45f81ee1faf1bf71ca889ae64173be8965db6f6fbd8ac
 SHA512 
f60cd14c3a02eeb571ffc181dabd83dd0af0595d378ed34bc9cee1d54b560d74027c758d3b4d69541a71dc6f94b5f64e3972fc51aeb5a9d688be7656636bcf98
 DIST vdr-live-3.5.1.tar.gz 2651284 BLAKE2B 
3affc04d7c7053237f2856392d2f8dc4bad22e8980afcbed26bfd0300b5419028de4bdfb28b8507a9069979a865be10e8f5c25d014878b87a904fb95314bfeb7
 SHA512 
b928700185112b3e3bbcec163de2c195188d4849f593ce0a3d685a1c966af03deb98c2e4ca7b29a903caeef62779ac88f4c982d311c36c53118c2b8f74620440
 DIST vdr-live-3.5.2.tar.gz 2586710 BLAKE2B 
f69a651d8803e3c9e4bc455dbfa9dc1a49c373118c3d9f5c187acdf37603a0ce791d2699ea160849447cdc971c5ae01779100b5a8d7066e39d8e04eaa7c41660
 SHA512 
25ab09633a7cc9303bd1dc4a9eb32abf936832985e3764a4b1f913ca340827cfddb48c244379b3be79c60b418f35549488572cbf61418994f6ce42dc3b4fe136

diff --git a/media-plugins/vdr-live/files/confd-2.3 
b/media-plugins/vdr-live/files/confd-2.3
deleted file mode 100644
index cb1dce04dfb5..000000000000
--- a/media-plugins/vdr-live/files/confd-2.3
+++ /dev/null
@@ -1,29 +0,0 @@
-# configuration of media-plugins/vdr-live
-
-# for people who want more secure
-# with ssl access.
-#      on usage, you have to install vdr-live
-#      with USE="ssl"
-#
-#      SSL ADDRESS -->  https://<your-ip>:8443/
-#
-#      allowed values: yes no
-#      default: no
-#LIVE_USE_SSL="yes"
-
-# default given portnumber
-# only changes needed on problems
-#
-#LIVE_PORT="8008"
-#LIVE_SSL_PORT="8443"
-
-# bind to these IP addresses
-# default, your IP will automaticly detected
-#
-LIVE_BIND_IPS="127.0.0.1"
-
-# for people who have epgimges
-# default: /var/cache/vdr/epgimges
-#
-# set this to your own path, if needed
-#EPGIMAGES_DIR=" "

diff --git a/media-plugins/vdr-live/files/rc-addon-2.3.sh 
b/media-plugins/vdr-live/files/rc-addon-2.3.sh
deleted file mode 100644
index 1372e09d56f0..000000000000
--- a/media-plugins/vdr-live/files/rc-addon-2.3.sh
+++ /dev/null
@@ -1,30 +0,0 @@
-#
-# [email protected]
-# [email protected]
-
-EPGIMAGES_DIR="/var/cache/vdr/epgimages"
-
-plugin_pre_vdr_start() {
-       if [ "${LIVE_USE_SSL:=no}" = "yes" ]; then
-               if [ -n "${LIVE_SSL_PORT}" ]; then
-                       add_plugin_param "-s ${LIVE_SSL_PORT}"
-               fi
-
-               add_plugin_param "--cert=/etc/vdr/plugins/live/live.pem"
-               add_plugin_param "--key=/etc/vdr/plugins/live/live-key.pem"
-
-       else
-               if [ -n "${LIVE_PORT}" ]; then
-                       add_plugin_param "-p ${LIVE_PORT}"
-               fi
-       fi
-
-       if [ -d ${EPGIMAGES_DIR} ]; then
-               add_plugin_param "--epgimages=${EPGIMAGES_DIR}"
-       fi
-
-       local ip
-       for ip in ${LIVE_BIND_IPS:=`hostname -i`}; do
-               add_plugin_param "-i ${ip}"
-       done
-}

diff --git a/media-plugins/vdr-live/vdr-live-3.0.6.ebuild 
b/media-plugins/vdr-live/vdr-live-3.0.6.ebuild
deleted file mode 100644
index ec742542cdd8..000000000000
--- a/media-plugins/vdr-live/vdr-live-3.0.6.ebuild
+++ /dev/null
@@ -1,94 +0,0 @@
-# Copyright 2021-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit ssl-cert toolchain-funcs vdr-plugin-2
-
-MY_P="v3.0.6"
-
-DESCRIPTION="VDR Plugin: Web Access To Settings"
-HOMEPAGE="https://github.com/MarkusEh/vdr-plugin-live";
-SRC_URI="https://github.com/MarkusEh/vdr-plugin-live/archive/${MY_P}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="Apache-2.0 GPL-2+ RSA"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="pcre ssl"
-
-DEPEND="media-video/vdr
-       >=dev-libs/tntnet-3[ssl=]
-       >=dev-libs/cxxtools-3
-       pcre? ( >=dev-libs/libpcre-8.12[cxx] )"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/vdr-plugin-live-${PV}"
-
-VDR_CONFD_FILE="${FILESDIR}/confd-2.3"
-VDR_RCADDON_FILE="${FILESDIR}/rc-addon-2.3.sh"
-
-KEEP_I18NOBJECT="yes"
-
-make_live_cert() {
-       # TODO: still true?
-       # ssl-cert eclass creates a "invalid" cert, create our own one
-       local base=$(get_base 1)
-       local keydir="/etc/vdr/plugins/live"
-
-       SSL_ORGANIZATION="${SSL_ORGANIZATION:-VDR Plugin Live}"
-       SSL_COMMONNAME="${SSL_COMMONNAME:-`hostname -f`}"
-
-       echo
-       gen_cnf || return 1
-       echo
-       gen_key 1 || return 1
-       gen_csr 1 || return 1
-       gen_crt 1 || return 1
-       echo
-
-       install -d "${ROOT}${keydir}"
-       install -m0400 "${base}.key" "${ROOT}${keydir}/live-key.pem"
-       install -m0444 "${base}.crt" "${ROOT}${keydir}/live.pem"
-
-       chown vdr:vdr "${ROOT}${keydir}/live.pem"
-       chown vdr:vdr "${ROOT}${keydir}/live-key.pem"
-}
-
-src_prepare() {
-       vdr-plugin-2_src_prepare
-
-       if ! use pcre; then
-               sed -i "s:^HAVE_LIBPCRECPP:#HAVE_LIBPCRECPP:" Makefile || die
-       fi
-
-       # do not call ar directly
-       export _VDRAR="$(tc-getAR)"
-       sed -e "s:\$(AR):\$(_VDRAR):" \
-               -i css/Makefile \
-               -i javascript/Makefile || die
-}
-
-src_install() {
-       vdr-plugin-2_src_install
-
-       insinto /usr/share/vdr/plugins/live
-       doins -r live/*
-
-       fowners -R vdr:vdr /usr/share/vdr/plugins/live
-}
-
-pkg_postinst() {
-       vdr-plugin-2_pkg_postinst
-
-       elog "To be able to use all functions of vdr-live"
-       elog "you should emerge and enable"
-       elog "media-plugins/vdr-epgsearch to search the EPG,"
-       elog "media-plugins/vdr-streamdev for Live-TV streaming"
-
-       elog "The default username/password is:"
-       elog "\tadmin:live"
-
-       if use ssl ; then
-                       make_live_cert
-       fi
-}

Reply via email to