svn commit: r423589 - branches/2016Q4/devel/py-singledispatch
Kubilay Kocak
koobs at FreeBSD.org
Sun Oct 9 11:15:59 UTC 2016
Author: koobs
Date: Sun Oct 9 11:15:58 2016
New Revision: 423589
URL: https://svnweb.freebsd.org/changeset/ports/423589
Log:
MFH: r423588: devel/py-singledispatch: Add missing dependency (six)
- Add missing RUN_DEPENDS on six [1]
- Canonicalize, clarify COMMENT
- Limit USE_PYTHON version to <= 3.3 (Unnecessary in 3.4+)
- Enable architecture independence (NO_ARCH)
- Enable concurrent Python installation
PR: 213314 [1]
Submitted by: Kyle Evans <bsdports kyle-evans net> [1]
Approved by: python (maintainer)
Approved by: ports-secteam (blanket)
Modified:
branches/2016Q4/devel/py-singledispatch/Makefile
Directory Properties:
branches/2016Q4/ (props changed)
Modified: branches/2016Q4/devel/py-singledispatch/Makefile
==============================================================================
--- branches/2016Q4/devel/py-singledispatch/Makefile Sun Oct 9 11:12:28 2016 (r423588)
+++ branches/2016Q4/devel/py-singledispatch/Makefile Sun Oct 9 11:15:58 2016 (r423589)
@@ -3,16 +3,21 @@
PORTNAME= singledispatch
PORTVERSION= 3.4.0.3
+PORTREVISION= 1
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= python at FreeBSD.org
-COMMENT= Provides single-dispatch generic functions
+COMMENT= Backport of functools.singledispatch from Python 3.4
LICENSE= MIT
-USES= python
-USE_PYTHON= distutils autoplist
+RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six
+
+USES= python:-3.3
+USE_PYTHON= distutils concurrent autoplist
+
+NO_ARCH= yes
.include <bsd.port.mk>
More information about the svn-ports-all
mailing list