svn commit: r387515 - in head/news/nzbget: . files
Guido Falsi
madpilot at FreeBSD.org
Tue May 26 22:32:24 UTC 2015
Author: madpilot
Date: Tue May 26 22:32:22 2015
New Revision: 387515
URL: https://svnweb.freebsd.org/changeset/ports/387515
Log:
- Update to 15.0
- Add 7Z option
PR: 200457
Submitted by: toxic at doobie.com (maintainer)
Modified:
head/news/nzbget/Makefile
head/news/nzbget/distinfo
head/news/nzbget/files/nzbget.in (contents, props changed)
head/news/nzbget/pkg-plist
Modified: head/news/nzbget/Makefile
==============================================================================
--- head/news/nzbget/Makefile Tue May 26 22:15:05 2015 (r387514)
+++ head/news/nzbget/Makefile Tue May 26 22:32:22 2015 (r387515)
@@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= nzbget
-PORTVERSION= 14.2
+PORTVERSION= 15.0
CATEGORIES= news
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-stable/${PORTVERSION}
@@ -30,7 +30,7 @@ python_OLD_CMD= /usr/bin/env python
OPTIONS_DEFINE= 7Z PYTHON RAR DOCS
OPTIONS_SINGLE= TLSLIB
OPTIONS_SINGLE_TLSLIB= GNUTLS OPENSSL
-OPTIONS_DEFAULT= GNUTLS PAR PYTHON RAR
+OPTIONS_DEFAULT= GNUTLS PAR PYTHON RAR 7Z
7Z_DESC= Support extraction of 7z archives
PYTHON_DESC= Support for python post-processing scripts
RAR_DESC= Support extraction of rar archives
Modified: head/news/nzbget/distinfo
==============================================================================
--- head/news/nzbget/distinfo Tue May 26 22:15:05 2015 (r387514)
+++ head/news/nzbget/distinfo Tue May 26 22:32:22 2015 (r387515)
@@ -1,2 +1,2 @@
-SHA256 (nzbget-14.2.tar.gz) = bb24afb47dc01766c5e5c02d7565190082c6e13ffed565969a2ec52e21104677
-SIZE (nzbget-14.2.tar.gz) = 1332612
+SHA256 (nzbget-15.0.tar.gz) = 3ef13f3e5917e4cda19c4fc0cd37e79967a19b4e3448c239ff24e37712a6cc0a
+SIZE (nzbget-15.0.tar.gz) = 1466814
Modified: head/news/nzbget/files/nzbget.in
==============================================================================
--- head/news/nzbget/files/nzbget.in Tue May 26 22:15:05 2015 (r387514)
+++ head/news/nzbget/files/nzbget.in Tue May 26 22:32:22 2015 (r387515)
@@ -21,9 +21,9 @@ load_rc_config ${name}
: ${nzbget_enable:=NO}
start_cmd="${name}_start"
-status_cmd="${command} status"
+status_cmd="${command} -L S"
stop_cmd="${name}_stop"
-command=%%PREFIX%%/sbin/nzbgetd
+command=%%PREFIX%%/bin/nzbget
nzbget_start()
{
@@ -31,13 +31,15 @@ nzbget_start()
# artificial sleep because it doesnt want to start
# after a restart without it
sleep .5
- ${command} start
+ ${command} -D
}
nzbget_stop()
{
echo "Stopping ${name}."
- ${command} stop
+ ${command} -Q
+ # artificial sleep because stop is backgrounded
+ sleep 3
}
run_rc_command "$1"
Modified: head/news/nzbget/pkg-plist
==============================================================================
--- head/news/nzbget/pkg-plist Tue May 26 22:15:05 2015 (r387514)
+++ head/news/nzbget/pkg-plist Tue May 26 22:32:22 2015 (r387515)
@@ -1,6 +1,5 @@
bin/nzbget
@sample etc/nzbget.conf.sample
-sbin/nzbgetd
@comment %%PORTDOCS%%%%DOCSDIR%%/COPYING
%%PORTDOCS%%%%DOCSDIR%%/AUTHORS
%%PORTDOCS%%%%DOCSDIR%%/ChangeLog
More information about the svn-ports-all
mailing list