From koobs.freebsd@gmail.com  Wed Jun 13 10:21:12 2012
Return-Path: <koobs.freebsd@gmail.com>
Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52])
	by hub.freebsd.org (Postfix) with ESMTP id 10BDE106564A
	for <FreeBSD-gnats-submit@freebsd.org>; Wed, 13 Jun 2012 10:21:12 +0000 (UTC)
	(envelope-from koobs.freebsd@gmail.com)
Received: from mail-pz0-f44.google.com (mail-pz0-f44.google.com [209.85.210.44])
	by mx1.freebsd.org (Postfix) with ESMTP id D655E8FC0C
	for <FreeBSD-gnats-submit@freebsd.org>; Wed, 13 Jun 2012 10:21:11 +0000 (UTC)
Received: by dacx6 with SMTP id x6so947890dac.17
        for <FreeBSD-gnats-submit@freebsd.org>; Wed, 13 Jun 2012 03:21:11 -0700 (PDT)
Received: by 10.68.189.65 with SMTP id gg1mr49381688pbc.10.1339582870971;
        Wed, 13 Jun 2012 03:21:10 -0700 (PDT)
Received: from freebsd-90-amd64.elysium (ppp59-167-128-11.static.internode.on.net. [59.167.128.11])
        by mx.google.com with ESMTPS id gh10sm5303305pbc.19.2012.06.13.03.21.07
        (version=TLSv1/SSLv3 cipher=OTHER);
        Wed, 13 Jun 2012 03:21:09 -0700 (PDT)
Received: by freebsd-90-amd64.elysium (Postfix, from userid 1001)
	id D9209177FA; Wed, 13 Jun 2012 20:21:03 +1000 (EST)
Message-Id: <20120613102103.D9209177FA@freebsd-90-amd64.elysium>
Date: Wed, 13 Jun 2012 20:21:03 +1000 (EST)
From: koobs <koobs.freebsd@gmail.com>
To: FreeBSD-gnats-submit@freebsd.org
Cc: brock@cotcomsol.com
Subject: [PATCH] net-mgmt/bsnmp-regex: update to 0.6
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         169027
>Category:       ports
>Synopsis:       [PATCH] net-mgmt/bsnmp-regex: update to 0.6
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    koobs
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Wed Jun 13 10:30:05 UTC 2012
>Closed-Date:    Sun Mar 24 06:10:16 UTC 2013
>Last-Modified:  Sun Mar 24 06:10:16 UTC 2013
>Originator:     koobs
>Release:        FreeBSD 9.0-RELEASE amd64
>Organization:
>Environment:
System: FreeBSD freebsd-90-amd64.elysium 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Sat May  5 14:51:14 EST
>Description:
- Update to 0.6
- Update pkg-desc (WWW)
- Add LICENSE
- Add CPPFLAGS to fix pcre preprocessor warning
- OPTIONSng'ify
- Add DEBUG knob

Port maintainer (brock@cotcomsol.com) is cc'd.

Generated with FreeBSD Port Tools 0.99_6 (mode: update, diff: ports)
>How-To-Repeat:
>Fix:

--- bsnmp-regex-0.6.patch begins here ---
diff -ruN --exclude=CVS /usr/ports/net-mgmt/bsnmp-regex/Makefile ./Makefile
--- /usr/ports/net-mgmt/bsnmp-regex/Makefile	2012-02-14 23:45:27.000000000 +1100
+++ ./Makefile	2012-06-13 20:15:04.000000000 +1000
@@ -6,21 +6,31 @@
 #
 
 PORTNAME=	bsnmp-regex
-PORTVERSION=	0.5
-PORTREVISION=	1
+PORTVERSION=	0.6
 CATEGORIES=	net-mgmt
-MASTER_SITES=	http://memberwebs.com/stef/software/bsnmp-regex/
+MASTER_SITES=	http://thewalter.net/stef/software/bsnmp-regex/
 
 MAINTAINER=	brock@cotcomsol.com
 COMMENT=	A bsnmpd module allowing creation of counters from log files
 
+LICENSE=	BSD
+
 GNU_CONFIGURE=	yes
+CPPFLAGS+=	"-I${LOCALBASE}/include"
 
-OPTIONS=	PCRE	"Use PCRE instead of the default regex library"	Off
+OPTIONS_DEFINE=	DEBUG PCRE
+DEBUG_DESC=	Compile binaries in debug mode
+PCRE_DESC=	Use PCRE instead of the default regex library
 
 .include <bsd.port.options.mk>
 
