network/flexget: Updated for version 2.2.16.

Signed-off-by: Dimitris Zlatanidis <d.zlatanidis@gmail.com>
This commit is contained in:
Dimitris Zlatanidis 2016-08-12 16:46:03 +03:00 committed by Willy Sudiarto Raharjo
parent 1a290a1051
commit 0245a3f7f0
No known key found for this signature in database
GPG key ID: 887B8374D7333381
3 changed files with 10 additions and 14 deletions

View file

@ -5,10 +5,3 @@ plugins for sites that do not provide any kind of useful feeds.
FlexGet is extremely useful in conjunction with applications which have
watch directory support, such as rtorrent.
Optional dependencies: Flask - for web interface
CherryPy - for web interface
guppy - for memusage plugin
Note: FlexGet provide some special version from dependencies such as:
- BeautifulSoup4 >=4.1, !=4.2.0, <4.4

View file

@ -28,7 +28,7 @@
SRCNAM=FlexGet
PRGNAM=${SRCNAM,,}
VERSION=${VERSION:-1.2.358}
VERSION=${VERSION:-2.2.16}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@ -39,7 +39,7 @@ OUTPUT=${OUTPUT:-/tmp}
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
i?86) export ARCH=i486 ;;
i?86) export ARCH=i586 ;;
arm*) export ARCH=arm ;;
*) export ARCH=$( uname -m ) ;;
esac
@ -58,7 +58,10 @@ find -L . \
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
-o -perm 511 \) -exec chmod 755 {} \; -o \
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
# Fix requirement 'flask-restplus' working with newer version
sed -i "s/restplus=/restplus>/" requirements.txt
python setup.py install --root=$PKG

View file

@ -1,10 +1,10 @@
PRGNAM="flexget"
VERSION="1.2.358"
VERSION="2.2.16"
HOMEPAGE="http://flexget.com/"
DOWNLOAD="https://pypi.python.org/packages/source/F/FlexGet/FlexGet-1.2.358.tar.gz"
MD5SUM="4d140cf39139d7a99dc213e70687c5bb"
DOWNLOAD="https://pypi.python.org/packages/b0/2b/c872b8637c34d7d3aa3a9cbb2f1162d1abd980658fe2013d58db5a690e9a/FlexGet-2.2.16.tar.gz"
MD5SUM="378ed9d5a985b3c662947c586b71aa03"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="Jinja2 feedparser SQLAlchemy PyYAML BeautifulSoup4 html5lib PyRSS2Gen pynzb progressbar jsonschema python-tvrage tmdb3 rpyc path.py guessit APScheduler"
REQUIRES="feedparser SQLAlchemy PyYAML BeautifulSoup4 html5lib PyRSS2Gen pynzb rpyc path.py pathlib guessit APScheduler CherryPy Flask-RESTful flask-restplus Flask-Compress Flask-Login Flask-Cors pyparsing python-Safe python-future"
MAINTAINER="Dimitris Zlatanidis"
EMAIL="d.zlatanidis@gmail.com"