From bf91fbf29e09467da3b0e7152ee15424931d9c17 Mon Sep 17 00:00:00 2001 From: Stefan Saraev Date: Tue, 9 Apr 2013 20:56:20 +0300 Subject: [PATCH] remove package 'vdr-dynamite' - dynamite never worked as should. especialy with vdr-sc and dvbapi --- .../3rdparty/multimedia/vdr-dynamite/build | 32 -------------- .../3rdparty/multimedia/vdr-dynamite/meta | 37 ---------------- tools/mkpkg/mkpkg_vdr-dynamite | 43 ------------------- 3 files changed, 112 deletions(-) delete mode 100755 packages/3rdparty/multimedia/vdr-dynamite/build delete mode 100644 packages/3rdparty/multimedia/vdr-dynamite/meta delete mode 100755 tools/mkpkg/mkpkg_vdr-dynamite diff --git a/packages/3rdparty/multimedia/vdr-dynamite/build b/packages/3rdparty/multimedia/vdr-dynamite/build deleted file mode 100755 index eabef2a6a8..0000000000 --- a/packages/3rdparty/multimedia/vdr-dynamite/build +++ /dev/null @@ -1,32 +0,0 @@ -#!/bin/sh - -################################################################################ -# This file is part of OpenELEC - http://www.openelec.tv -# Copyright (C) 2009-2012 Stephan Raue (stephan@openelec.tv) -# -# 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, 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 OpenELEC.tv; see the file COPYING. If not, write to -# the Free Software Foundation, 51 Franklin Street, Suite 500, Boston, MA 02110, USA. -# http://www.gnu.org/copyleft/gpl.html -################################################################################ - -. config/options $1 - -VDR_DIR=`basename $BUILD/vdr-[0-9]*` - -# dont build parallel - MAKEFLAGS=-j1 - -cd $PKG_BUILD - make VDRDIR="../$VDR_DIR" LIBDIR="." LOCALEDIR="./locale" - diff --git a/packages/3rdparty/multimedia/vdr-dynamite/meta b/packages/3rdparty/multimedia/vdr-dynamite/meta deleted file mode 100644 index 113d821255..0000000000 --- a/packages/3rdparty/multimedia/vdr-dynamite/meta +++ /dev/null @@ -1,37 +0,0 @@ -################################################################################ -# This file is part of OpenELEC - http://www.openelec.tv -# Copyright (C) 2009-2012 Stephan Raue (stephan@openelec.tv) -# -# 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, 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 OpenELEC.tv; see the file COPYING. If not, write to -# the Free Software Foundation, 51 Franklin Street, Suite 500, Boston, MA 02110, USA. -# http://www.gnu.org/copyleft/gpl.html -################################################################################ - -PKG_NAME="vdr-dynamite" -PKG_VERSION="914af24" -PKG_REV="1" -PKG_ARCH="any" -PKG_LICENSE="GPL" -PKG_SITE="http://projects.vdr-developer.org/projects/plg-dynamite" -PKG_URL="$DISTRO_SRC/$PKG_NAME-$PKG_VERSION.tar.xz" -PKG_DEPENDS="vdr systemd" -PKG_BUILD_DEPENDS="toolchain vdr systemd" -PKG_PRIORITY="optional" -PKG_SECTION="multimedia" -PKG_SHORTDESC="vdr-dynamite turns the dvbdevices into hotpluggable devices. They can be dynamically attached and detached while vdr is running." -PKG_LONGDESC="This plugin turns the dvbdevices into hotpluggable devices. They can be dynamically attached and detached while vdr is running." - -PKG_IS_ADDON="no" - -PKG_AUTORECONF="no" diff --git a/tools/mkpkg/mkpkg_vdr-dynamite b/tools/mkpkg/mkpkg_vdr-dynamite deleted file mode 100755 index c3d493f9ef..0000000000 --- a/tools/mkpkg/mkpkg_vdr-dynamite +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh -################################################################################ -# This file is part of OpenELEC - http://www.openelec.tv -# Copyright (C) 2009-2012 Stephan Raue (stephan@openelec.tv) -# -# 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, 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 OpenELEC.tv; see the file COPYING. If not, write to -# the Free Software Foundation, 51 Franklin Street, Suite 500, Boston, MA 02110, USA. -# http://www.gnu.org/copyleft/gpl.html -################################################################################ - -echo "getting sources..." - if [ ! -d vdr-dynamite.git ]; then - git clone git://projects.vdr-developer.org/vdr-plugin-dynamite.git vdr-dynamite.git - fi - - cd vdr-dynamite.git - git pull - GIT_REV=`git log -n1 --format=%h` - cd .. - -echo "copying sources..." - rm -rf vdr-dynamite-$GIT_REV - cp -R vdr-dynamite.git vdr-dynamite-$GIT_REV - -echo "cleaning sources..." - rm -rf vdr-dynamite-$GIT_REV/.git - -echo "packing sources..." - tar cvJf vdr-dynamite-$GIT_REV.tar.xz vdr-dynamite-$GIT_REV - -echo "remove temporary sourcedir..." - rm -rf vdr-dynamite-$GIT_REV