Bug 170947 - [PATCH] mail/policyd2: update to 2.0.12
Summary: [PATCH] mail/policyd2: update to 2.0.12
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Jason Helfman
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-08-24 01:40 UTC by Jason Helfman
Modified: 2012-08-24 18:00 UTC (History)
1 user (show)

See Also:


Attachments
file.diff (1.48 KB, patch)
2012-08-24 01:40 UTC, Jason Helfman
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Jason Helfman freebsd_committer freebsd_triage 2012-08-24 01:40:01 UTC
- Update to 2.0.12

Buildlogs: http://redports.org/buildarchive/20120820161734-22614/

Port maintainer (chifeng@gmail.com) is cc'd.

Generated with FreeBSD Port Tools 0.99_6 (mode: update, diff: ports)
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2012-08-24 01:40:22 UTC
Responsible Changed
From-To: freebsd-ports-bugs->jgh

Submitter has GNATS access (via the GNATS Auto Assign Tool)
Comment 2 Edwin Groothuis freebsd_committer freebsd_triage 2012-08-24 01:40:24 UTC
Maintainer of mail/policyd2,

Please note that PR ports/170947 has just been submitted.

If it contains a patch for an upgrade, an enhancement or a bug fix
you agree on, reply to this email stating that you approve the patch
and a committer will take care of it.

The full text of the PR can be found at:
    http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/170947

-- 
Edwin Groothuis via the GNATS Auto Assign Tool
edwin@FreeBSD.org
Comment 3 Edwin Groothuis freebsd_committer freebsd_triage 2012-08-24 01:40:26 UTC
State Changed
From-To: open->feedback

Awaiting maintainers feedback (via the GNATS Auto Assign Tool)
Comment 4 chifeng 2012-08-24 08:43:44 UTC
Please commit, it works well after my test.

On Thu, Aug 23, 2012 at 5:40 PM, Edwin Groothuis <edwin@freebsd.org> wrote:

> Maintainer of mail/policyd2,
>
> Please note that PR ports/170947 has just been submitted.
>
> If it contains a patch for an upgrade, an enhancement or a bug fix
> you agree on, reply to this email stating that you approve the patch
> and a committer will take care of it.
>
> The full text of the PR can be found at:
>     http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/170947
>
> --
> Edwin Groothuis via the GNATS Auto Assign Tool
> edwin@FreeBSD.org
>



-- 
*Regards.*
**- Chifeng
Comment 5 Jason Helfman freebsd_committer freebsd_triage 2012-08-24 17:26:40 UTC
State Changed
From-To: feedback->open

maintainer approved
Comment 6 Jason Helfman freebsd_committer freebsd_triage 2012-08-24 17:58:11 UTC
State Changed
From-To: open->closed

Committed. Thanks!
Comment 7 dfilter service freebsd_committer freebsd_triage 2012-08-24 17:58:11 UTC
Author: jgh
Date: Fri Aug 24 16:57:56 2012
New Revision: 303093
URL: http://svn.freebsd.org/changeset/ports/303093

Log:
  - update to 2.0.12, adopt optionsNG
  
  PR:	170947
  Submitted by:	jgh@
  Approved by: maintainer, chifeng@gmail.com

Modified:
  head/mail/policyd2/Makefile   (contents, props changed)
  head/mail/policyd2/distinfo   (contents, props changed)

Modified: head/mail/policyd2/Makefile
==============================================================================
--- head/mail/policyd2/Makefile	Fri Aug 24 16:57:20 2012	(r303092)
+++ head/mail/policyd2/Makefile	Fri Aug 24 16:57:56 2012	(r303093)
@@ -6,10 +6,9 @@
 #
 
 PORTNAME=	policyd2
-PORTVERSION=	2.0.11
-PORTREVISION=	1
+PORTVERSION=	2.0.12
 CATEGORIES=	mail
-MASTER_SITES=	http://devlabs.linuxassist.net/attachments/download/187/
+MASTER_SITES=	http://devlabs.linuxassist.net/attachments/download/${DOWNLOAD_FOLDER}/
 DISTNAME=	cluebringer-${PORTVERSION}
 
 MAINTAINER=	chifeng@gmail.com
@@ -25,24 +24,24 @@ USE_PHP=	yes
 NO_BUILD=	yes
 USE_RC_SUBR=	policyd2
 BINMODE=	0755
+DOWNLOAD_FOLDER=	222
 
 WEBUIDIR=	${PREFIX}/www/policyd
 PORTDOCS=	AUTHORS ChangeLog INSTALL TODO WISHLIST
 PORTDATA=	*
 
-OPTIONS=	MYSQL "Use MySQL support" On \
-		PostgreSQL "Use PostgreSQL support" Off \
-		SQLite "Use SQLite support" Off
+OPTIONS_DEFINE=	MYSQL PGSQL SQLITE
+OPTIONS_DEFAULT=	MYSQL
 
 .include <bsd.port.pre.mk>
 USE_PHP=	pdo_mysql
-.if defined(WITH_MYSQL)
+.if ${PORT_OPTIONS:MMYSQL}
 RUN_DEPENDS+=	p5-DBD-mysql>=0:${PORTSDIR}/databases/p5-DBD-mysql
 .endif
-.if defined(WITH_SQLite)
+.if ${PORT_OPTIONS:MSQLITE}
 RUN_DEPENDS+=	p5-DBD-SQLite>=0:${PORTSDIR}/databases/p5-DBD-SQLite
 .endif
-.if defined(WITH_PostgreSQL)
+.if ${PORT_OPTIONS:MPGSQL}
 RUN_DEPENDS+=	p5-DBD-Pg>=0:${PORTSDIR}/databases/p5-DBD-Pg
 .endif
 
@@ -69,7 +68,7 @@ post-install:
 	@cd ${WRKSRC} && ${COPYTREE_SHARE} database ${DATADIR}
 .endif
 
-.if !defined(NOPORTDOCS)
+.if ${PORT_OPTIONS:MDOCS}
 	@${INSTALL} -d ${DOCSDIR}
 	@cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}
 .endif

Modified: head/mail/policyd2/distinfo
==============================================================================
--- head/mail/policyd2/distinfo	Fri Aug 24 16:57:20 2012	(r303092)
+++ head/mail/policyd2/distinfo	Fri Aug 24 16:57:56 2012	(r303093)
@@ -1,2 +1,2 @@
-SHA256 (cluebringer-2.0.11.tar.gz) = 7095454c4d62335b9b4c297d51d058877d3a44e697d5d8de8968dd21898d464c
-SIZE (cluebringer-2.0.11.tar.gz) = 139075
+SHA256 (cluebringer-2.0.12.tar.gz) = 7141fd64a0056957331d5c1a3af8c21d77519c34b370748d6d3fb37556bd091d
+SIZE (cluebringer-2.0.12.tar.gz) = 140169
_______________________________________________
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"