From owner-svn-ports-all@freebsd.org Sat Dec 16 20:55:32 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 794B1E8EDF5; Sat, 16 Dec 2017 20:55:32 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5006373114; Sat, 16 Dec 2017 20:55:32 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vBGKtVOh088808; Sat, 16 Dec 2017 20:55:31 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBGKtV5k088806; Sat, 16 Dec 2017 20:55:31 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201712162055.vBGKtV5k088806@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 16 Dec 2017 20:55:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r456497 - head/devel/py-epsilon X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/py-epsilon X-SVN-Commit-Revision: 456497 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Dec 2017 20:55:32 -0000 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 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