Date: Tue, 14 Jun 2016 16:52:10 +0000 (UTC) From: Kurt Jaeger <pi@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r416898 - in head/news/sabnzbdplus: . files Message-ID: <201606141652.u5EGqA2M022405@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: pi Date: Tue Jun 14 16:52:10 2016 New Revision: 416898 URL: https://svnweb.freebsd.org/changeset/ports/416898 Log: 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) Modified: head/news/sabnzbdplus/Makefile head/news/sabnzbdplus/distinfo head/news/sabnzbdplus/files/patch-SABnzbd.py Modified: head/news/sabnzbdplus/Makefile ============================================================================== --- head/news/sabnzbdplus/Makefile Tue Jun 14 16:34:25 2016 (r416897) +++ head/news/sabnzbdplus/Makefile Tue Jun 14 16:52:10 2016 (r416898) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= sabnzbdplus -PORTVERSION= 1.0.2 +PORTVERSION= 1.0.3 CATEGORIES= news MASTER_SITES= SF DISTNAME= SABnzbd-${PORTVERSION}-src Modified: head/news/sabnzbdplus/distinfo ============================================================================== --- head/news/sabnzbdplus/distinfo Tue Jun 14 16:34:25 2016 (r416897) +++ head/news/sabnzbdplus/distinfo Tue Jun 14 16:52:10 2016 (r416898) @@ -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 Modified: head/news/sabnzbdplus/files/patch-SABnzbd.py ============================================================================== --- head/news/sabnzbdplus/files/patch-SABnzbd.py Tue Jun 14 16:34:25 2016 (r416897) +++ head/news/sabnzbdplus/files/patch-SABnzbd.py Tue Jun 14 16:52:10 2016 (r416898) @@ -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)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201606141652.u5EGqA2M022405>