Bug 181486 - [PATCH] devel/py-mongoengine: update to 0.8.4
Summary: [PATCH] devel/py-mongoengine: update to 0.8.4
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: William Grzybowski
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-08-23 15:30 UTC by William Grzybowski
Modified: 2013-09-08 16:10 UTC (History)
0 users

See Also:


Attachments
py-mongoengine.patch (951 bytes, patch)
2013-08-23 15:30 UTC, William Grzybowski
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description William Grzybowski freebsd_committer freebsd_triage 2013-08-23 15:30:00 UTC
	- Update to 0.8.4
        Also I wouild like to take maintainsership if it no longer interest you.

Fix: See attached patch
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2013-08-23 15:30:08 UTC
Responsible Changed
From-To: freebsd-ports-bugs->freebsd-python

freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool)
Comment 2 Edwin Groothuis freebsd_committer freebsd_triage 2013-08-23 15:30:09 UTC
Maintainer of devel/py-mongoengine,

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

-- 
Edwin Groothuis via the GNATS Auto Assign Tool
edwin@FreeBSD.org
Comment 3 Edwin Groothuis freebsd_committer freebsd_triage 2013-08-23 15:30:10 UTC
State Changed
From-To: open->feedback

Awaiting maintainers feedback (via the GNATS Auto Assign Tool)
Comment 4 William Grzybowski freebsd_committer freebsd_triage 2013-08-23 15:30:33 UTC
Responsible Changed
From-To: freebsd-python->wg

I'll take it.
Comment 5 dfilter service freebsd_committer freebsd_triage 2013-09-08 14:56:22 UTC
Author: wg
Date: Sun Sep  8 13:56:14 2013
New Revision: 326727
URL: http://svnweb.freebsd.org/changeset/ports/326727

Log:
  devel/py-mongoengine: update to 0.8.4
  
  - Update to 0.8.4
  - Use zip_safe=False
  - Remove leading article from COMMENT
  - Take maintainership
  
  Changes: http://docs.mongoengine.org/en/latest/changelog.html
  
  PR:		ports/181486
  Submitted by:	wg (myself)
  Approved by:	maintainer (timeout)

Modified:
  head/devel/py-mongoengine/Makefile
  head/devel/py-mongoengine/distinfo

Modified: head/devel/py-mongoengine/Makefile
==============================================================================
--- head/devel/py-mongoengine/Makefile	Sun Sep  8 13:47:40 2013	(r326726)
+++ head/devel/py-mongoengine/Makefile	Sun Sep  8 13:56:14 2013	(r326727)
@@ -2,21 +2,24 @@
 # $FreeBSD$
 
 PORTNAME=	mongoengine
-PORTVERSION=	0.7.9
+PORTVERSION=	0.8.4
 CATEGORIES=	devel python
 MASTER_SITES=	CHEESESHOP
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
 
 MAINTAINER=	mail@derzinn.de
-COMMENT=	A Python Object-Document-Mapper for working with MongoDB
+COMMENT=	Object-Document-Mapper for working with MongoDB
 
 LICENSE=	MIT
 
-RUN_DEPENDS=	pymongo>=2.1:${PORTSDIR}/databases/pymongo
+RUN_DEPENDS=	pymongo>=2.5:${PORTSDIR}/databases/pymongo
 
 USE_PYTHON=		yes
 USE_PYDISTUTILS=	easy_install
 PYDISTUTILS_NOEGGINFO=	yes
-PLIST_FILES=		%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%
+
+post-patch:
+	@${REINPLACE_CMD} 's|classifiers=CLASSIFIERS,|classifiers=CLASSIFIERS,zip_safe=False,|' \
+		${WRKSRC}/setup.py
 
 .include <bsd.port.mk>

Modified: head/devel/py-mongoengine/distinfo
==============================================================================
--- head/devel/py-mongoengine/distinfo	Sun Sep  8 13:47:40 2013	(r326726)
+++ head/devel/py-mongoengine/distinfo	Sun Sep  8 13:56:14 2013	(r326727)
@@ -1,2 +1,2 @@
-SHA256 (mongoengine-0.7.9.tar.gz) = 729e6dd366b049a0dcd1694a36f1a8166d4643dd2074ff6c9c085aa349164673
-SIZE (mongoengine-0.7.9.tar.gz) = 103159
+SHA256 (mongoengine-0.8.4.tar.gz) = 623057f31ea693b0ad7a18bbbced20d60aea8628031102305bd18dcd6e6a3d86
+SIZE (mongoengine-0.8.4.tar.gz) = 124353
_______________________________________________
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 William Grzybowski freebsd_committer freebsd_triage 2013-09-08 14:57:05 UTC
State Changed
From-To: feedback->closed

Committed. Thanks!
Comment 7 dfilter service freebsd_committer freebsd_triage 2013-09-08 16:03:52 UTC
Author: wg
Date: Sun Sep  8 15:03:44 2013
New Revision: 326740
URL: http://svnweb.freebsd.org/changeset/ports/326740

Log:
  devel/py-mongoengine: take maintainership
  
  - Take maintainership (forgot to do so in the last commit)
  
  PR:		ports/181486
  Approved by:	maintainer (timeout)

Modified:
  head/devel/py-mongoengine/Makefile

Modified: head/devel/py-mongoengine/Makefile
==============================================================================
--- head/devel/py-mongoengine/Makefile	Sun Sep  8 15:03:15 2013	(r326739)
+++ head/devel/py-mongoengine/Makefile	Sun Sep  8 15:03:44 2013	(r326740)
@@ -7,7 +7,7 @@ CATEGORIES=	devel python
 MASTER_SITES=	CHEESESHOP
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
 
-MAINTAINER=	mail@derzinn.de
+MAINTAINER=	wg@FreeBSD.org
 COMMENT=	Object-Document-Mapper for working with MongoDB
 
 LICENSE=	MIT
_______________________________________________
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"