From owner-svn-ports-all@freebsd.org Fri Jul 15 17:29:28 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 67023B9A2E3; Fri, 15 Jul 2016 17:29:28 +0000 (UTC) (envelope-from pi@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 mx1.freebsd.org (Postfix) with ESMTPS id 230DD16DA; Fri, 15 Jul 2016 17:29:28 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6FHTRmj043567; Fri, 15 Jul 2016 17:29:27 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6FHTQSs043563; Fri, 15 Jul 2016 17:29:26 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201607151729.u6FHTQSs043563@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Fri, 15 Jul 2016 17:29:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418595 - in head/textproc: . py-guess-language 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.22 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: Fri, 15 Jul 2016 17:29:28 -0000 Author: pi Date: Fri Jul 15 17:29:26 2016 New Revision: 418595 URL: https://svnweb.freebsd.org/changeset/ports/418595 Log: New port: textproc/py-guess-language Attempts to determine the natural language of a selection of Unicode (utf-8) text. Based on guesslanguage.cpp by Jacob R Rideout for KDE which itself is based on Language::Guess by Maciej Ceglowski. Detects over 60 languages, all languages listed in the trigrams directory plus Japanese, Chinese, Korean and Greek. WWW: https://pypi.python.org/pypi/guess-language PR: 211058 Submitted by: Danilo G. Baio Added: head/textproc/py-guess-language/ head/textproc/py-guess-language/Makefile (contents, props changed) head/textproc/py-guess-language/distinfo (contents, props changed) head/textproc/py-guess-language/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Fri Jul 15 17:26:08 2016 (r418594) +++ head/textproc/Makefile Fri Jul 15 17:29:26 2016 (r418595) @@ -1237,6 +1237,7 @@ SUBDIR += py-excelerator SUBDIR += py-feedparser SUBDIR += py-genshi + SUBDIR += py-guess-language SUBDIR += py-hexdump SUBDIR += py-html2text SUBDIR += py-hyperestraier-python Added: head/textproc/py-guess-language/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-guess-language/Makefile Fri Jul 15 17:29:26 2016 (r418595) @@ -0,0 +1,18 @@ +# $FreeBSD$ + +PORTNAME= guess-language +PORTVERSION= 0.2 +CATEGORIES= textproc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= dbaio@bsd.com.br +COMMENT= Guess the natural language of a text in Python + +LICENSE= LGPL21+ + +NO_ARCH= yes +USES= python +USE_PYTHON= autoplist distutils + +.include Added: head/textproc/py-guess-language/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-guess-language/distinfo Fri Jul 15 17:29:26 2016 (r418595) @@ -0,0 +1,3 @@ +TIMESTAMP = 1468017268 +SHA256 (guess-language-0.2.tar.gz) = b31ba2a279b8e6a19e9aa2f8e21c5fc4a56cd5557aea3f806cba73ecf38696e7 +SIZE (guess-language-0.2.tar.gz) = 98949 Added: head/textproc/py-guess-language/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-guess-language/pkg-descr Fri Jul 15 17:29:26 2016 (r418595) @@ -0,0 +1,7 @@ +Attempts to determine the natural language of a selection of Unicode +(utf-8) text. Based on guesslanguage.cpp by Jacob R Rideout for KDE +which itself is based on Language::Guess by Maciej Ceglowski. Detects +over 60 languages, all languages listed in the trigrams directory +plus Japanese, Chinese, Korean and Greek. + +WWW: https://pypi.python.org/pypi/guess-language