diff options
author | jbeich <jbeich@FreeBSD.org> | 2016-07-11 00:32:22 +0800 |
---|---|---|
committer | jbeich <jbeich@FreeBSD.org> | 2016-07-11 00:32:22 +0800 |
commit | f818de362bd2afc0e8c291e1ffd13b111566b1a8 (patch) | |
tree | 8eeaae34d7c4181cfaa257fb98c6886ad4a55b3a /www | |
parent | f7f510355ecf00cffb9f48be538449c10ed80d1f (diff) | |
download | freebsd-ports-gnome-f818de362bd2afc0e8c291e1ffd13b111566b1a8.tar.gz freebsd-ports-gnome-f818de362bd2afc0e8c291e1ffd13b111566b1a8.tar.zst freebsd-ports-gnome-f818de362bd2afc0e8c291e1ffd13b111566b1a8.zip |
www/py-flexget: unbreak runtime after r401600 and r401602
PR: 204729
Submitted by: koobs
Approved by: portmgr's bustage blanket
Diffstat (limited to 'www')
-rw-r--r-- | www/py-flexget/Makefile | 1 | ||||
-rw-r--r-- | www/py-flexget/files/patch-pavement.py | 14 |
2 files changed, 15 insertions, 0 deletions
diff --git a/www/py-flexget/Makefile b/www/py-flexget/Makefile index 56c36140453f..60bd9f1a065a 100644 --- a/www/py-flexget/Makefile +++ b/www/py-flexget/Makefile @@ -3,6 +3,7 @@ PORTNAME= flexget PORTVERSION= 1.2.348 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= www python MASTER_SITES= CHEESESHOP diff --git a/www/py-flexget/files/patch-pavement.py b/www/py-flexget/files/patch-pavement.py new file mode 100644 index 000000000000..bcdd3a9ebd5d --- /dev/null +++ b/www/py-flexget/files/patch-pavement.py @@ -0,0 +1,14 @@ +--- pavement.py.orig 2015-09-03 06:12:10 UTC ++++ pavement.py +@@ -25,9 +25,9 @@ options = environment.options + # 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', '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'] ++ 'python-tvrage', 'tmdb3', 'path.py>=6.2', 'guessit>=0.9.3', 'apscheduler'] + if sys.version_info < (2, 7): + # argparse is part of the standard library in python 2.7+ + install_requires.append('argparse') |