commit:     9c5f0d975b6f8ad9cb61d402a1614276515e0900
Author:     Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
AuthorDate: Thu Mar 11 08:22:20 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Mar 11 18:00:54 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c5f0d97

media-plugins/vdr-mount: Remove last-rited pkg

Closes: https://bugs.gentoo.org/724708

Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
Signed-off-by: Sam James <sam <AT> gentoo.org>

 media-plugins/vdr-mount/Manifest                   |  1 -
 .../files/vdr-mount-0.0.2-makefile-fix.diff        | 58 ----------------------
 media-plugins/vdr-mount/metadata.xml               |  8 ---
 media-plugins/vdr-mount/vdr-mount-0.0.2.ebuild     | 28 -----------
 profiles/package.mask                              |  9 ----
 5 files changed, 104 deletions(-)

diff --git a/media-plugins/vdr-mount/Manifest b/media-plugins/vdr-mount/Manifest
deleted file mode 100644
index c5dc68c25b4..00000000000
--- a/media-plugins/vdr-mount/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST vdr-mount-0.0.2.tgz 13127 BLAKE2B 
4ef214a4e545169c7e28270fe60fa32f3c901d7d638cd15dce8070ee1c5635e47547f7c7bc98a623c26361bc2fab5fa60b1d9ba4813b3df7c24d96600fa4951d
 SHA512 
1a16c192ef66fb1e4f41c304e4191b2fe759994e02b8965b314ef79cc5d8bb9dcf39d982902b5b651078e201c3dc77d5a2d7e28a38942d399da0692ff47cf116

diff --git a/media-plugins/vdr-mount/files/vdr-mount-0.0.2-makefile-fix.diff 
b/media-plugins/vdr-mount/files/vdr-mount-0.0.2-makefile-fix.diff
deleted file mode 100644
index ba2bcc43724..00000000000
--- a/media-plugins/vdr-mount/files/vdr-mount-0.0.2-makefile-fix.diff
+++ /dev/null
@@ -1,58 +0,0 @@
-Index: mount-0.0.2/Makefile
-===================================================================
---- mount-0.0.2.orig/Makefile
-+++ mount-0.0.2/Makefile
-@@ -59,12 +59,12 @@ OBJS = $(subst .C,.o, $(shell ls *.C 2>/
- 
- ### Targets:
- 
--all: medialist libvdr-$(PLUGIN).so
-+all: libvdr-$(PLUGIN).so
- 
- medialist:
--      cd MediaList; make
-+      $(MAKE) -C MediaList
- 
--libvdr-$(PLUGIN).so: $(OBJS)
-+libvdr-$(PLUGIN).so: $(OBJS) medialist
-       $(CXX) $(CXXFLAGS) -shared $(OBJS) -L MediaList/src -l MediaList -o $@
-       @cp --remove-destination $@ $(LIBDIR)/$@.$(APIVERSION)
- 
-@@ -77,7 +77,7 @@ dist: clean
-       @echo Distribution package created as $(PACKAGE).tgz
- 
- clean:
--      cd MediaList; make clean
-+      $(MAKE) -C MediaList clean
-       @-rm -f $(OBJS) $(DEPFILE) *.so *.tgz core* *~ *.d
- 
- -include *.d
-Index: mount-0.0.2/MediaList/Makefile
-===================================================================
---- mount-0.0.2.orig/MediaList/Makefile
-+++ mount-0.0.2/MediaList/Makefile
-@@ -6,18 +6,18 @@ $(subst .cxx,, $(shell cd prog; ls *.cxx
- 
- 
- all: 
--      export MYLIBNAME=$(LIBNAME);cd src; make
--      export PROGS=$(PROGRAMMS);cd prog; make
--      export MYLIBNAME=$(LIBNAME);export PROGS=$(PROGRAMMS);cd bin; make
-+      $(MAKE) -C src MYLIBNAME=$(LIBNAME)
-+      $(MAKE) -C prog PROGS=$(PROGRAMMS)
-+      $(MAKE) -C bin MYLIBNAME=$(LIBNAME) PROGS=$(PROGRAMMS)
-       
- depend:
-       @echo target depend is obsolete --- just make
- 
- 
- clean:
--      cd src; make clean
--      cd prog; make clean
--      export PROGS=$(PROGRAMMS);cd bin; make clean
-+      $(MAKE) -C src clean
-+      $(MAKE) -C prog clean
-+      $(MAKE) -C bin clean PROGS=$(PROGRAMMS)
-       
- 
- install:

diff --git a/media-plugins/vdr-mount/metadata.xml 
b/media-plugins/vdr-mount/metadata.xml
deleted file mode 100644
index 27f419c289c..00000000000
--- a/media-plugins/vdr-mount/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>v...@gentoo.org</email>
-<name>Gentoo VDR Project</name>
-</maintainer>
-</pkgmetadata>

diff --git a/media-plugins/vdr-mount/vdr-mount-0.0.2.ebuild 
b/media-plugins/vdr-mount/vdr-mount-0.0.2.ebuild
deleted file mode 100644
index 28fce1fb6fb..00000000000
--- a/media-plugins/vdr-mount/vdr-mount-0.0.2.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit vdr-plugin-2
-
-DESCRIPTION="VDR plugin: (Un)Mount removable media via osd"
-HOMEPAGE="http://www.vdr-wiki.de/wiki/index.php/Mount-plugin";
-SRC_URI="http://vdr.websitec.de/download/${PN}/${P}.tgz";
-
-KEYWORDS="~amd64 ~x86"
-SLOT="0"
-LICENSE="GPL-2"
-IUSE=""
-
-DEPEND="media-video/vdr"
-
-PATCHES=("${FILESDIR}/${P}-makefile-fix.diff")
-
-src_prepare() {
-       vdr-plugin-2_src_prepare
-
-       if has_version ">=media-video/vdr-2.1.2"; then
-               sed -e "s#VideoDirectory#cVideoDirectory::Name\(\)#" \
-                       -i MediumItem.C
-       fi
-}

diff --git a/profiles/package.mask b/profiles/package.mask
index d03e4b89371..2776bc938bc 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -306,15 +306,6 @@ app-misc/slmon
 # Removal on 2021-03-12.  Bug #740302
 media-plugins/vdr-cpumon
 
-# Joerg Bornkessel <hd_bru...@gentoo.org> (2021-02-12)
-# Last release in 2006. Upstream repository is gone.
-# Hompage shows only to a wiki entry.
-# Has open bugs.
-# If you still relies on this plugin, leave a comment in
-# the depended bug.
-# Removal on 2021-03-12.  Bug #740302
-media-plugins/vdr-mount
-
 # Sam James <s...@gentoo.org> (2021-02-10)
 # Causes circular dep with opam
 # seq -> opam-installer -> opam-format -> re -> seq

Reply via email to