From owner-svn-ports-head@freebsd.org Tue Jun 14 16:52:11 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A3CD2B72584; Tue, 14 Jun 2016 16:52:11 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 622642643; Tue, 14 Jun 2016 16:52:11 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u5EGqA47022407; Tue, 14 Jun 2016 16:52:10 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u5EGqA2M022405; Tue, 14 Jun 2016 16:52:10 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201606141652.u5EGqA2M022405@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Tue, 14 Jun 2016 16:52:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r416898 - in head/news/sabnzbdplus: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Jun 2016 16:52:11 -0000 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)