From owner-svn-ports-head@FreeBSD.ORG Tue Apr 29 21:11:14 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 34577679; Tue, 29 Apr 2014 21:11:14 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 158A019E3; Tue, 29 Apr 2014 21:11:14 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s3TLBDbY043579; Tue, 29 Apr 2014 21:11:13 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s3TLBDQw043574; Tue, 29 Apr 2014 21:11:13 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201404292111.s3TLBDQw043574@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Tue, 29 Apr 2014 21:11:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r352652 - in head/devel: . py-enum34 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Apr 2014 21:11:14 -0000 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@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@gmail.com> +# $FreeBSD$ + +PORTNAME= enum34 +PORTVERSION= 0.9.23 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= 5u623l20@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 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