-.if defined(WITH_PCRE)
+.if ${PORT_OPTIONS:MDEBUG}
+CONFIGURE_ARGS+=--enable-debug
+.else
+CONFIGURE_ARGS+=--disable-debug
+.endif
+
+.if ${PORT_OPTIONS:MPCRE}
 LIB_DEPENDS+=		pcre.1:${PORTSDIR}/devel/pcre
 CONFIGURE_ARGS+=	--enable-pcre
 .else
diff -ruN --exclude=CVS /usr/ports/net-mgmt/bsnmp-regex/distinfo ./distinfo
--- /usr/ports/net-mgmt/bsnmp-regex/distinfo	2011-03-20 23:53:44.000000000 +1100
+++ ./distinfo	2012-06-13 19:31:04.000000000 +1000
@@ -1,2 +1,2 @@
-SHA256 (bsnmp-regex-0.5.tar.gz) = fefebcb5412c22f7f18cd81177b91310481d3e8d553caf42b9cbf60a0d79cd4f
-SIZE (bsnmp-regex-0.5.tar.gz) = 293547
+SHA256 (bsnmp-regex-0.6.tar.gz) = 5e0ac1112a62c40719e031c04061f5154e5f43d2d6515c4987e774b34ea146bc
+SIZE (bsnmp-regex-0.6.tar.gz) = 326579
diff -ruN --exclude=CVS /usr/ports/net-mgmt/bsnmp-regex/pkg-descr ./pkg-descr
--- /usr/ports/net-mgmt/bsnmp-regex/pkg-descr	2009-03-09 10:46:45.000000000 +1100
+++ ./pkg-descr	2012-06-13 19:19:02.000000000 +1000
@@ -3,4 +3,4 @@
 to count the number of matches, or parse out specific text/numbers. The
 resulting data can then be queried or graphed with the usual SNMP tools.
 
-WWW: http://memberwebs.com/stef/software/bsnmp-regex/
+WWW:	http://thewalter.net/stef/software/bsnmp-regex/
--- bsnmp-regex-0.6.patch ends here ---

>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->sylvio 
Responsible-Changed-By: sylvio 
Responsible-Changed-When: Wed Jun 13 11:14:20 UTC 2012 
Responsible-Changed-Why:  
I'll take it. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=169027 

From: Kubilay Kocak <kubilay.kocak@pitcre.ws>
To: bug-followup@FreeBSD.org, koobs.freebsd@gmail.com
Cc:  
Subject: Re: ports/169027: [PATCH] net-mgmt/bsnmp-regex: update to 0.6
Date: Wed, 29 Aug 2012 18:57:53 +1000

 --f46d043bd88a0ec5fb04c863c121
 Content-Type: text/plain; charset=UTF-8
 
 Adding redports build log to push this along:
 
 https://redports.org/buildarchive/20120813100537-58229/
 
 --f46d043bd88a0ec5fb04c863c121
 Content-Type: text/html; charset=UTF-8
 
 Adding redports build log to push this along:<br><br><a href="https://redports.org/buildarchive/20120813100537-58229/">https://redports.org/buildarchive/20120813100537-58229/</a><br>
 
 --f46d043bd88a0ec5fb04c863c121--
