From owner-svn-ports-head@freebsd.org Fri Aug 10 11:40:29 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A853610679AF; Fri, 10 Aug 2018 11:40:29 +0000 (UTC) (envelope-from dch@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 580A08647F; Fri, 10 Aug 2018 11:40:29 +0000 (UTC) (envelope-from dch@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2CFA0278F5; Fri, 10 Aug 2018 11:40:29 +0000 (UTC) (envelope-from dch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w7ABeSLM022451; Fri, 10 Aug 2018 11:40:28 GMT (envelope-from dch@FreeBSD.org) Received: (from dch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w7ABeSul022449; Fri, 10 Aug 2018 11:40:28 GMT (envelope-from dch@FreeBSD.org) Message-Id: <201808101140.w7ABeSul022449@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dch set sender to dch@FreeBSD.org using -f From: Dave Cottlehuber Date: Fri, 10 Aug 2018 11:40:28 +0000 (UTC) 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 X-SVN-Group: ports-head X-SVN-Commit-Author: dch X-SVN-Commit-Paths: in head/www/py-graphite-api: . files X-SVN-Commit-Revision: 476828 X-SVN-Commit-Repository: ports 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.27 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: Fri, 10 Aug 2018 11:40:29 -0000 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 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 +# Created by: Dave Cottlehuber # $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%%"