Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 9 Feb 2013 19:11:54 +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: r311991 - in head/devel: . py-cld
Message-ID:  <201302091911.r19JBsic042537@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: demon
Date: Sat Feb  9 19:11:54 2013
New Revision: 311991
URL: http://svnweb.freebsd.org/changeset/ports/311991

Log:
  Python bindings for chromium compact language detector library.
  
  WWW: http://pypi.python.org/pypi/chromium_compact_language_detector

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sat Feb  9 17:55:38 2013	(r311990)
+++ head/devel/Makefile	Sat Feb  9 19:11:54 2013	(r311991)
@@ -3392,6 +3392,7 @@
     SUBDIR += py-ciphon
     SUBDIR += py-circuits
     SUBDIR += py-cjson
+    SUBDIR += py-cld
     SUBDIR += py-clonedigger
     SUBDIR += py-cmdln
     SUBDIR += py-cog

Added: head/devel/py-cld/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-cld/Makefile	Sat Feb  9 19:11:54 2013	(r311991)
@@ -0,0 +1,23 @@
+# Created by: Dmitry Sivachenko <demon@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	cld
+PORTVERSION=	0.2
+CATEGORIES=	devel python
+MASTER_SITES=	${MASTER_SITE_CHEESESHOP}
+MASTER_SITE_SUBDIR=source/c/chromium_compact_language_detector
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+DISTNAME=	chromium_compact_language_detector-${PORTVERSION}
+
+MAINTAINER=	demon@FreeBSD.org
+COMMENT=	Python bindings for chromium compact language detector library
+
+LIB_DEPENDS=	cld:${PORTSDIR}/devel/cld
+
+USE_PYTHON=	yes
+USE_PYDISTUTILS=	yes
+PYDISTUTILS_PKGNAME=chromium_compact_language_detector
+
+PLIST_FILES=	%%PYTHON_SITELIBDIR%%/cld.so
+
+.include <bsd.port.mk>

Added: head/devel/py-cld/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-cld/distinfo	Sat Feb  9 19:11:54 2013	(r311991)
@@ -0,0 +1,2 @@
+SHA256 (chromium_compact_language_detector-0.2.tar.gz) = f14eb028e6e5152fbcb1a12aa749f73483d933d0336d52e27a7d44e3a7b745b1
+SIZE (chromium_compact_language_detector-0.2.tar.gz) = 38279

Added: head/devel/py-cld/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-cld/pkg-descr	Sat Feb  9 19:11:54 2013	(r311991)
@@ -0,0 +1,5 @@
+A port from the CLD (Compact Language Detector) library embedded in
+Google's Chromium browser.  The library detects the language from
+provided UTF8 text (plain text or HTML).  This is python bindings.
+
+WWW:   http://pypi.python.org/pypi/chromium_compact_language_detector



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