summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2018-10-09 23:05:23 +0200
committerMichał Górny <mgorny@gentoo.org>2018-10-09 23:14:01 +0200
commit0f07bbe6ba4fb47c5466f234f732d55470bd5f1b (patch)
treea52bd0519a6631873acd453d999e4a2b42190d3e /media-plugins
parentkde-frameworks/kdoctools: Disable broken kdoctools_install test (diff)
downloadgentoo-0f07bbe6ba4fb47c5466f234f732d55470bd5f1b.tar.gz
gentoo-0f07bbe6ba4fb47c5466f234f732d55470bd5f1b.tar.bz2
gentoo-0f07bbe6ba4fb47c5466f234f732d55470bd5f1b.zip
media-plugins/vdr-autosort: Remove last-rited pkg
Closes: https://bugs.gentoo.org/665136 Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'media-plugins')
-rw-r--r--media-plugins/vdr-autosort/Manifest1
-rw-r--r--media-plugins/vdr-autosort/metadata.xml18
-rw-r--r--media-plugins/vdr-autosort/vdr-autosort-0.1.3.ebuild42
3 files changed, 0 insertions, 61 deletions
diff --git a/media-plugins/vdr-autosort/Manifest b/media-plugins/vdr-autosort/Manifest
deleted file mode 100644
index 089e7ecd5a10..000000000000
--- a/media-plugins/vdr-autosort/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST vdr-autosort-0.1.3.tgz 37190 BLAKE2B 1c14f1bcd256b13efb8efc71b5e99debf1268b54a584df6aa045421630440643e55da1ef8fbf9bd82bcee0de5e9300daacec2f9d2fa009737044ab0155f0ebbb SHA512 f9d154060ead285e4b775317c403372ecf3d80842d95bca31dd0ba220c3429b51f4be31bf7251222905d5485a0e6f5c1fc80927c386456cb500f1c58a5a9201a
diff --git a/media-plugins/vdr-autosort/metadata.xml b/media-plugins/vdr-autosort/metadata.xml
deleted file mode 100644
index a7e476d255a0..000000000000
--- a/media-plugins/vdr-autosort/metadata.xml
+++ /dev/null
@@ -1,18 +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>
- <longdescription lang="en">
- AutoSort Plugin adds the capability to define rules for
- automatically sorting your channels.conf with every
- housekeeping thread.
- </longdescription>
- <longdescription lang="de">
- Das AutoSort-Plugin erweitert den VDR um die Fähigkeit, die
- Kanalliste automatisch nach benutzerspezifischen Kriterien
- zu sortieren.
- </longdescription>
-</pkgmetadata>
diff --git a/media-plugins/vdr-autosort/vdr-autosort-0.1.3.ebuild b/media-plugins/vdr-autosort/vdr-autosort-0.1.3.ebuild
deleted file mode 100644
index 34afecce2aca..000000000000
--- a/media-plugins/vdr-autosort/vdr-autosort-0.1.3.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit vdr-plugin-2
-
-DESCRIPTION="VDR plugin: Auto-sort channels.conf"
-HOMEPAGE="http://www.copypointburscheid.de/linux/autosort.htm"
-SRC_URI="http://www.copypointburscheid.de/linux/${P}.tgz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND=">=media-video/vdr-1.3.32"
-RDEPEND="${DEPEND}"
-
-src_install() {
- vdr-plugin-2_src_install
- insinto /etc/vdr/plugins
- doins examples/autosort.conf
-}
-
-pkg_preinst() {
- if [[ ! -L ${ROOT}etc/vdr/channels.conf ]]; then
- cp "${ROOT}"etc/vdr/channels.conf "${D}"etc/vdr/channels.conf.autosort.bak
- fowners vdr:vdr /etc/vdr/channels.conf.autosort.bak
- fi
-}
-
-pkg_postinst() {
- vdr-plugin-2_pkg_postinst
- echo
- elog "You will find a backup of your channels.conf in /etc/vdr/channels.conf.autosort.bak"
- elog "Edit /etc/vdr/plugins/autosort.conf to fit your needs"
- ewarn "Important:"
- ewarn "Backup your channels.conf together with autosort.conf"
- ewarn "before making heavy changes to autosort.conf."
- echo
-}