Bug 169375 - [PATCH] www/py27-gunicorn: update to 0.14.4, take maintainership
Summary: [PATCH] www/py27-gunicorn: update to 0.14.4, take maintainership
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: Olivier Duchateau
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-06-24 16:10 UTC by koobs
Modified: 2012-07-18 18:21 UTC (History)
1 user (show)

See Also:


Attachments
py27-gunicorn-0.14.4.patch (1.21 KB, patch)
2012-06-24 16:10 UTC, koobs
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description koobs 2012-06-24 16:10:07 UTC
- Update to 0.14.4
- Take maintainership (multiple timeouts)
- Add OPTIONSFILE

Port maintainer (kristaps.kulis@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-06-24 16:10:15 UTC
Maintainer of www/py-gunicorn,

Please note that PR ports/169375 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/169375

-- 
Edwin Groothuis via the GNATS Auto Assign Tool
edwin@FreeBSD.org
Comment 2 Edwin Groothuis freebsd_committer freebsd_triage 2012-06-24 16:10:17 UTC
State Changed
From-To: open->feedback

Awaiting maintainers feedback (via the GNATS Auto Assign Tool)
Comment 3 koobs 2012-06-24 16:17:17 UTC
Deprecates ports/167982
Comment 4 Olivier Duchateau freebsd_committer freebsd_triage 2012-07-01 08:57:39 UTC
Responsible Changed
From-To: freebsd-ports-bugs->olivierd

I'll take it.
Comment 5 dfilter service freebsd_committer freebsd_triage 2012-07-18 18:18:37 UTC
Author: olivierd
Date: Wed Jul 18 17:18:25 2012
New Revision: 301105
URL: http://svn.freebsd.org/changeset/ports/301105

Log:
  - Update to 0.14.5
  - Change maintainer address
  - Convert to new options framework
  
  PR:	169375 (update to 0.14.4)
  Submitted by: koobs <koobs.freebsd@gmail.com>
  Approved by:	miwi, rene (mentors)

Modified:
  head/www/py-gunicorn/Makefile
  head/www/py-gunicorn/distinfo

Modified: head/www/py-gunicorn/Makefile
==============================================================================
--- head/www/py-gunicorn/Makefile	Wed Jul 18 17:06:02 2012	(r301104)
+++ head/www/py-gunicorn/Makefile	Wed Jul 18 17:18:25 2012	(r301105)
@@ -6,32 +6,35 @@
 #
 
 PORTNAME=	gunicorn
-PORTVERSION=	0.14.2
+PORTVERSION=	0.14.5
 CATEGORIES=	www python
 MASTER_SITES=	CHEESESHOP
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
 
-MAINTAINER=	kristaps.kulis@gmail.com
+MAINTAINER=	koobs.freebsd@gmail.com
 COMMENT=	Python WSGI server for unix
 
 USE_PYTHON=	2.5-2.7
 USE_PYDISTUTILS=	easy_install
 
-OPTIONS=	EVENTLET "Add asynchronous worker Eventlet" off \
-		GEVENT "Add asynchronous worker Gevent" off \
-		SETPROC "Add support to change process name" off
+OPTIONS_DEFINE= EVENTLET GEVENT SETPROC
+EVENTLET_DESC=  Add Eventlet asynchronous worker
+GEVENT_DESC=    Add Gevent asynchronous worker
+SETPROC_DESC=   Change process name support
+
+OPTIONSFILE?=   ${PORT_DBDIR}/py-${PORTNAME}/options
 
 .include <bsd.port.options.mk>
 
-.if defined(WITH_EVENTLET)
+.if ${PORT_OPTIONS:MEVENTLET}
 RUN_DEPENDS+=	${PYTHON_PKGNAMEPREFIX}eventlet>=0.9:${PORTSDIR}/net/py-eventlet
 .endif
 
-.if defined(WITH_GEVENT)
+.if ${PORT_OPTIONS:MGEVENT}
 RUN_DEPENDS+=	${PYTHON_SITELIBDIR}/gevent/__init__.py:${PORTSDIR}/devel/py-gevent
 .endif
 
-.if defined(WITH_SETPROC)
+.if ${PORT_OPTIONS:MSETPROC}
 RUN_DEPENDS+=	${PYTHON_SITELIBDIR}/setproctitle.so:${PORTSDIR}/devel/py-setproctitle
 .endif
 

Modified: head/www/py-gunicorn/distinfo
==============================================================================
--- head/www/py-gunicorn/distinfo	Wed Jul 18 17:06:02 2012	(r301104)
+++ head/www/py-gunicorn/distinfo	Wed Jul 18 17:18:25 2012	(r301105)
@@ -1,2 +1,2 @@
-SHA256 (gunicorn-0.14.2.tar.gz) = d99eb8c8074763877db28e1996ba70ac4df18ec497f2f27ece276cf54419ee65
-SIZE (gunicorn-0.14.2.tar.gz) = 203588
+SHA256 (gunicorn-0.14.5.tar.gz) = cef7820010cc5d1bf134e25b0ab22097b67886ae72c42a774d555be605a9b422
+SIZE (gunicorn-0.14.5.tar.gz) = 228742
_______________________________________________
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"
Comment 6 Olivier Duchateau freebsd_committer freebsd_triage 2012-07-18 18:21:02 UTC
State Changed
From-To: feedback->closed

Committed, with minor changes. Thanks!