From 93123491a6cfe84e4eed5ce9cfa262f773fd8e02 Mon Sep 17 00:00:00 2001 From: etobi Date: Sun, 5 Feb 2012 19:37:53 +0100 Subject: Dropped debian packaging --- debian/changelog | 5 ----- debian/compat | 1 - debian/control | 18 ------------------ debian/copyright | 39 --------------------------------------- debian/docs | 1 - debian/examples | 1 - debian/install | 6 ------ debian/links | 1 - debian/menuorg.xml.minimum | 17 ----------------- debian/postinst | 42 ------------------------------------------ debian/postrm | 40 ---------------------------------------- debian/rules | 20 -------------------- debian/watch | 2 -- 13 files changed, 193 deletions(-) delete mode 100644 debian/changelog delete mode 100644 debian/compat delete mode 100644 debian/control delete mode 100644 debian/copyright delete mode 100644 debian/docs delete mode 100644 debian/examples delete mode 100644 debian/install delete mode 100644 debian/links delete mode 100644 debian/menuorg.xml.minimum delete mode 100644 debian/postinst delete mode 100644 debian/postrm delete mode 100755 debian/rules delete mode 100644 debian/watch (limited to 'debian') diff --git a/debian/changelog b/debian/changelog deleted file mode 100644 index 211b475..0000000 --- a/debian/changelog +++ /dev/null @@ -1,5 +0,0 @@ -vdr-plugin-menuorg (0.4.0-1) UNRELEASED; urgency=low - - * This is just a dummy changelog!!! - - -- Tobias Grimm Sat, 22 Mar 2008 23:28:37 +0100 diff --git a/debian/compat b/debian/compat deleted file mode 100644 index 7ed6ff8..0000000 --- a/debian/compat +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/debian/control b/debian/control deleted file mode 100644 index b407284..0000000 --- a/debian/control +++ /dev/null @@ -1,18 +0,0 @@ -Source: vdr-plugin-menuorg -Section: misc -Priority: extra -Maintainer: Tobias Grimm -Build-Depends: debhelper (>= 5), cdbs, vdr-dev (>= 1.5.18), pkg-config, gettext, libxml++2.6-dev, libglibmm-2.4-dev -Standards-Version: 3.7.2 - -Package: vdr-plugin-menuorg -Architecture: any -Depends: ${shlibs:Depends}, ${vdr:Depends} -Conflicts: vdr-plugin-submenu (<< 0.0.2-35) -Replaces: vdr-plugin-submenu (<< 0.0.2-35) -Description: A VDR plug-in to reorganize the OSD main menu - This plug-in for the Linux Video Disc Recorder VDR allows the main menu in - VDR's On Screen Display to be reorganized. The order of the displayed menu - items can be changed and sub menus can be created. Besides this additional - "command" menu items can be added, which will execute any system commands. -XB-VDR-Patchlevel: ${vdr:Patchlevel} diff --git a/debian/copyright b/debian/copyright deleted file mode 100644 index 2e5e31e..0000000 --- a/debian/copyright +++ /dev/null @@ -1,39 +0,0 @@ -Upstream Homepage: - http://www.e-tobi.net/blog/pages/vdr-menuorg - -Upstream Authors: - Thomas Creutz - Tobias Grimm - -Debian Maintainers: - Tobias Grimm - -Copyright: - (C) 2007 - 2009 Tobias Grimm - (C) 2007 Thomas Creutz - -Copyright (Debian packaging): - (C) 2007 - 2008 Tobias Grimm - -License: - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA - 02110-1301, USA. - - The complete text of the GNU General Public License can be found - in /usr/share/common-licenses/GPL-2 on most Debian systems. - -License (Debian packaging): - The Debian packaging is licensed under the GPL, version 2 or any - later version, see /usr/share/common-licenses/GPL-2. diff --git a/debian/docs b/debian/docs deleted file mode 100644 index e845566..0000000 --- a/debian/docs +++ /dev/null @@ -1 +0,0 @@ -README diff --git a/debian/examples b/debian/examples deleted file mode 100644 index e8fc762..0000000 --- a/debian/examples +++ /dev/null @@ -1 +0,0 @@ -menuorg.xml diff --git a/debian/install b/debian/install deleted file mode 100644 index 2cef37e..0000000 --- a/debian/install +++ /dev/null @@ -1,6 +0,0 @@ -libvdr-menuorg.so.* usr/lib/vdr/plugins/ -menuorg.xml usr/share/vdr-plugin-menuorg/ -menuorg.dtd usr/share/vdr-plugin-menuorg/ -debian/menuorg.xml.minimum usr/share/vdr-plugin-menuorg/ -vdr-submenu2menuorg usr/bin/ -debian/tmp/usr/share/locale diff --git a/debian/links b/debian/links deleted file mode 100644 index 9ee0e40..0000000 --- a/debian/links +++ /dev/null @@ -1 +0,0 @@ -var/lib/vdr/plugins/menuorg.xml etc/vdr/plugins/menuorg.xml diff --git a/debian/menuorg.xml.minimum b/debian/menuorg.xml.minimum deleted file mode 100644 index 936088b..0000000 --- a/debian/menuorg.xml.minimum +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - diff --git a/debian/postinst b/debian/postinst deleted file mode 100644 index 5c804ef..0000000 --- a/debian/postinst +++ /dev/null @@ -1,42 +0,0 @@ -#!/bin/sh -# postinst script for vdr-plugin-menuorg -# -# see: dh_installdeb(1) - -set -e - -# summary of how this script can be called: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-remove' -# * `abort-deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - -MENUORG_XML=/var/lib/vdr/plugins/menuorg.xml - -case "$1" in - configure) - [ -e "$MENUORG_XML" ] || \ - cp /usr/share/vdr-plugin-menuorg/menuorg.xml.minimum "$MENUORG_XML" - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 diff --git a/debian/postrm b/debian/postrm deleted file mode 100644 index 965339e..0000000 --- a/debian/postrm +++ /dev/null @@ -1,40 +0,0 @@ -#!/bin/sh -# postrm script for vdr-plugin-menuorg -# -# see: dh_installdeb(1) - -set -e - -# summary of how this script can be called: -# * `remove' -# * `purge' -# * `upgrade' -# * `failed-upgrade' -# * `abort-install' -# * `abort-install' -# * `abort-upgrade' -# * `disappear' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - - -case "$1" in - purge) - rm -f /var/lib/vdr/plugins/menuorg.xml - ;; - remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) - ;; - - *) - echo "postrm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 diff --git a/debian/rules b/debian/rules deleted file mode 100755 index bef6d5f..0000000 --- a/debian/rules +++ /dev/null @@ -1,20 +0,0 @@ -#! /bin/sh /usr/share/vdr-dev/make-special-vdr.sh - -include /usr/share/cdbs/1/rules/debhelper.mk -#include /usr/share/cdbs/1/rules/dpatch.mk - -DEB_INSTALL_CHANGELOGS_ALL = HISTORY - -MAKE_OPTIONS = DVBDIR=/usr VDRDIR=/usr/include/vdr LIBDIR=. \ - LOCALEDIR=debian/tmp/usr/share/locale - -common-build-arch:: - $(MAKE) all $(MAKE_OPTIONS) - -cleanbuilddir:: - $(MAKE) -o .dependencies clean $(MAKE_OPTIONS) - rm -f libvdr-*.so.* - -common-binary-predeb-arch:: - sh /usr/share/vdr-dev/patchlevel.sh subst - sh /usr/share/vdr-dev/dependencies.sh diff --git a/debian/watch b/debian/watch deleted file mode 100644 index 7155818..0000000 --- a/debian/watch +++ /dev/null @@ -1,2 +0,0 @@ -version=2 -http://www.e-tobi.net/blog/pages/vdr-menuorg .*/files/vdr-menuorg-(.*)\.tar\.gz -- cgit v1.2.3