Responsible-Changed-From-To: sylvio->jhale 
Responsible-Changed-By: jhale 
Responsible-Changed-When: Tue Oct 16 12:33:08 UTC 2012 
Responsible-Changed-Why:  
I'll take it. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=169027 
Responsible-Changed-From-To: jhale->koobs 
Responsible-Changed-By: koobs 
Responsible-Changed-When: Sat Mar 23 23:18:17 UTC 2013 
Responsible-Changed-Why:  
I'll take it. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=169027 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/169027: commit references a PR
Date: Sun, 24 Mar 2013 05:47:43 +0000 (UTC)

 Author: koobs
 Date: Sun Mar 24 05:47:35 2013
 New Revision: 315101
 URL: http://svnweb.freebsd.org/changeset/ports/315101
 
 Log:
   - Update to 0.6
   - Take maintainership
   - Add LICENSE
   - Add CPPFLAGS to fix pcre preprocessor warning
   - Add DEBUG OPTION
   - Update WWW: and Tab->space in pkg-descr
   - Update COMMENT according to standards
   - Remove ABI version from pcre LIB_DEPENDS
   
   PR:		ports/169027
   Approved by:	rm (mentor)
 
 Modified:
   head/net-mgmt/bsnmp-regex/Makefile   (contents, props changed)
   head/net-mgmt/bsnmp-regex/distinfo   (contents, props changed)
   head/net-mgmt/bsnmp-regex/pkg-descr   (contents, props changed)
 
 Modified: head/net-mgmt/bsnmp-regex/Makefile
 ==============================================================================
 --- head/net-mgmt/bsnmp-regex/Makefile	Sun Mar 24 05:34:07 2013	(r315100)
 +++ head/net-mgmt/bsnmp-regex/Makefile	Sun Mar 24 05:47:35 2013	(r315101)
 @@ -2,23 +2,31 @@
  # $FreeBSD$
  
  PORTNAME=	bsnmp-regex
 -PORTVERSION=	0.5
 -PORTREVISION=	2
 +PORTVERSION=	0.6
  CATEGORIES=	net-mgmt
 -MASTER_SITES=	http://memberwebs.com/stef/software/bsnmp-regex/
 +MASTER_SITES=	http://thewalter.net/stef/software/bsnmp-regex/
  
 -MAINTAINER=	ports@FreeBSD.org
 -COMMENT=	A bsnmpd module allowing creation of counters from log files
 +MAINTAINER=	koobs@FreeBSD.org
 +COMMENT=	bsnmpd module allowing creation of counters from log files
 +
 +LICENSE=	BSD
  
  GNU_CONFIGURE=	yes
 +CPPFLAGS+=	"-I${LOCALBASE}/include"
  
 -OPTIONS_DEFINE=	PCRE
 +OPTIONS_DEFINE=	DEBUG PCRE
  PCRE_DESC=	Use PCRE instead of the default regex library
  
  .include <bsd.port.options.mk>
  
 +.if ${PORT_OPTIONS:MDEBUG}
 +CONFIGURE_ARGS+=--enable-debug
 +.else
 +CONFIGURE_ARGS+=--disable-debug
 +.endif
 +
  .if ${PORT_OPTIONS:MPCRE}
 -LIB_DEPENDS+=		pcre.3:${PORTSDIR}/devel/pcre
 +LIB_DEPENDS+=		pcre:${PORTSDIR}/devel/pcre
  CONFIGURE_ARGS+=	--enable-pcre
  .else
  CONFIGURE_ARGS+=	--disable-pcre
 
 Modified: head/net-mgmt/bsnmp-regex/distinfo
 ==============================================================================
 --- head/net-mgmt/bsnmp-regex/distinfo	Sun Mar 24 05:34:07 2013	(r315100)
 +++ head/net-mgmt/bsnmp-regex/distinfo	Sun Mar 24 05:47:35 2013	(r315101)
 @@ -1,2 +1,2 @@
 -SHA256 (bsnmp-regex-0.5.tar.gz) = fefebcb5412c22f7f18cd81177b91310481d3e8d553caf42b9cbf60a0d79cd4f
 -SIZE (bsnmp-regex-0.5.tar.gz) = 293547
 +SHA256 (bsnmp-regex-0.6.tar.gz) = 5e0ac1112a62c40719e031c04061f5154e5f43d2d6515c4987e774b34ea146bc
 +SIZE (bsnmp-regex-0.6.tar.gz) = 326579
 
 Modified: head/net-mgmt/bsnmp-regex/pkg-descr
 ==============================================================================
 --- head/net-mgmt/bsnmp-regex/pkg-descr	Sun Mar 24 05:34:07 2013	(r315100)
 +++ head/net-mgmt/bsnmp-regex/pkg-descr	Sun Mar 24 05:47:35 2013	(r315101)
 @@ -3,4 +3,4 @@ files, program output or other text data
  to count the number of matches, or parse out specific text/numbers. The
  resulting data can then be queried or graphed with the usual SNMP tools.
  
 -WWW: http://memberwebs.com/stef/software/bsnmp-regex/
 +WWW: http://thewalter.net/stef/software/bsnmp-regex/
 _______________________________________________
 svn-ports-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-ports-all
 To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
 
State-Changed-From-To: open->closed 
State-Changed-By: koobs 
State-Changed-When: Sun Mar 24 06:10:15 UTC 2013 
State-Changed-Why:  
Committed, with minor changes. Thanks! 

http://www.freebsd.org/cgi/query-pr.cgi?pr=169027 
>Unformatted:
