svn commit: r352652 - in head/devel: . py-enum34
Sunpoet Po-Chuan Hsieh
sunpoet at FreeBSD.org
Tue Apr 29 21:11:14 UTC 2014
Author: sunpoet
Date: Tue Apr 29 21:11:12 2014
New Revision: 352652
URL: http://svnweb.freebsd.org/changeset/ports/352652
QAT: https://qat.redports.org/buildarchive/r352652/
Log:
- Add py-enum34 0.9.23
- While I'm here:
- Shorten COMMENT
- Use . for COPYTREE_SHARE
An enumeration is a set of symbolic names (members) bound to unique, constant
values. Within an enumeration, the members can be compared by identity, and
the enumeration itself can be iterated over.
WWW: https://pypi.python.org/pypi/enum34
PR: ports/189073
Submitted by: Muhammad Moinur Rahman <5u623l20 at gmail.com>
Added:
head/devel/py-enum34/
head/devel/py-enum34/Makefile (contents, props changed)
head/devel/py-enum34/distinfo (contents, props changed)
head/devel/py-enum34/pkg-descr (contents, props changed)
Modified:
head/devel/Makefile
Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile Tue Apr 29 21:11:04 2014 (r352651)
+++ head/devel/Makefile Tue Apr 29 21:11:12 2014 (r352652)
@@ -3597,6 +3597,7 @@
SUBDIR += py-durus
SUBDIR += py-dynrules
SUBDIR += py-eggtestinfo
+ SUBDIR += py-enum34
SUBDIR += py-epsilon
SUBDIR += py-event
SUBDIR += py-experimental.cssselect
Added: head/devel/py-enum34/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-enum34/Makefile Tue Apr 29 21:11:12 2014 (r352652)
@@ -0,0 +1,26 @@
+# Created by: Muhammad Moinur Rahman <5u623l20 at gmail.com>
+# $FreeBSD$
+
+PORTNAME= enum34
+PORTVERSION= 0.9.23
+CATEGORIES= devel python
+MASTER_SITES= CHEESESHOP
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= 5u623l20 at gmail.com
+COMMENT= Python 3.4 Enum backported to 3.3, 3.2, 3.1, 2.7
+
+LICENSE= BSD3CLAUSE
+
+USE_PYTHON= 2.7-3.3
+USE_PYDISTUTILS=yes
+PYDISTUTILS_AUTOPLIST= yes
+
+PORTDOCS= *
+DOCSDIR= ${PREFIX}/share/doc/py-${PORTNAME}
+
+post-install:
+ @${MKDIR} ${STAGEDIR}${DOCSDIR}
+ (cd ${WRKSRC}/enum/doc && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR})
+
+.include <bsd.port.mk>
Added: head/devel/py-enum34/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-enum34/distinfo Tue Apr 29 21:11:12 2014 (r352652)
@@ -0,0 +1,2 @@
+SHA256 (enum34-0.9.23.tar.gz) = cfc05f11b5169c7b5c4adfae6de51cb8ad608c269b2496fbb75a115a5b572440
+SIZE (enum34-0.9.23.tar.gz) = 44720
Added: head/devel/py-enum34/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-enum34/pkg-descr Tue Apr 29 21:11:12 2014 (r352652)
@@ -0,0 +1,5 @@
+An enumeration is a set of symbolic names (members) bound to unique, constant
+values. Within an enumeration, the members can be compared by identity, and
+the enumeration itself can be iterated over.
+
+WWW: https://pypi.python.org/pypi/enum34
More information about the svn-ports-head
mailing list