From owner-svn-ports-all@freebsd.org Fri Sep 21 21:20:57 2018 Return-Path: Delivered-To: svn-ports-all@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 8DCFF10A46FA; Fri, 21 Sep 2018 21:20:57 +0000 (UTC) (envelope-from 0mp@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 444AB70D86; Fri, 21 Sep 2018 21:20:57 +0000 (UTC) (envelope-from 0mp@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 3F4BD12658; Fri, 21 Sep 2018 21:20:57 +0000 (UTC) (envelope-from 0mp@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w8LLKvEG001707; Fri, 21 Sep 2018 21:20:57 GMT (envelope-from 0mp@FreeBSD.org) Received: (from 0mp@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w8LLKug9001705; Fri, 21 Sep 2018 21:20:56 GMT (envelope-from 0mp@FreeBSD.org) Message-Id: <201809212120.w8LLKug9001705@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: 0mp set sender to 0mp@FreeBSD.org using -f From: Mateusz Piotrowski <0mp@FreeBSD.org> Date: Fri, 21 Sep 2018 21:20:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r480310 - head/net-mgmt/prometheus2 X-SVN-Group: ports-head X-SVN-Commit-Author: 0mp X-SVN-Commit-Paths: head/net-mgmt/prometheus2 X-SVN-Commit-Revision: 480310 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Sep 2018 21:20:57 -0000 Author: 0mp Date: Fri Sep 21 21:20:56 2018 New Revision: 480310 URL: https://svnweb.freebsd.org/changeset/ports/480310 Log: net-mgmt/prometheus2: Fix a path in pkg-plist. Fix the following installation phase error: cp: /usr/local/etc/newsyslog.conf.d/prometheus.conf: No such file or directory It was caused by a relative path being specified in pkg-plist instead of an absolute one (a leading "/" was missing). PR: 231548 Reviewed by: dor, krion Approved by: dor (maintainer), krion (mentor) Sponsored by: Bally Wulff Games & Entertainment GmbH Differential Revision: https://reviews.freebsd.org/D17273 Modified: head/net-mgmt/prometheus2/Makefile head/net-mgmt/prometheus2/pkg-plist Modified: head/net-mgmt/prometheus2/Makefile ============================================================================== --- head/net-mgmt/prometheus2/Makefile Fri Sep 21 20:33:16 2018 (r480309) +++ head/net-mgmt/prometheus2/Makefile Fri Sep 21 21:20:56 2018 (r480310) @@ -3,6 +3,7 @@ PORTNAME= prometheus DISTVERSIONPREFIX= v DISTVERSION= 2.3.2 +PORTREVISION= 1 CATEGORIES= net-mgmt MAINTAINER= dor.bsd@xm0.uk Modified: head/net-mgmt/prometheus2/pkg-plist ============================================================================== --- head/net-mgmt/prometheus2/pkg-plist Fri Sep 21 20:33:16 2018 (r480309) +++ head/net-mgmt/prometheus2/pkg-plist Fri Sep 21 21:20:56 2018 (r480310) @@ -1,6 +1,6 @@ bin/prometheus bin/promtool -%%USE_SYSLOG%%@sample %%ETCDIR%%/newsyslog.conf.sample etc/newsyslog.conf.d/%%PORTNAME%%.conf +%%USE_SYSLOG%%@sample %%ETCDIR%%/newsyslog.conf.sample /etc/newsyslog.conf.d/%%PORTNAME%%.conf %%USE_SYSLOG%%@sample %%ETCDIR%%/syslog.d.conf.sample /etc/syslog.d/%%PORTNAME%%.conf %%PROMETHEUS_CONSOLE_LIBRARIES_DIR%%/menu.lib %%PROMETHEUS_CONSOLE_LIBRARIES_DIR%%/prom.lib