diff --git a/packages/3rdparty/download/CouchPotatoServer/meta b/packages/3rdparty/download/CouchPotatoServer/meta deleted file mode 100644 index e3bcd56436..0000000000 --- a/packages/3rdparty/download/CouchPotatoServer/meta +++ /dev/null @@ -1,38 +0,0 @@ -################################################################################ -# This file is part of OpenELEC - http://www.openelec.tv -# Copyright (C) 2009-2012 Stephan Raue (stephan@openelec.tv) -# Copyright (C) 2011 Anthony Nash (nash.ant@gmail.com) -# -# 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="CouchPotatoServer" -PKG_VERSION="5c0d8a7" -PKG_REV="1" -PKG_ARCH="any" -PKG_LICENSE="OSS" -PKG_SITE="https://github.com/RuudBurger/CouchPotatoServer" -PKG_URL="$DISTRO_SRC/$PKG_NAME-$PKG_VERSION.tar.xz" -PKG_DEPENDS="Python SABnzbd" -PKG_BUILD_DEPENDS="toolchain Python" -PKG_PRIORITY="optional" -PKG_SECTION="service/downloadmanager" -PKG_SHORTDESC="CouchPotatoServer: automated movie downloading." -PKG_LONGDESC="CouchPotatoServer: automated movie downloading." - -PKG_IS_ADDON="no" - -PKG_AUTORECONF="no" diff --git a/packages/3rdparty/download/CouchPotatoServer/patches/CouchPotatoServer-move-cache.patch b/packages/3rdparty/download/CouchPotatoServer/patches/CouchPotatoServer-move-cache.patch deleted file mode 100644 index 80953fb67f..0000000000 --- a/packages/3rdparty/download/CouchPotatoServer/patches/CouchPotatoServer-move-cache.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/couchpotato/runner.py b/couchpotato/runner.py -index c0b7eb8..3a550f9 100644 ---- a/couchpotato/runner.py -+++ b/couchpotato/runner.py -@@ -112,7 +112,7 @@ def runCouchPotato(options, base_path, args, data_dir = None, log_dir = None, En - Env.set('data_dir', data_dir) - Env.set('log_path', os.path.join(log_dir, 'CouchPotato.log')) - Env.set('db_path', 'sqlite:///' + db_path) -- Env.set('cache_dir', os.path.join(data_dir, 'cache')) -+ Env.set('cache_dir', os.path.join(data_dir, 'cache.cpv2')) - Env.set('cache', FileSystemCache(os.path.join(Env.get('cache_dir'), 'python'))) - Env.set('console_log', options.console_log) - Env.set('quiet', options.quiet) diff --git a/tools/mkpkg/mkpkg_couchpotatoserver b/tools/mkpkg/mkpkg_couchpotatoserver deleted file mode 100755 index 4f4c7c8d03..0000000000 --- a/tools/mkpkg/mkpkg_couchpotatoserver +++ /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 CouchPotatoServer.git ]; then - git clone git://github.com/RuudBurger/CouchPotatoServer.git CouchPotatoServer.git - fi - - cd CouchPotatoServer.git - git pull - GIT_REV=`git log -n1 --format=%h` - cd .. - -echo "copying sources..." - rm -rf CouchPotatoServer-$GIT_REV - cp -R CouchPotatoServer.git CouchPotatoServer-$GIT_REV - -echo "cleaning sources..." - rm -rf CouchPotatoServer-$GIT_REV/.git - -echo "packing sources..." - tar cvJf CouchPotatoServer-$GIT_REV.tar.xz CouchPotatoServer-$GIT_REV - -echo "remove temporary sourcedir..." - rm -rf CouchPotatoServer-$GIT_REV