Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 10 Aug 2018 11:40:28 +0000 (UTC)
From:      Dave Cottlehuber <dch@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r476828 - in head/www/py-graphite-api: . files
Message-ID:  <201808101140.w7ABeSul022449@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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@skunkwerks.at>
+# Created by: Dave Cottlehuber <dch@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%%"



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201808101140.w7ABeSul022449>