From 26461ddebfd2afeba546674fc81b41c93f9d579a Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 15 Jan 2011 15:44:27 +0100 Subject: [PATCH] feedparser: remove package, already included in SABnzbd Signed-off-by: Stephan Raue --- packages/python/web/feedparser/build | 34 ------------------ packages/python/web/feedparser/install | 25 ------------- packages/python/web/feedparser/meta | 36 ------------------- .../patches/feedparser-4.1-setuptools.patch | 9 ----- 4 files changed, 104 deletions(-) delete mode 100755 packages/python/web/feedparser/build delete mode 100755 packages/python/web/feedparser/install delete mode 100644 packages/python/web/feedparser/meta delete mode 100644 packages/python/web/feedparser/patches/feedparser-4.1-setuptools.patch diff --git a/packages/python/web/feedparser/build b/packages/python/web/feedparser/build deleted file mode 100755 index 61dfd24093..0000000000 --- a/packages/python/web/feedparser/build +++ /dev/null @@ -1,34 +0,0 @@ -#!/bin/sh - -################################################################################ -# This file is part of OpenELEC - http://www.openelec.tv -# Copyright (C) 2009-2011 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, 675 Mass Ave, Cambridge, MA 02139, USA. -# http://www.gnu.org/copyleft/gpl.html -################################################################################ - -. config/options $1 - -export PYTHONXCPREFIX="$SYSROOT_PREFIX/usr" -export LDFLAGS="$LDFLAGS -L$SYSROOT_PREFIX/usr/lib -L$SYSROOT_PREFIX/lib" - -cd $PKG_BUILD - -python setup.py build --cross-compile -python setup.py install -O1 --skip-build --prefix /usr --root .install - -find .install -name "*.py" -exec rm -rf "{}" ";" -find .install -name "*.pyo" -exec rm -rf "{}" ";" diff --git a/packages/python/web/feedparser/install b/packages/python/web/feedparser/install deleted file mode 100755 index a9c8b9924b..0000000000 --- a/packages/python/web/feedparser/install +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh - -################################################################################ -# This file is part of OpenELEC - http://www.openelec.tv -# Copyright (C) 2009-2011 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, 675 Mass Ave, Cambridge, MA 02139, USA. -# http://www.gnu.org/copyleft/gpl.html -################################################################################ - -. config/options $1 - -cp -PR $PKG_BUILD/.install/* $INSTALL diff --git a/packages/python/web/feedparser/meta b/packages/python/web/feedparser/meta deleted file mode 100644 index 3787eaf471..0000000000 --- a/packages/python/web/feedparser/meta +++ /dev/null @@ -1,36 +0,0 @@ -################################################################################ -# This file is part of OpenELEC - http://www.openelec.tv -# Copyright (C) 2009-2011 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, 675 Mass Ave, Cambridge, MA 02139, USA. -# http://www.gnu.org/copyleft/gpl.html -################################################################################ - -PKG_NAME="feedparser" -PKG_VERSION="4.1" -PKG_REV="1" -PKG_ARCH="any" -PKG_LICENSE="MIT" -PKG_SITE="http://www.feedparser.org/" -PKG_URL="$OPENELEC_SRC/$PKG_NAME-$PKG_VERSION.tar.bz2" -PKG_DEPENDS="Python distribute" -PKG_BUILD_DEPENDS="toolchain Python distribute distutilscross" -PKG_PRIORITY="optional" -PKG_SECTION="python/web" -PKG_SHORTDESC="feedparser: Parse RSS and Atom feeds in Python." -PKG_LONGDESC="Parse RSS and Atom feeds in Python." -PKG_IS_ADDON="no" - -PKG_AUTORECONF="no" diff --git a/packages/python/web/feedparser/patches/feedparser-4.1-setuptools.patch b/packages/python/web/feedparser/patches/feedparser-4.1-setuptools.patch deleted file mode 100644 index 2f80c162e1..0000000000 --- a/packages/python/web/feedparser/patches/feedparser-4.1-setuptools.patch +++ /dev/null @@ -1,9 +0,0 @@ -diff -Naur feedparser-4.1/setup.py feedparser-4.1.patch/setup.py ---- feedparser-4.1/setup.py 2006-01-10 19:13:27.000000000 +0100 -+++ feedparser-4.1.patch/setup.py 2010-10-19 01:30:43.326660941 +0200 -@@ -1,4 +1,4 @@ --from distutils.core import setup -+from setuptools import setup - - # patch distutils if it can't cope with the "classifiers" or "download_url" - # keywords (prior to python 2.3.0).