Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 23 Oct 2014 14:03:57 +0000 (UTC)
From:      Dmitry Sivachenko <demon@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r371395 - in head/math: . py-pyfst
Message-ID:  <201410231403.s9NE3v3T059770@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: demon
Date: Thu Oct 23 14:03:56 2014
New Revision: 371395
URL: https://svnweb.freebsd.org/changeset/ports/371395
QAT: https://qat.redports.org/buildarchive/r371395/

Log:
  New port: pyfst
  
  pyfst provides a Python interface to the excellent OpenFst library.
  Most of the essential functionality of the library is exposed through a
  simplified API, allowing quick prototyping of algorithms using finite-state
  methods and easy visual debugging of the results obtained by applying
  FST operations.
  
  WWW: http://pyfst.github.io

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

Modified: head/math/Makefile
==============================================================================
--- head/math/Makefile	Thu Oct 23 13:48:10 2014	(r371394)
+++ head/math/Makefile	Thu Oct 23 14:03:56 2014	(r371395)
@@ -570,6 +570,7 @@
     SUBDIR += py-probstat
     SUBDIR += py-pybloom
     SUBDIR += py-pycosat
+    SUBDIR += py-pyfst
     SUBDIR += py-pymc
     SUBDIR += py-roman
     SUBDIR += py-scientific

Added: head/math/py-pyfst/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/py-pyfst/Makefile	Thu Oct 23 14:03:56 2014	(r371395)
@@ -0,0 +1,21 @@
+# Created by: Dmitry Sivachenko <demon@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	pyfst
+PORTVERSION=	0.2.3
+CATEGORIES=	math python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	demon@FreeBSD.org
+COMMENT=	Python interface for the OpenFST library
+
+LICENSE=	APACHE20
+
+LIB_DEPENDS=	libfst.so:${PORTSDIR}/math/openfst
+
+USES=		python
+USE_PYTHON=	distutils autoplist
+CPPFLAGS+=	-I${LOCALBASE}/include
+
+.include <bsd.port.mk>

Added: head/math/py-pyfst/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/py-pyfst/distinfo	Thu Oct 23 14:03:56 2014	(r371395)
@@ -0,0 +1,2 @@
+SHA256 (pyfst-0.2.3.tar.gz) = 1be37b03e878557d1b0814c94413b13e43ac7c7362297fa723e0e9ca9152e69e
+SIZE (pyfst-0.2.3.tar.gz) = 140270

Added: head/math/py-pyfst/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/py-pyfst/pkg-descr	Thu Oct 23 14:03:56 2014	(r371395)
@@ -0,0 +1,7 @@
+pyfst provides a Python interface to the excellent OpenFst library.
+Most of the essential functionality of the library is exposed through a
+simplified API, allowing quick prototyping of algorithms using finite-state
+methods and easy visual debugging of the results obtained by applying
+FST operations.
+
+WWW: http://pyfst.github.io



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