Skip to content

Commit

Permalink
news/sabnzbdplus: Update to 3.5.0
Browse files Browse the repository at this point in the history
PR:		261548
  • Loading branch information
frenchie authored and fsmeets committed Jan 30, 2022
1 parent 472a942 commit d763116
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 13 deletions.
5 changes: 3 additions & 2 deletions news/sabnzbdplus/Makefile
@@ -1,5 +1,5 @@
PORTNAME= sabnzbdplus
DISTVERSION= 3.4.2
DISTVERSION= 3.5.0
PORTEPOCH= 1
CATEGORIES= news
MASTER_SITES= https://github.com/sabnzbd/sabnzbd/releases/download/${DISTVERSION}/
Expand All @@ -22,10 +22,11 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cheetah3>=0:devel/py-cheetah3@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}sabyenc3>=0:news/py-sabyenc3@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}guessit>0:multimedia/py-guessit@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}puremagic>0:sysutils/py-puremagic@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}pysocks>0:net/py-pysocks@${PY_FLAVOR} \
par2repair:archivers/par2cmdline \
unrar:archivers/unrar

USES= python:3.6+ shebangfix gettext
USES= python:3.7+ shebangfix gettext
USE_RC_SUBR= sabnzbd

SHEBANG_FILES= SABnzbd.py tools/msgfmt.py
Expand Down
6 changes: 3 additions & 3 deletions news/sabnzbdplus/distinfo
@@ -1,3 +1,3 @@
TIMESTAMP = 1634462649
SHA256 (SABnzbd-3.4.2-src.tar.gz) = fd2c91e15aa667657dd7c960872fbff148467e88fe2d8c8e6e81fcc2e3402842
SIZE (SABnzbd-3.4.2-src.tar.gz) = 2979084
TIMESTAMP = 1643442337
SHA256 (SABnzbd-3.5.0-src.tar.gz) = 139e60f7616c8e99796d287bbedd58fa7f63567b562fcfcef249a615d2b89f02
SIZE (SABnzbd-3.5.0-src.tar.gz) = 5098259
16 changes: 8 additions & 8 deletions news/sabnzbdplus/files/patch-sabnzbd_newsunpack.py
@@ -1,11 +1,11 @@
--- sabnzbd/newsunpack.py.orig 2021-10-15 06:30:37 UTC
--- sabnzbd/newsunpack.py.orig 2022-01-28 10:50:34 UTC
+++ sabnzbd/newsunpack.py
@@ -127,6 +127,8 @@ def find_programs(curdir):
if not sabnzbd.newsunpack.SEVEN_COMMAND:
sabnzbd.newsunpack.SEVEN_COMMAND = find_on_path("7za")
if not sabnzbd.newsunpack.SEVEN_COMMAND:
+ sabnzbd.newsunpack.SEVEN_COMMAND = find_on_path("7zz")
+ if not sabnzbd.newsunpack.SEVEN_COMMAND:
sabnzbd.newsunpack.SEVEN_COMMAND = find_on_path("7z")
@@ -136,6 +136,8 @@ def find_programs(curdir: str):
if not sabnzbd.newsunpack.SEVENZIP_COMMAND:
sabnzbd.newsunpack.SEVENZIP_COMMAND = find_on_path("7za") # 7za = 7z stand-alone executable
if not sabnzbd.newsunpack.SEVENZIP_COMMAND:
+ sabnzbd.newsunpack.SEVENZIP_COMMAND = find_on_path("7zz")
+ if not sabnzbd.newsunpack.SEVENZIP_COMMAND:
sabnzbd.newsunpack.SEVENZIP_COMMAND = find_on_path("7z")

if not (sabnzbd.WIN32 or sabnzbd.DARWIN):

0 comments on commit d763116

Please sign in to comment.