Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 16 Dec 2017 20:55:31 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r456497 - head/devel/py-epsilon
Message-ID:  <201712162055.vBGKtV5k088806@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Sat Dec 16 20:55:31 2017
New Revision: 456497
URL: https://svnweb.freebsd.org/changeset/ports/456497

Log:
  Allow concurrent installation (USE_PYTHON=concurrent)
  
  - Update CONFLICTS_INSTALL
  - Reformat pkg-descr
  - Add PyPI as primary WWW
  - Add GitHub repository to WWW
  - Bump PORTREVISION for package change

Modified:
  head/devel/py-epsilon/Makefile
  head/devel/py-epsilon/pkg-descr

Modified: head/devel/py-epsilon/Makefile
==============================================================================
--- head/devel/py-epsilon/Makefile	Sat Dec 16 20:55:25 2017	(r456496)
+++ head/devel/py-epsilon/Makefile	Sat Dec 16 20:55:31 2017	(r456497)
@@ -3,7 +3,7 @@
 
 PORTNAME=	epsilon
 PORTVERSION=	0.7.1
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	devel python
 MASTER_SITES=	CHEESESHOP
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
@@ -18,10 +18,11 @@ LICENSE_FILE=	${WRKSRC}/LICENSE
 RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}openssl>=0:security/py-openssl@${FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}twisted>=0:devel/py-twisted@${FLAVOR}
 
-CONFLICTS_INSTALL=	brlcad-[0-9]*	# bin/benchmark
+# bin/benchmark
+CONFLICTS_INSTALL=	brlcad
 
 NO_ARCH=	yes
-USE_PYTHON=	autoplist distutils
+USE_PYTHON=	autoplist concurrent distutils
 USES=		python
 
 .include <bsd.port.mk>

Modified: head/devel/py-epsilon/pkg-descr
==============================================================================
--- head/devel/py-epsilon/pkg-descr	Sat Dec 16 20:55:25 2017	(r456496)
+++ head/devel/py-epsilon/pkg-descr	Sat Dec 16 20:55:31 2017	(r456497)
@@ -1,16 +1,16 @@
 A small utility package that depends on tools too recent for Twisted (like
-datetime in python2.4) but performs generic enough functions that it can be
+datetime in python 2.4) but performs generic enough functions that it can be
 used in projects that don't want to share Divmod's other projects' large
 footprint.
 
 Currently included:
+- A powerful date/time formatting and import/export class (ExtimeDotTime), for
+  exchanging date and time information between all Python's various ways to
+  interpret objects as times or time deltas.
+- Tools for managing concurrent asynchronous processes within Twisted.
+- A metaclass which helps you define classes with explicit states.
+- A featureful Version class.
+- A formal system for application of monkey-patches.
 
-    * A powerful date/time formatting and import/export class (ExtimeDotTime),
-      for exchanging date and time information between all Python's various
-      ways to interpret objects as times or time deltas.
-    * Tools for managing concurrent asynchronous processes within Twisted.
-    * A metaclass which helps you define classes with explicit states.
-    * A featureful Version class.
-    * A formal system for application of monkey-patches.
-
-WWW: https://launchpad.net/epsilon/
+WWW: https://pypi.python.org/pypi/Epsilon
+WWW: https://github.com/twisted/epsilon



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