summaryrefslogtreecommitdiff
path: root/news/sabnzbdplus
diff options
context:
space:
mode:
authorKurt Jaeger <pi@FreeBSD.org>2016-06-14 16:52:10 +0000
committerKurt Jaeger <pi@FreeBSD.org>2016-06-14 16:52:10 +0000
commit38e97072cc34dd54a52ce840ed6df272db551863 (patch)
tree193ace7d407620b2db2fe82dbafc31342c604d2c /news/sabnzbdplus
parentUpdate to 6.65. (diff)
news/sabnzbdplus: 1.0.2 -> 1.0.3
- Fix jobs hanging at 99% or 100% - Support X-DNZB-PASSWORD header for inders that use this - Prevent fatal "too many connections" issue - Show checksum errors reported by unrar - patch portlint-compliant PR: 210210 Submitted by: Ultima1252@gmail.com Approved by: joshruehlig@gmail.com (maintainer)
Notes
Notes: svn path=/head/; revision=416898
Diffstat (limited to 'news/sabnzbdplus')
-rw-r--r--news/sabnzbdplus/Makefile2
-rw-r--r--news/sabnzbdplus/distinfo5
-rw-r--r--news/sabnzbdplus/files/patch-SABnzbd.py14
3 files changed, 11 insertions, 10 deletions
diff --git a/news/sabnzbdplus/Makefile b/news/sabnzbdplus/Makefile
index 6ac26c28ac76..dee80c8f6285 100644
--- a/news/sabnzbdplus/Makefile
+++ b/news/sabnzbdplus/Makefile
@@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= sabnzbdplus
-PORTVERSION= 1.0.2
+PORTVERSION= 1.0.3
CATEGORIES= news
MASTER_SITES= SF
DISTNAME= SABnzbd-${PORTVERSION}-src
diff --git a/news/sabnzbdplus/distinfo b/news/sabnzbdplus/distinfo
index 6e259ae37eef..c53e35bb52c1 100644
--- a/news/sabnzbdplus/distinfo
+++ b/news/sabnzbdplus/distinfo
@@ -1,2 +1,3 @@
-SHA256 (SABnzbd-1.0.2-src.tar.gz) = 9ced2f4b9486674e8b0a920769710b16e7d96a9981d5aa47b6584f2c3a1e0b62
-SIZE (SABnzbd-1.0.2-src.tar.gz) = 2974940
+TIMESTAMP = 1465600692
+SHA256 (SABnzbd-1.0.3-src.tar.gz) = cf87d3f17fc03e8b3a4b3010261115c2ad7e2f773b5ede95a80025b340dbbd35
+SIZE (SABnzbd-1.0.3-src.tar.gz) = 2975111
diff --git a/news/sabnzbdplus/files/patch-SABnzbd.py b/news/sabnzbdplus/files/patch-SABnzbd.py
index 5eb452b146a8..d8334782f7af 100644
--- a/news/sabnzbdplus/files/patch-SABnzbd.py
+++ b/news/sabnzbdplus/files/patch-SABnzbd.py
@@ -1,6 +1,6 @@
---- SABnzbd.py.orig 2012-07-23 23:26:14.000000000 -0400
-+++ SABnzbd.py 2012-07-23 23:28:04.000000000 -0400
-@@ -40,6 +40,9 @@
+--- SABnzbd.py.orig 2016-06-04 11:45:01 UTC
++++ SABnzbd.py
+@@ -51,6 +51,9 @@ except:
print "The Python module Cheetah is required"
sys.exit(1)
@@ -8,10 +8,10 @@
+# instead of any version that may be installed otherwise.
+sys.path.insert(0,%%DATADIR%%)
import cherrypy
- if not cherrypy.__version__.startswith("3.2"):
- print "Sorry, requires Python module Cherrypy 3.2 (use the included version)"
-@@ -1011,7 +1014,7 @@
-
+ if [int(n) for n in cherrypy.__version__.split('.')] < [3, 8, 0]:
+ print 'Sorry, requires Python module Cherrypy 3.8.0+ (use the included version)'
+@@ -1006,7 +1009,7 @@ def main():
+
sabnzbd.MY_FULLNAME = os.path.normpath(os.path.abspath(sabnzbd.MY_FULLNAME))
sabnzbd.MY_NAME = os.path.basename(sabnzbd.MY_FULLNAME)
- sabnzbd.DIR_PROG = os.path.dirname(sabnzbd.MY_FULLNAME)