From owner-svn-ports-all@freebsd.org Fri Jan 15 14:43:01 2021 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 1C40C4E7B74; Fri, 15 Jan 2021 14:43:01 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4DHP6s0JZBz533m; Fri, 15 Jan 2021 14:43:01 +0000 (UTC) (envelope-from dbaio@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E77591DED7; Fri, 15 Jan 2021 14:43:00 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 10FEh04k026232; Fri, 15 Jan 2021 14:43:00 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 10FEh07D026228; Fri, 15 Jan 2021 14:43:00 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <202101151443.10FEh07D026228@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Fri, 15 Jan 2021 14:43:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r561648 - in head/textproc: . py-spylls X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: in head/textproc: . py-spylls X-SVN-Commit-Revision: 561648 X-SVN-Commit-Repository: ports 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.34 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 Jan 2021 14:43:01 -0000 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 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/