Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 9 Feb 2014 23:40:58 +0000 (UTC)
From:      Ruslan Makhmatkhanov <rm@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r343560 - in head: databases/zodb3 mail/py-Products.MailHost mail/py-Products.SecureMailHost mail/py-zope.sendmail net-p2p/py-transmissionrpc net/py-zope.proxy
Message-ID:  <201402092340.s19New4p096219@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rm
Date: Sun Feb  9 23:40:57 2014
New Revision: 343560
URL: http://svnweb.freebsd.org/changeset/ports/343560
QAT: https://qat.redports.org/buildarchive/r343560/

Log:
  - do not use easy_install, convert to auto-generated packing list
  - move DIST_SUBDIR upper, where appropriate
  - add trailing slash to WWW url, where appropriate
  - bump PORTREVISION

Deleted:
  head/databases/zodb3/pkg-plist
  head/mail/py-Products.MailHost/pkg-plist
  head/mail/py-Products.SecureMailHost/pkg-plist
  head/mail/py-zope.sendmail/pkg-plist
  head/net-p2p/py-transmissionrpc/pkg-plist
  head/net/py-zope.proxy/pkg-plist
Modified:
  head/databases/zodb3/Makefile
  head/mail/py-Products.MailHost/Makefile
  head/mail/py-Products.SecureMailHost/Makefile
  head/mail/py-zope.sendmail/Makefile
  head/mail/py-zope.sendmail/pkg-descr
  head/net-p2p/py-transmissionrpc/Makefile
  head/net/py-zope.proxy/Makefile

Modified: head/databases/zodb3/Makefile
==============================================================================
--- head/databases/zodb3/Makefile	Sun Feb  9 23:29:16 2014	(r343559)
+++ head/databases/zodb3/Makefile	Sun Feb  9 23:40:57 2014	(r343560)
@@ -3,6 +3,7 @@
 
 PORTNAME=	zodb
 PORTVERSION=	3.10.5
+PORTREVISION=	1
 CATEGORIES=	databases
 MASTER_SITES=	CHEESESHOP
 PKGNAMESUFFIX=	-py${PYTHON_SUFFIX}
@@ -20,11 +21,8 @@ RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}zcon
 		${PYTHON_PKGNAMEPREFIX}zclockfile>=1.0.0:${PORTSDIR}/devel/py-zclockfile \
 		${PYTHON_PKGNAMEPREFIX}zope.event>=1.0.0:${PORTSDIR}/devel/py-zope.event
 
-USE_PYTHON=	2
-USE_PYDISTUTILS=	easy_install
-PYEASYINSTALL_ARCHDEP=	yes
-PYDISTUTILS_PKGNAME=	ZODB3
-
-NO_STAGE=	yes
+USE_PYTHON=		2
+USE_PYDISTUTILS=	yes
+PYDISTUTILS_AUTOPLIST=	yes
 
 .include <bsd.port.mk>

Modified: head/mail/py-Products.MailHost/Makefile
==============================================================================
--- head/mail/py-Products.MailHost/Makefile	Sun Feb  9 23:29:16 2014	(r343559)
+++ head/mail/py-Products.MailHost/Makefile	Sun Feb  9 23:40:57 2014	(r343560)
@@ -2,6 +2,7 @@
 
 PORTNAME=	Products.MailHost
 PORTVERSION=	2.13.1
+PORTREVISION=	1
 CATEGORIES=	mail python zope
 MASTER_SITES=	CHEESESHOP
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
@@ -12,9 +13,9 @@ COMMENT=	Zope.sendmail integration for Z
 
 LICENSE=	ZPL21
 
-USE_PYTHON=	yes
-USE_PYDISTUTILS=easy_install
-USE_ZIP=	yes
+USE_PYTHON=		yes
+USE_PYDISTUTILS=	yes
+PYDISTUTILS_AUTOPLIST=	yes
+USE_ZIP=		yes
 
-NO_STAGE=	yes
 .include <bsd.port.mk>

Modified: head/mail/py-Products.SecureMailHost/Makefile
==============================================================================
--- head/mail/py-Products.SecureMailHost/Makefile	Sun Feb  9 23:29:16 2014	(r343559)
+++ head/mail/py-Products.SecureMailHost/Makefile	Sun Feb  9 23:40:57 2014	(r343560)
@@ -2,6 +2,7 @@
 
 PORTNAME=	Products.SecureMailHost
 PORTVERSION=	1.1.2
+PORTREVISION=	1
 CATEGORIES=	mail python zope
 MASTER_SITES=	CHEESESHOP
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
@@ -12,9 +13,9 @@ COMMENT=	Reimplementation of the standar
 
 LICENSE=	ZPL21
 
-USE_PYTHON=	yes
-USE_PYDISTUTILS=easy_install
-USE_ZIP=	yes
+USE_PYTHON=		yes
+USE_PYDISTUTILS=	yes
+PYDISTUTILS_AUTOPLIST=	yes
+USE_ZIP=		yes
 
