summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoerg Bornkessel <hd_brummy@gentoo.org>2020-02-04 20:18:20 +0100
committerJoerg Bornkessel <hd_brummy@gentoo.org>2020-02-04 20:28:02 +0100
commit83cf833b6e69e619c9ce0641d9bd0f26a5d70617 (patch)
treef404b632d2aaaf66a0a658454b1ee805e033c736 /media-plugins
parentmedia-plugins/vdr-wapd: pmasked removal (diff)
downloadgentoo-83cf833b6e69e619c9ce0641d9bd0f26a5d70617.tar.gz
gentoo-83cf833b6e69e619c9ce0641d9bd0f26a5d70617.tar.bz2
gentoo-83cf833b6e69e619c9ce0641d9bd0f26a5d70617.zip
media-plugins/vdr-zaphistory: pmasked removal
bug 703966 Closes: https://bugs.gentoo.org/703966 Signed-off-by: Joerg Bornkessel <hd_brummy@gentoo.org>
Diffstat (limited to 'media-plugins')
-rw-r--r--media-plugins/vdr-zaphistory/Manifest1
-rw-r--r--media-plugins/vdr-zaphistory/files/vdr-zaphistory-0.9.6-fix-crash-no-info.diff15
-rw-r--r--media-plugins/vdr-zaphistory/metadata.xml8
-rw-r--r--media-plugins/vdr-zaphistory/vdr-zaphistory-0.9.6.ebuild22
4 files changed, 0 insertions, 46 deletions
diff --git a/media-plugins/vdr-zaphistory/Manifest b/media-plugins/vdr-zaphistory/Manifest
deleted file mode 100644
index c4c52ca97c1f..000000000000
--- a/media-plugins/vdr-zaphistory/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST zaphistory-0.9.6.tar.gz 19874 BLAKE2B a42544b060b98114a4e6f6a95ed98e93950cb15725472dfb7bf112818d164b792e81d5243fabc595bbfe3f23c1efc05f004bcd5f8604cb4dfd199bdb1f3ee0c5 SHA512 7be51da0917f183edd5b74e240a7eca0a07d06df0d63b3194765f2744182fd9548b869f134f968ae30360272e199065a3500a194dc61a4c015fb22daaf54c18f
diff --git a/media-plugins/vdr-zaphistory/files/vdr-zaphistory-0.9.6-fix-crash-no-info.diff b/media-plugins/vdr-zaphistory/files/vdr-zaphistory-0.9.6-fix-crash-no-info.diff
deleted file mode 100644
index 274012d731e4..000000000000
--- a/media-plugins/vdr-zaphistory/files/vdr-zaphistory-0.9.6-fix-crash-no-info.diff
+++ /dev/null
@@ -1,15 +0,0 @@
-diff -Naur zaphistory-0.9.6.orig/zaphistoryosd.c zaphistory-0.9.6/zaphistoryosd.c
---- zaphistory-0.9.6.orig/zaphistoryosd.c 2013-09-15 15:22:41.000000000 +0200
-+++ zaphistory-0.9.6/zaphistoryosd.c 2013-09-15 15:24:42.000000000 +0200
-@@ -217,6 +217,11 @@
-
- return AddSubMenu( new cMenuEvent(schedule->GetEventAround(time(NULL)) ) );
-
-+ const cEvent *event = schedule->GetEventAround(time(NULL));
-+ if (event)
-+ return AddSubMenu( new cMenuEvent(event) );
-+ else
-+ return osUnknown;
- }
-
- eOSState cMenuZappedChannels::ProcessKey(eKeys Key)
diff --git a/media-plugins/vdr-zaphistory/metadata.xml b/media-plugins/vdr-zaphistory/metadata.xml
deleted file mode 100644
index 27f419c289c3..000000000000
--- a/media-plugins/vdr-zaphistory/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<maintainer type="project">
-<email>vdr@gentoo.org</email>
-<name>Gentoo VDR Project</name>
-</maintainer>
-</pkgmetadata>
diff --git a/media-plugins/vdr-zaphistory/vdr-zaphistory-0.9.6.ebuild b/media-plugins/vdr-zaphistory/vdr-zaphistory-0.9.6.ebuild
deleted file mode 100644
index 52542a46d853..000000000000
--- a/media-plugins/vdr-zaphistory/vdr-zaphistory-0.9.6.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit vdr-plugin-2
-
-VERSION="1437" # every bump, new Version
-
-DESCRIPTION="VDR Plugin: Shows the least recently used channels"
-HOMEPAGE="https://projects.vdr-developer.org/projects/plg-zaphistory"
-SRC_URI="mirror://vdr-developerorg/${VERSION}/zaphistory-${PV}.tar.gz"
-
-KEYWORDS="amd64 x86"
-SLOT="0"
-LICENSE="GPL-2"
-IUSE=""
-
-DEPEND=">=media-video/vdr-2.0.0"
-RDEPEND="${DEPEND}"
-
-PATCHES=("${FILESDIR}/${P}-fix-crash-no-info.diff")