svn commit: r476828 - in head/www/py-graphite-api: . files
Dave Cottlehuber
dch at FreeBSD.org
Fri Aug 10 11:40:29 UTC 2018
Author: dch
Date: Fri Aug 10 11:40:28 2018
New Revision: 476828
URL: https://svnweb.freebsd.org/changeset/ports/476828
Log:
www/py-graphite-api: join wordwrapped rc.d script
While committing, the rc.d script got word wrapped and simply doesn't work
as intended when creating the log files directory if not already
present.
Reported by: Pierre Guinoiseau <pierre at guinoiseau.nz>
Approved by: jrm
MFH: 2018Q3
Differential Revision: https://reviews.freebsd.org/D16550
Modified:
head/www/py-graphite-api/Makefile
head/www/py-graphite-api/files/graphiteapi.in
Modified: head/www/py-graphite-api/Makefile
==============================================================================
--- head/www/py-graphite-api/Makefile Fri Aug 10 10:20:15 2018 (r476827)
+++ head/www/py-graphite-api/Makefile Fri Aug 10 11:40:28 2018 (r476828)
@@ -1,9 +1,9 @@
-# Created by: Dave Cottlehuber <dch at skunkwerks.at>
+# Created by: Dave Cottlehuber <dch at FreeBSD.org>
# $FreeBSD$
PORTNAME= graphite-api
PORTVERSION= 1.1.3
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= www python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
Modified: head/www/py-graphite-api/files/graphiteapi.in
==============================================================================
--- head/www/py-graphite-api/files/graphiteapi.in Fri Aug 10 10:20:15 2018 (r476827)
+++ head/www/py-graphite-api/files/graphiteapi.in Fri Aug 10 11:40:28 2018 (r476828)
@@ -55,8 +55,7 @@ start_precmd="start_precmd"
start_precmd()
{
- test -d "%%GRAPHITEAPI_LOGDIR%%" || install -d -o
- ${graphiteapi_user} \
+ test -d "%%GRAPHITEAPI_LOGDIR%%" || install -d -o ${graphiteapi_user} \
-g ${graphiteapi_group} -m 0750 "%%GRAPHITEAPI_LOGDIR%%"
test -d "%%GRAPHITEAPI_TMPDIR%%" || install -d -o ${graphiteapi_user} \
-g ${graphiteapi_group} -m 0750 "%%GRAPHITEAPI_TMPDIR%%"
More information about the svn-ports-head
mailing list