From owner-svn-ports-all@FreeBSD.ORG Sun Feb 9 08:48:26 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DB0BDA4C; Sun, 9 Feb 2014 08:48:26 +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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A97EC1198; Sun, 9 Feb 2014 08:48:26 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s198mQgA011533; Sun, 9 Feb 2014 08:48:26 GMT (envelope-from koobs@svn.freebsd.org) Received: (from koobs@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s198mPps011528; Sun, 9 Feb 2014 08:48:25 GMT (envelope-from koobs@svn.freebsd.org) Message-Id: <201402090848.s198mPps011528@svn.freebsd.org> From: Kubilay Kocak Date: Sun, 9 Feb 2014 08:48:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r343437 - in head/textproc: . py-regex X-SVN-Group: ports-head 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.17 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: Sun, 09 Feb 2014 08:48:26 -0000 Author: koobs Date: Sun Feb 9 08:48:25 2014 New Revision: 343437 URL: http://svnweb.freebsd.org/changeset/ports/343437 QAT: https://qat.redports.org/buildarchive/r343437/ Log: [NEW PORT] textproc/py-regex: Alternative regular expression module This new regex implementation is intended eventually to replace Python's current re module implementation. WWW: https://pypi.python.org/pypi/regex PR: ports/186029 Submitted by: Eero Hänninen Added: head/textproc/py-regex/ head/textproc/py-regex/Makefile (contents, props changed) head/textproc/py-regex/distinfo (contents, props changed) head/textproc/py-regex/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Sun Feb 9 08:44:25 2014 (r343436) +++ head/textproc/Makefile Sun Feb 9 08:48:25 2014 (r343437) @@ -1184,6 +1184,7 @@ SUBDIR += py-qt4-xml SUBDIR += py-qt4-xmlpatterns SUBDIR += py-rdflib + SUBDIR += py-regex SUBDIR += py-reverend SUBDIR += py-rss2gen SUBDIR += py-rst2html5 Added: head/textproc/py-regex/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-regex/Makefile Sun Feb 9 08:48:25 2014 (r343437) @@ -0,0 +1,18 @@ +# $FreeBSD$ + +PORTNAME= regex +PORTVERSION= 2014.01.30 +CATEGORIES= textproc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= fax@nohik.ee +COMMENT= Alternative regular expression module, to replace re + +LICENSE= PSFL + +USE_PYTHON= yes +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes + +.include Added: head/textproc/py-regex/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-regex/distinfo Sun Feb 9 08:48:25 2014 (r343437) @@ -0,0 +1,2 @@ +SHA256 (regex-2014.01.30.tar.gz) = 485b0761955a9529274c42533c1352257ac27bfa091994e5a7c0ba6d2f0f3b56 +SIZE (regex-2014.01.30.tar.gz) = 1305821 Added: head/textproc/py-regex/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-regex/pkg-descr Sun Feb 9 08:48:25 2014 (r343437) @@ -0,0 +1,4 @@ +This new regex implementation is intended eventually to replace Python's +current re module implementation. + +WWW: https://pypi.python.org/pypi/regex