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)
This commit is contained in:
Kurt Jaeger 2016-06-14 16:52:10 +00:00
parent d2bf359343
commit 38e97072cc
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=416898
3 changed files with 11 additions and 10 deletions

View File

@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= sabnzbdplus
PORTVERSION= 1.0.2
PORTVERSION= 1.0.3
CATEGORIES= news
MASTER_SITES= SF
DISTNAME= SABnzbd-${PORTVERSION}-src

View File

@ -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

View File

@ -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)