Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 15 Jul 2016 17:15:20 +0000 (UTC)
From:      Kurt Jaeger <pi@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r418593 - in head/textproc: . py-esmre
Message-ID:  <201607151715.u6FHFKCl039220@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pi
Date: Fri Jul 15 17:15:19 2016
New Revision: 418593
URL: https://svnweb.freebsd.org/changeset/ports/418593

Log:
  New port: textproc/py-esmre
  
  Modules used to accelerate execution of a large collection
  of regular expressions using the Aho-Corasick algorithms.
  
  WWW: https://pypi.python.org/pypi/esmre
  
  PR:		211057
  Submitted by:	Danilo G. Baio <dbaio@bsd.com.br>

Added:
  head/textproc/py-esmre/
  head/textproc/py-esmre/Makefile   (contents, props changed)
  head/textproc/py-esmre/distinfo   (contents, props changed)
  head/textproc/py-esmre/pkg-descr   (contents, props changed)
Modified:
  head/textproc/Makefile

Modified: head/textproc/Makefile
==============================================================================
--- head/textproc/Makefile	Fri Jul 15 17:13:52 2016	(r418592)
+++ head/textproc/Makefile	Fri Jul 15 17:15:19 2016	(r418593)
@@ -1232,6 +1232,7 @@
     SUBDIR += py-empy
     SUBDIR += py-enchant
     SUBDIR += py-errorhandler
+    SUBDIR += py-esmre
     SUBDIR += py-et_xmlfile
     SUBDIR += py-excelerator
     SUBDIR += py-feedparser

Added: head/textproc/py-esmre/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/py-esmre/Makefile	Fri Jul 15 17:15:19 2016	(r418593)
@@ -0,0 +1,22 @@
+# $FreeBSD$
+
+PORTNAME=	esmre
+PORTVERSION=	0.3.1
+CATEGORIES=	textproc python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	dbaio@bsd.com.br
+COMMENT=	Regular expression accelerator in Python
+
+LICENSE=	LGPL21
+LICENSE_FILE=	${WRKSRC}/COPYING
+
+NO_ARCH=	yes
+USES=		python
+USE_PYTHON=	autoplist distutils
+
+post-install:
+	@${FIND} ${STAGEDIR}${PREFIX}/lib -name "*.so" -and -exec ${STRIP_CMD} {} \;
+
+.include <bsd.port.mk>

Added: head/textproc/py-esmre/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/py-esmre/distinfo	Fri Jul 15 17:15:19 2016	(r418593)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1467932447
+SHA256 (esmre-0.3.1.tar.gz) = fa8fb1ed9e2489e58e9fc751a9b83f1776ed65815d4991f4df73146d0173e532
+SIZE (esmre-0.3.1.tar.gz) = 24237

Added: head/textproc/py-esmre/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/py-esmre/pkg-descr	Fri Jul 15 17:15:19 2016	(r418593)
@@ -0,0 +1,4 @@
+Modules used to accelerate execution of a large collection 
+of regular expressions using the Aho-Corasick algorithms.
+
+WWW: https://pypi.python.org/pypi/esmre



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201607151715.u6FHFKCl039220>