bump to 1.2.359

This commit is contained in:
Sébastien Leduc 2015-10-11 12:20:59 +02:00
parent d63e87e24a
commit 4ef052d711
3 changed files with 40 additions and 23 deletions

View file

@ -1,6 +1,6 @@
pkgbase = flexget
pkgdesc = Automate downloading or processing content (torrents, podcasts, etc.) from different sources like RSS-feeds, html-pages, various sites and more.
pkgver = 1.2.358
pkgver = 1.2.359
pkgrel = 1
url = http://flexget.com/
changelog = ChangeLog
@ -27,18 +27,27 @@ pkgbase = flexget
depends = python2-tmdb3
depends = python2-pynzb
depends = python2-apscheduler
depends = python2-flask
depends = python2-flask-restful
depends = python2-ordereddict
depends = python2-flask-restplus072
depends = python2-cherrypy>=3.7.0
depends = python2-flask-assets>=0.11
depends = python2-cssmin
depends = python2-flask-compress
depends = python2-flask-login>=0.3.2
depends = python2-libsass>=0.8.3
optdepends = python2-guppy: for memusage plugin
optdepends = python2-transmissionrpc: Transmission support
optdepends = python2-cherrypy: web interface
optdepends = python2-flask: web interface
source = https://pypi.python.org/packages/source/F/FlexGet/FlexGet-1.2.358.tar.gz
optdepends = python2-rarfile: decompress plugin
source = https://pypi.python.org/packages/source/F/FlexGet/FlexGet-1.2.359.tar.gz
source = flexget.service
source = http://download.flexget.com/ChangeLog
source = fix_beautifulsoup_4_4_0.patch
sha256sums = ad0925023beb155e77bdafb6cd8e668e02bfc12e5c863c3212d200d457ed40d4
sha256sums = 6b7aebbf5d8311df91955585d29423a1118dd43ccbc58b2e43930605d09414f0
sha256sums = e2c3a958ed0c286337cd37fba1d6cbdf4306c57fcddf2b9cc43615ce80ae83aa
sha256sums = dcc1bc676b8c2b798fa9a7e0ed2b6853323e9e9d8ff696696dddeaf29cbc13d6
sha256sums = 7d65e71ea411f12fd6fb7ed4aa859ab21c83882d68abc78c8a0e8dbd4a96b7b4
sha256sums = daf5c63bbad7be570a9280e855527ba3a225790592e3026784216ea1b3ed92db
pkgname = flexget

View file

@ -5,7 +5,7 @@
pkgname=flexget
_pkgname=FlexGet
pkgver=1.2.358
pkgver=1.2.359
pkgrel=1
pkgdesc="Automate downloading or processing content (torrents, podcasts, etc.) from different sources like RSS-feeds, html-pages, various sites and more."
@ -34,12 +34,20 @@ depends=('python2'
'python2-tmdb3' #AUR#
'python2-pynzb' #AUR#
'python2-apscheduler' #AUR#
# undocumented in FlexGet.egg-info/requires.txt
'python2-flask'
'python2-flask-restful' #AUR#
'python2-ordereddict'
'python2-flask-restplus072'
'python2-cherrypy>=3.7.0'
'python2-flask-assets>=0.11' #AUR#
'python2-cssmin' #AUR#
'python2-flask-compress'
'python2-flask-login>=0.3.2'
'python2-libsass>=0.8.3'
)
optdepends=('python2-guppy: for memusage plugin' #AUR#
'python2-transmissionrpc: Transmission support' #AUR#
'python2-cherrypy: web interface'
'python2-flask: web interface'
'python2-rarfile: decompress plugin' #AUR#
)
makedepends=('python2-paver'
'python2-setuptools'
@ -53,10 +61,10 @@ source=("https://pypi.python.org/packages/source/F/FlexGet/${_pkgname}-${pkgver}
changelog=ChangeLog
sha256sums=('ad0925023beb155e77bdafb6cd8e668e02bfc12e5c863c3212d200d457ed40d4'
sha256sums=('6b7aebbf5d8311df91955585d29423a1118dd43ccbc58b2e43930605d09414f0'
'e2c3a958ed0c286337cd37fba1d6cbdf4306c57fcddf2b9cc43615ce80ae83aa'
'dcc1bc676b8c2b798fa9a7e0ed2b6853323e9e9d8ff696696dddeaf29cbc13d6'
'7d65e71ea411f12fd6fb7ed4aa859ab21c83882d68abc78c8a0e8dbd4a96b7b4')
'daf5c63bbad7be570a9280e855527ba3a225790592e3026784216ea1b3ed92db')
prepare() {
cd "${_pkgname}"-"${pkgver}"

View file

@ -1,11 +1,11 @@
--- pavement.py 2015-09-03 08:12:10.000000000 +0200
+++ pavement.py 2015-09-16 13:04:39.543483185 +0200
@@ -25,7 +25,7 @@
# guessit 0.10.4 stops supporting python 2.6, the tests also start failing on 2.7
# Path keeps messing about with case, so anything under 6.2 will be broken now
install_requires = ['FeedParser>=5.1.3', 'SQLAlchemy >=0.7.5, !=0.9.0, <1.999', 'PyYAML',
- 'beautifulsoup4>=4.1, !=4.2.0, <4.4', 'html5lib>=0.11', 'PyRSS2Gen', 'pynzb', 'progressbar', 'rpyc',
+ 'beautifulsoup4>=4.1, !=4.2.0', 'html5lib>=0.11', 'PyRSS2Gen', 'pynzb', 'progressbar', 'rpyc',
'jinja2', 'requests>=1.0, !=2.4.0, <2.99', 'python-dateutil!=2.0, !=2.2', 'jsonschema>=2.0',
'python-tvrage', 'tmdb3', 'path.py>=6.2', 'guessit>=0.9.3, <0.10.4', 'apscheduler']
if sys.version_info < (2, 7):
--- pavement.py 2015-10-09 08:12:11.000000000 +0200
+++ pavement.py.new 2015-10-11 12:03:40.205022796 +0200
@@ -24,7 +24,7 @@
# There is a bug in requests 2.4.0 where it leaks urllib3 exceptions
install_requires = [
'FeedParser>=5.1.3', 'SQLAlchemy >=0.7.5, !=0.9.0, <1.999', 'PyYAML',
- 'beautifulsoup4>=4.1, !=4.2.0, <4.4', 'html5lib>=0.11', 'PyRSS2Gen', 'pynzb', 'progressbar', 'rpyc',
+ 'beautifulsoup4>=4.1, !=4.2.0', 'html5lib>=0.11', 'PyRSS2Gen', 'pynzb', 'progressbar', 'rpyc',
'jinja2', 'requests>=1.0, !=2.4.0, <2.99', 'python-dateutil!=2.0, !=2.2', 'jsonschema>=2.0',
'python-tvrage', 'tmdb3', 'path.py', 'guessit>=0.9.3, <0.10.4', 'apscheduler',
'flask>=0.7', 'flask-restful>=0.3.3', 'ordereddict>=1.1', 'flask-restplus==0.7.2', 'cherrypy>=3.7.0',