Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 15 Jan 2021 14:43:00 +0000 (UTC)
From:      "Danilo G. Baio" <dbaio@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r561648 - in head/textproc: . py-spylls
Message-ID:  <202101151443.10FEh07D026228@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dbaio
Date: Fri Jan 15 14:42:59 2021
New Revision: 561648
URL: https://svnweb.freebsd.org/changeset/ports/561648

Log:
  Add textproc/py-spyll: Hunspell ported to pure Python
  
  Spylls is an effort of porting prominent spellcheckers into clear,
  well-structured, well-documented Python. It is intended to be useful both as a
  library and as some kind of "reference (or investigatory, if you will)
  implementation". Currently, only Hunspell is ported.
  
  WWW: https://pypi.org/project/spylls/

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

Modified: head/textproc/Makefile
==============================================================================
--- head/textproc/Makefile	Fri Jan 15 14:39:28 2021	(r561647)
+++ head/textproc/Makefile	Fri Jan 15 14:42:59 2021	(r561648)
@@ -1421,6 +1421,7 @@
     SUBDIR += py-sphinxcontrib-serializinghtml
     SUBDIR += py-sphinxcontrib-websupport
     SUBDIR += py-sphinxcontrib-websupport11
+    SUBDIR += py-spylls
     SUBDIR += py-stemming
     SUBDIR += py-tabletext
     SUBDIR += py-tablib

Added: head/textproc/py-spylls/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/py-spylls/Makefile	Fri Jan 15 14:42:59 2021	(r561648)
@@ -0,0 +1,19 @@
+# $FreeBSD$
+
+PORTNAME=	spylls
+DISTVERSION=	0.1.1
+CATEGORIES=	textproc python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	dbaio@FreeBSD.org
+COMMENT=	Hunspell ported to pure Python
+
+LICENSE=	MIT
+
+USES=		python:3.7+
+USE_PYTHON=	autoplist distutils concurrent
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/textproc/py-spylls/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/py-spylls/distinfo	Fri Jan 15 14:42:59 2021	(r561648)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1610719983
+SHA256 (spylls-0.1.1.tar.gz) = 0d17422b888b89db97c922244b88172e0ce3aff3715ce0b7f3a2f65b3eae0a8b
+SIZE (spylls-0.1.1.tar.gz) = 56423

Added: head/textproc/py-spylls/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/py-spylls/pkg-descr	Fri Jan 15 14:42:59 2021	(r561648)
@@ -0,0 +1,6 @@
+Spylls is an effort of porting prominent spellcheckers into clear,
+well-structured, well-documented Python. It is intended to be useful both as a
+library and as some kind of "reference (or investigatory, if you will)
+implementation". Currently, only Hunspell is ported.
+
+WWW: https://pypi.org/project/spylls/



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