-NO_STAGE=	yes
 .include <bsd.port.mk>

Modified: head/mail/py-zope.sendmail/Makefile
==============================================================================
--- head/mail/py-zope.sendmail/Makefile	Sun Feb  9 23:29:16 2014	(r343559)
+++ head/mail/py-zope.sendmail/Makefile	Sun Feb  9 23:40:57 2014	(r343560)
@@ -2,6 +2,7 @@
 
 PORTNAME=	zope.sendmail
 PORTVERSION=	3.7.5
+PORTREVISION=	1
 CATEGORIES=	mail python zope
 MASTER_SITES=	CHEESESHOP
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
@@ -20,8 +21,8 @@ RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}tran
 		${PYTHON_PKGNAMEPREFIX}zope.configuration>=0:${PORTSDIR}/devel/py-zope.configuration \
 		${PYTHON_PKGNAMEPREFIX}zope.security>=0:${PORTSDIR}/security/py-zope.security
 
-USE_PYTHON=	2
-USE_PYDISTUTILS=easy_install
+USE_PYTHON=		2
+USE_PYDISTUTILS=	yes
+PYDISTUTILS_AUTOPLIST=	yes
 
-NO_STAGE=	yes
 .include <bsd.port.mk>

Modified: head/mail/py-zope.sendmail/pkg-descr
==============================================================================
--- head/mail/py-zope.sendmail/pkg-descr	Sun Feb  9 23:29:16 2014	(r343559)
+++ head/mail/py-zope.sendmail/pkg-descr	Sun Feb  9 23:40:57 2014	(r343560)
@@ -1,3 +1,3 @@
 zope.sendmail is a package for email sending from Zope3 applications.
 
-WWW: https://pypi.python.org/pypi/zope.sendmail
+WWW: https://pypi.python.org/pypi/zope.sendmail/

Modified: head/net-p2p/py-transmissionrpc/Makefile
==============================================================================
--- head/net-p2p/py-transmissionrpc/Makefile	Sun Feb  9 23:29:16 2014	(r343559)
+++ head/net-p2p/py-transmissionrpc/Makefile	Sun Feb  9 23:40:57 2014	(r343560)
@@ -3,6 +3,7 @@
 
 PORTNAME=	transmissionrpc
 PORTVERSION=	0.11
+PORTREVISION=	1
 CATEGORIES=	net-p2p python
 MASTER_SITES=	CHEESESHOP
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
@@ -15,27 +16,14 @@ LICENSE=	MIT
 
 RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}six>0:${PORTSDIR}/devel/py-six
 
-USE_PYTHON=	yes
-USE_PYDISTUTILS=easy_install
-PYTHON_PY3K_PLIST_HACK=	yes
-
-NO_STAGE=	yes
-
-.include <bsd.port.options.mk>
-
-.if ${PORT_OPTIONS:MDOCS}
-PLIST_DIRS=	%%DOCSDIR%%
-PLIST_FILES+=	%%DOCSDIR%%/README
-.endif
-
-post-patch:
-	@${REINPLACE_CMD} -e 's,zip_safe=True,zip_safe=False,g' \
-		${WRKSRC}/setup.py
+USE_PYTHON=		yes
+USE_PYDISTUTILS=	yes
+PYDISTUTILS_AUTOPLIST=	yes
+
+PORTDOCS=	*
 
 post-install:
-.if ${PORT_OPTIONS:MDOCS}
-	@${MKDIR} ${DOCSDIR}
-	${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
-.endif
+	@${MKDIR} ${STAGEDIR}${DOCSDIR}
+	${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}
 
 .include <bsd.port.mk>

Modified: head/net/py-zope.proxy/Makefile
==============================================================================
--- head/net/py-zope.proxy/Makefile	Sun Feb  9 23:29:16 2014	(r343559)
+++ head/net/py-zope.proxy/Makefile	Sun Feb  9 23:40:57 2014	(r343560)
@@ -3,6 +3,7 @@
 
 PORTNAME=	zope.proxy
 PORTVERSION=	4.1.3
+PORTREVISION=	1
 CATEGORIES=	net python zope
 MASTER_SITES=	CHEESESHOP
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
@@ -15,11 +16,9 @@ LICENSE=	ZPL21
 
 BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}zope.interface>=3.3.0:${PORTSDIR}/devel/py-zope.interface
 
-USE_ZIP=	yes
-USE_PYTHON=	yes
-USE_PYDISTUTILS=	easy_install
-PYEASYINSTALL_ARCHDEP=	yes
-
-NO_STAGE=	yes
+USE_PYTHON=		yes
+USE_PYDISTUTILS=	yes
+PYDISTUTILS_AUTOPLIST=	yes
+USE_ZIP=		yes
 
 .include <bsd.port.mk>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201402092340.s19New4p096219>