svn commit: r402379 - in head/textproc: . py-pyphen

Pawel Pekala pawel at FreeBSD.org
Tue Nov 24 21:53:11 UTC 2015


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 <yuri at rawbw.com>

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 <yuri at rawbw.com>
+# $FreeBSD$
+
+PORTNAME=	pyphen
+PORTVERSION=	0.9.1
+CATEGORIES=	textproc python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+DISTNAME=	Pyphen-${PORTVERSION}
+
+MAINTAINER=	yuri at 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 <bsd.port.mk>

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/


More information about the svn-ports-all mailing list