From owner-svn-ports-head@freebsd.org Mon Sep 17 08:36:22 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1AA8E109618E; Mon, 17 Sep 2018 08:36:22 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C3B90736B7; Mon, 17 Sep 2018 08:36:21 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A07866A12; Mon, 17 Sep 2018 08:36:21 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w8H8aLe0027888; Mon, 17 Sep 2018 08:36:21 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w8H8aKh9027884; Mon, 17 Sep 2018 08:36:20 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201809170836.w8H8aKh9027884@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Mon, 17 Sep 2018 08:36:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r479917 - in head/textproc: . py-ufal.udpipe X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/textproc: . py-ufal.udpipe X-SVN-Commit-Revision: 479917 X-SVN-Commit-Repository: ports 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.27 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: Mon, 17 Sep 2018 08:36:22 -0000 Author: yuri Date: Mon Sep 17 08:36:20 2018 New Revision: 479917 URL: https://svnweb.freebsd.org/changeset/ports/479917 Log: New port: textproc/py-ufal.udpipe: Python bindings to UDPipe library for parsing universal treebanks Added: head/textproc/py-ufal.udpipe/ head/textproc/py-ufal.udpipe/Makefile (contents, props changed) head/textproc/py-ufal.udpipe/distinfo (contents, props changed) head/textproc/py-ufal.udpipe/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Mon Sep 17 07:53:36 2018 (r479916) +++ head/textproc/Makefile Mon Sep 17 08:36:20 2018 (r479917) @@ -1428,6 +1428,7 @@ SUBDIR += py-transpopy SUBDIR += py-tvgrab SUBDIR += py-ucl + SUBDIR += py-ufal.udpipe SUBDIR += py-whoosh SUBDIR += py-wicked SUBDIR += py-wordnet Added: head/textproc/py-ufal.udpipe/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-ufal.udpipe/Makefile Mon Sep 17 08:36:20 2018 (r479917) @@ -0,0 +1,18 @@ +# $FreeBSD$ + +PORTNAME= ufal.udpipe +PORTVERSION= 1.2.0.1 +CATEGORIES= textproc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Python bindings to UDPipe library for parsing universal treebanks + +LICENSE= MPL20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= python +USE_PYTHON= distutils autoplist + +.include Added: head/textproc/py-ufal.udpipe/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-ufal.udpipe/distinfo Mon Sep 17 08:36:20 2018 (r479917) @@ -0,0 +1,3 @@ +TIMESTAMP = 1537157910 +SHA256 (ufal.udpipe-1.2.0.1.tar.gz) = e24ebb712232d657900aee2b2e25e7ab45726089796dee7a376faf22e619eeb7 +SIZE (ufal.udpipe-1.2.0.1.tar.gz) = 303478 Added: head/textproc/py-ufal.udpipe/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-ufal.udpipe/pkg-descr Mon Sep 17 08:36:20 2018 (r479917) @@ -0,0 +1,6 @@ +UDPipe is a trainable pipeline for tokenization, tagging, lemmatization and +dependency parsing of CoNLL-U files. UDPipe is language-agnostic and can be +trained given annotated data in CoNLL-U format. Trained models are provided +for nearly all UD treebanks. + +WWW: https://ufal.mff.cuni.cz/udpipe