Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id C8B8284F48 for ; Sun, 15 Oct 2023 06:40:28 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id rcIuSqDIQhIP for ; Sun, 15 Oct 2023 06:40:28 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 2EDC584CE3 for ; Sun, 15 Oct 2023 06:40:28 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 2C227FADC; Sun, 15 Oct 2023 06:40:28 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1697352028284490" MIME-Version: 1.0 Date: Sun, 15 Oct 2023 06:40:28 +0000 From: "Ryo ONODERA" Subject: CVS commit: pkgsrc/textproc/py-link-grammar To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: ryoon@netbsd.org X-Mailer: log_accum Message-Id: <20231015064028.2C227FADC@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1697352028284490 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: ryoon Date: Sun Oct 15 06:40:28 UTC 2023 Added Files: pkgsrc/textproc/py-link-grammar: DESCR Makefile PLIST Log Message: textproc/py-link-grammar: import py311-link-grammar-5.12.3 The Link Grammar Parser is a syntactic parser of English, Russian, Arabic and Persian (and other languages as well), based on Link Grammar, an original theory of syntax and morphology. Given a sentence, the system assigns to it a syntactic structure, which consists of a set of labelled links connecting pairs of words. The parser also produces a "constituent" (HPSG style phrase tree) representation of a sentence (showing noun phrases, verb phrases, etc.). The RelEx extension provides Stanford-style Dependency Grammar output. This package contains Python binding. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 pkgsrc/textproc/py-link-grammar/DESCR \ pkgsrc/textproc/py-link-grammar/Makefile \ pkgsrc/textproc/py-link-grammar/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1697352028284490 Content-Disposition: inline Content-Length: 2339 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Added files: Index: pkgsrc/textproc/py-link-grammar/DESCR diff -u /dev/null pkgsrc/textproc/py-link-grammar/DESCR:1.1 --- /dev/null Sun Oct 15 06:40:28 2023 +++ pkgsrc/textproc/py-link-grammar/DESCR Sun Oct 15 06:40:28 2023 @@ -0,0 +1,11 @@ +The Link Grammar Parser is a syntactic parser of English, Russian, +Arabic and Persian (and other languages as well), based on Link +Grammar, an original theory of syntax and morphology. Given a +sentence, the system assigns to it a syntactic structure, which +consists of a set of labelled links connecting pairs of words. The +parser also produces a "constituent" (HPSG style phrase tree) +representation of a sentence (showing noun phrases, verb phrases, +etc.). The RelEx extension provides Stanford-style Dependency +Grammar output. + +This package contains Python binding. Index: pkgsrc/textproc/py-link-grammar/Makefile diff -u /dev/null pkgsrc/textproc/py-link-grammar/Makefile:1.1 --- /dev/null Sun Oct 15 06:40:28 2023 +++ pkgsrc/textproc/py-link-grammar/Makefile Sun Oct 15 06:40:28 2023 @@ -0,0 +1,21 @@ +# $NetBSD: Makefile,v 1.1 2023/10/15 06:40:28 ryoon Exp $ + +PKGNAME= ${PYPKGPREFIX}-${DISTNAME} +CATEGORIES= textproc + +MAINTAINER= pkgsrc-users@NetBSD.org +COMMENT= Python binding of syntactic parsing library + +.include "../../textproc/link-grammar/Makefile.common" + +DEPENDS+= link-grammar-[0-9]*:../../textproc/link-grammar + +BUILDLINK_DEPMETHOD.python= full + +CONFIGURE_ARGS+= --enable-python-bindings + +PY_PATCHPLIST= yes +INSTALL_DIRS+= bindings/python + +.include "../../lang/python/extension.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/textproc/py-link-grammar/PLIST diff -u /dev/null pkgsrc/textproc/py-link-grammar/PLIST:1.1 --- /dev/null Sun Oct 15 06:40:28 2023 +++ pkgsrc/textproc/py-link-grammar/PLIST Sun Oct 15 06:40:28 2023 @@ -0,0 +1,12 @@ +@comment $NetBSD: PLIST,v 1.1 2023/10/15 06:40:28 ryoon Exp $ +${PYSITELIB}/linkgrammar.pth +${PYSITELIB}/linkgrammar/__init__.py +${PYSITELIB}/linkgrammar/__init__.pyc +${PYSITELIB}/linkgrammar/__init__.pyo +${PYSITELIB}/linkgrammar/_clinkgrammar.la +${PYSITELIB}/linkgrammar/clinkgrammar.py +${PYSITELIB}/linkgrammar/clinkgrammar.pyc +${PYSITELIB}/linkgrammar/clinkgrammar.pyo +${PYSITELIB}/linkgrammar/linkgrammar.py +${PYSITELIB}/linkgrammar/linkgrammar.pyc +${PYSITELIB}/linkgrammar/linkgrammar.pyo --_----------=_1697352028284490--