From owner-svn-ports-head@FreeBSD.ORG Thu Oct 23 14:03:58 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 500CB8C1; Thu, 23 Oct 2014 14:03:58 +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 32580B62; Thu, 23 Oct 2014 14:03:58 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9NE3wEb059774; Thu, 23 Oct 2014 14:03:58 GMT (envelope-from demon@FreeBSD.org) Received: (from demon@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9NE3v3T059770; Thu, 23 Oct 2014 14:03:57 GMT (envelope-from demon@FreeBSD.org) Message-Id: <201410231403.s9NE3v3T059770@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: demon set sender to demon@FreeBSD.org using -f From: Dmitry Sivachenko Date: Thu, 23 Oct 2014 14:03:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r371395 - in head/math: . py-pyfst 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.18-1 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: Thu, 23 Oct 2014 14:03:58 -0000 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 +# $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 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