From owner-svn-ports-head@freebsd.org Tue Jul 11 21:43:29 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C8D8BDAC950; Tue, 11 Jul 2017 21:43:29 +0000 (UTC) (envelope-from mat@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 mx1.freebsd.org (Postfix) with ESMTPS id 97CAC68DAF; Tue, 11 Jul 2017 21:43:29 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v6BLhSnp002397; Tue, 11 Jul 2017 21:43:28 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v6BLhSQS002394; Tue, 11 Jul 2017 21:43:28 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201707112143.v6BLhSQS002394@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Tue, 11 Jul 2017 21:43:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r445550 - in head/net-mgmt: nrpe nrpe-ssl nrpe3 X-SVN-Group: ports-head X-SVN-Commit-Author: mat X-SVN-Commit-Paths: in head/net-mgmt: nrpe nrpe-ssl nrpe3 X-SVN-Commit-Revision: 445550 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.23 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: Tue, 11 Jul 2017 21:43:29 -0000 Author: mat Date: Tue Jul 11 21:43:28 2017 New Revision: 445550 URL: https://svnweb.freebsd.org/changeset/ports/445550 Log: Fix dupplicate PKGBASE. Sponsored by: Absolight Modified: head/net-mgmt/nrpe-ssl/Makefile (contents, props changed) head/net-mgmt/nrpe/Makefile (contents, props changed) head/net-mgmt/nrpe3/Makefile (contents, props changed) Modified: head/net-mgmt/nrpe-ssl/Makefile ============================================================================== --- head/net-mgmt/nrpe-ssl/Makefile Tue Jul 11 21:03:09 2017 (r445549) +++ head/net-mgmt/nrpe-ssl/Makefile Tue Jul 11 21:43:28 2017 (r445550) @@ -5,7 +5,7 @@ PKGNAMESUFFIX= -ssl COMMENT= Nagios Remote Plugin Executor (SSL version) -CONFLICTS= nrpe-2.* +CONFLICTS= nrpe nrpe3 OPTIONS_SLAVE= SSL Modified: head/net-mgmt/nrpe/Makefile ============================================================================== --- head/net-mgmt/nrpe/Makefile Tue Jul 11 21:03:09 2017 (r445549) +++ head/net-mgmt/nrpe/Makefile Tue Jul 11 21:43:28 2017 (r445550) @@ -12,7 +12,7 @@ COMMENT?= Nagios Remote Plugin Executor LICENSE= GPLv2 -CONFLICTS= nrpe-ssl-2.* nrpe-3.* +CONFLICTS?= nrpe-ssl nrpe3 USES= perl5 USE_PERL5= build Modified: head/net-mgmt/nrpe3/Makefile ============================================================================== --- head/net-mgmt/nrpe3/Makefile Tue Jul 11 21:03:09 2017 (r445549) +++ head/net-mgmt/nrpe3/Makefile Tue Jul 11 21:43:28 2017 (r445550) @@ -5,13 +5,14 @@ PORTNAME= nrpe PORTVERSION= 3.2.0 PORTREVISION?= 0 CATEGORIES= net-mgmt +PKGNAMESUFFIX= 3 MAINTAINER= zeising@FreeBSD.org COMMENT?= Nagios Remote Plugin Executor LICENSE= GPLv2 -CONFLICTS= nrpe-2.* nrpe-ssl-2.* +CONFLICTS= nrpe nrpe-ssl USE_GITHUB= yes GH_ACCOUNT= NagiosEnterprises