From owner-svn-ports-all@freebsd.org Tue Nov 24 21:53:10 2015 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 E5311A36D83; Tue, 24 Nov 2015 21:53:10 +0000 (UTC) (envelope-from pawel@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 93DAC112B; Tue, 24 Nov 2015 21:53:10 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tAOLr9fv022870; Tue, 24 Nov 2015 21:53:09 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tAOLr97v022866; Tue, 24 Nov 2015 21:53:09 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201511242153.tAOLr97v022866@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Tue, 24 Nov 2015 21:53:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r402379 - in head/textproc: . py-pyphen 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.20 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: Tue, 24 Nov 2015 21:53:11 -0000 Author: pawel Date: Tue Nov 24 21:53:09 2015 New Revision: 402379 URL: https://svnweb.freebsd.org/changeset/ports/402379 Log: Pyphen is a pure Python module to hyphenate text using existing Hunspell hyphenation dictionaries. WWW: https://pypi.python.org/pypi/Pyphen/ PR: 201940 Submitted by: Yuri Victorovich Added: head/textproc/py-pyphen/ head/textproc/py-pyphen/Makefile (contents, props changed) head/textproc/py-pyphen/distinfo (contents, props changed) head/textproc/py-pyphen/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Tue Nov 24 21:34:05 2015 (r402378) +++ head/textproc/Makefile Tue Nov 24 21:53:09 2015 (r402379) @@ -1245,6 +1245,7 @@ SUBDIR += py-pyes SUBDIR += py-pygments SUBDIR += py-pygtail + SUBDIR += py-pyphen SUBDIR += py-pyscss SUBDIR += py-pysrt SUBDIR += py-pystache Added: head/textproc/py-pyphen/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-pyphen/Makefile Tue Nov 24 21:53:09 2015 (r402379) @@ -0,0 +1,24 @@ +# Created by: Yuri Victorovich +# $FreeBSD$ + +PORTNAME= pyphen +PORTVERSION= 0.9.1 +CATEGORIES= textproc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= Pyphen-${PORTVERSION} + +MAINTAINER= yuri@rawbw.com +COMMENT= Module to hyphenate text based on Hunspell dictionaries + +LICENSE= GPLv2 LGPL21 MPL +LICENSE_COMB= multi +LICENSE_FILE_GPLv2= ${WRKSRC}/COPYING.GPL +LICENSE_FILE_LGPL21= ${WRKSRC}/COPYING.LGPL +LICENSE_FILE_MPL= ${WRKSRC}/COPYING.MPL + +USES= python +USE_PYTHON= autoplist distutils +NO_ARCH= yes + +.include Added: head/textproc/py-pyphen/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-pyphen/distinfo Tue Nov 24 21:53:09 2015 (r402379) @@ -0,0 +1,2 @@ +SHA256 (Pyphen-0.9.1.tar.gz) = f518012a3296689b13f80a879ed75d1f876e6d9c09f982b114e78847407aa515 +SIZE (Pyphen-0.9.1.tar.gz) = 1020062 Added: head/textproc/py-pyphen/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-pyphen/pkg-descr Tue Nov 24 21:53:09 2015 (r402379) @@ -0,0 +1,4 @@ +Pyphen is a pure Python module to hyphenate text using existing Hunspell +hyphenation dictionaries. + +WWW: https://pypi.python.org/pypi/Pyphen/