pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/textproc/go-prose



Module Name:    pkgsrc
Committed By:   gavan
Date:           Thu Aug 17 01:56:05 UTC 2017

Added Files:
        pkgsrc/textproc/go-prose: DESCR Makefile PLIST buildlink3.mk distinfo

Log Message:
Add go-prose package


To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 pkgsrc/textproc/go-prose/DESCR \
    pkgsrc/textproc/go-prose/Makefile pkgsrc/textproc/go-prose/PLIST \
    pkgsrc/textproc/go-prose/buildlink3.mk pkgsrc/textproc/go-prose/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Added files:

Index: pkgsrc/textproc/go-prose/DESCR
diff -u /dev/null pkgsrc/textproc/go-prose/DESCR:1.1
--- /dev/null   Thu Aug 17 01:56:05 2017
+++ pkgsrc/textproc/go-prose/DESCR      Thu Aug 17 01:56:05 2017
@@ -0,0 +1 @@
+prose is Go library for text (primarily English at the moment) processing that supports tokenization, part-of-speech tagging, named-entity extraction, and more. The library's functionality is split 
into subpackages designed for modular use. See the documentation for more information.
Index: pkgsrc/textproc/go-prose/Makefile
diff -u /dev/null pkgsrc/textproc/go-prose/Makefile:1.1
--- /dev/null   Thu Aug 17 01:56:05 2017
+++ pkgsrc/textproc/go-prose/Makefile   Thu Aug 17 01:56:05 2017
@@ -0,0 +1,24 @@
+# $NetBSD: Makefile,v 1.1 2017/08/17 01:56:05 gavan Exp $
+
+DISTNAME=      prose-0.0.20170806
+PKGNAME=       go-${DISTNAME}
+MASTER_SITES=  ${MASTER_SITE_GITHUB:=jdkato/}
+CATEGORIES=    textproc
+GITHUB_TAG=    a678fc7b3ceb0f38ff832c337dea083902c349b2
+GITHUB_PROJECT= ${PKGBASE:S/^go-//}
+
+MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE=      https://github.com/jdkato/prose
+COMMENT=       A Golang library for text processing, including tokenization, part-of-speech tagging, and named-entity extraction.
+LICENSE=       mit
+
+GO_DIST_BASE=  ${GITHUB_PROJECT}-${GITHUB_TAG}
+GO_SRCPATH=    github.com/jdkato/prose
+
+.include "../../math/go-stats/buildlink3.mk"
+.include "../../devel/go-shuffle/buildlink3.mk"
+.include "../../devel/go-cli/buildlink3.mk"
+.include "../../textproc/go-sentences/buildlink3.mk"
+.include "../../lang/go/go-package.mk"
+.include "../../mk/bsd.pkg.mk"
+
Index: pkgsrc/textproc/go-prose/PLIST
diff -u /dev/null pkgsrc/textproc/go-prose/PLIST:1.1
--- /dev/null   Thu Aug 17 01:56:05 2017
+++ pkgsrc/textproc/go-prose/PLIST      Thu Aug 17 01:56:05 2017
@@ -0,0 +1,80 @@
+@comment $NetBSD: PLIST,v 1.1 2017/08/17 01:56:05 gavan Exp $
+bin/prose
+gopkg/pkg/${GO_PLATFORM}/github.com/jdkato/prose.a
+gopkg/pkg/${GO_PLATFORM}/github.com/jdkato/prose/chunk.a
+gopkg/pkg/${GO_PLATFORM}/github.com/jdkato/prose/internal/model.a
+gopkg/pkg/${GO_PLATFORM}/github.com/jdkato/prose/internal/util.a
+gopkg/pkg/${GO_PLATFORM}/github.com/jdkato/prose/summarize.a
+gopkg/pkg/${GO_PLATFORM}/github.com/jdkato/prose/tag.a
+gopkg/pkg/${GO_PLATFORM}/github.com/jdkato/prose/tokenize.a
+gopkg/pkg/${GO_PLATFORM}/github.com/jdkato/prose/transform.a
+gopkg/src/github.com/jdkato/prose/AUTHORS.md
+gopkg/src/github.com/jdkato/prose/LICENSE
+gopkg/src/github.com/jdkato/prose/Makefile
+gopkg/src/github.com/jdkato/prose/README.md
+gopkg/src/github.com/jdkato/prose/appveyor.yml
+gopkg/src/github.com/jdkato/prose/chunk/chunk.go
+gopkg/src/github.com/jdkato/prose/chunk/chunk_test.go
+gopkg/src/github.com/jdkato/prose/cmd/prose/main.go
+gopkg/src/github.com/jdkato/prose/doc.go
+gopkg/src/github.com/jdkato/prose/internal/model/classes.gob
+gopkg/src/github.com/jdkato/prose/internal/model/load.go
+gopkg/src/github.com/jdkato/prose/internal/model/model.go
+gopkg/src/github.com/jdkato/prose/internal/model/tags.gob
+gopkg/src/github.com/jdkato/prose/internal/model/weights.gob
+gopkg/src/github.com/jdkato/prose/internal/util/util.go
+gopkg/src/github.com/jdkato/prose/requirements.txt
+gopkg/src/github.com/jdkato/prose/scripts/cover.sh
+gopkg/src/github.com/jdkato/prose/scripts/get_article.py
+gopkg/src/github.com/jdkato/prose/scripts/pipe.py
+gopkg/src/github.com/jdkato/prose/scripts/test_model.py
+gopkg/src/github.com/jdkato/prose/scripts/treebank_words.py
+gopkg/src/github.com/jdkato/prose/scripts/update_model.py
+gopkg/src/github.com/jdkato/prose/scripts/word_punct.py
+gopkg/src/github.com/jdkato/prose/summarize/easy.go
+gopkg/src/github.com/jdkato/prose/summarize/easy_test.go
+gopkg/src/github.com/jdkato/prose/summarize/readability.go
+gopkg/src/github.com/jdkato/prose/summarize/readability_test.go
+gopkg/src/github.com/jdkato/prose/summarize/stop.go
+gopkg/src/github.com/jdkato/prose/summarize/summarize.go
+gopkg/src/github.com/jdkato/prose/summarize/summarize_test.go
+gopkg/src/github.com/jdkato/prose/summarize/syllables.go
+gopkg/src/github.com/jdkato/prose/summarize/syllables_test.go
+gopkg/src/github.com/jdkato/prose/summarize/usage.go
+gopkg/src/github.com/jdkato/prose/summarize/usage_test.go
+gopkg/src/github.com/jdkato/prose/tag/aptag.go
+gopkg/src/github.com/jdkato/prose/tag/aptag_test.go
+gopkg/src/github.com/jdkato/prose/tag/tag.go
+gopkg/src/github.com/jdkato/prose/testdata/1-syllable-words.txt
+gopkg/src/github.com/jdkato/prose/testdata/2-syllable-words.txt
+gopkg/src/github.com/jdkato/prose/testdata/3-syllable-words.txt
+gopkg/src/github.com/jdkato/prose/testdata/4-syllable-words.txt
+gopkg/src/github.com/jdkato/prose/testdata/5-syllable-words.txt
+gopkg/src/github.com/jdkato/prose/testdata/6-syllable-words.txt
+gopkg/src/github.com/jdkato/prose/testdata/7-syllable-words.txt
+gopkg/src/github.com/jdkato/prose/testdata/article.txt
+gopkg/src/github.com/jdkato/prose/testdata/golden_rules_en.json
+gopkg/src/github.com/jdkato/prose/testdata/golden_rules_es.json
+gopkg/src/github.com/jdkato/prose/testdata/golden_rules_fr.json
+gopkg/src/github.com/jdkato/prose/testdata/sherlock.txt
+gopkg/src/github.com/jdkato/prose/testdata/summarize.json
+gopkg/src/github.com/jdkato/prose/testdata/syllables.json
+gopkg/src/github.com/jdkato/prose/testdata/title.json
+gopkg/src/github.com/jdkato/prose/testdata/tokenize.json
+gopkg/src/github.com/jdkato/prose/testdata/treebank_sents.json
+gopkg/src/github.com/jdkato/prose/testdata/treebank_words.json
+gopkg/src/github.com/jdkato/prose/testdata/word_punct.json
+gopkg/src/github.com/jdkato/prose/tokenize/pragmatic.go
+gopkg/src/github.com/jdkato/prose/tokenize/pragmatic_test.go
+gopkg/src/github.com/jdkato/prose/tokenize/punkt.go
+gopkg/src/github.com/jdkato/prose/tokenize/punkt_test.go
+gopkg/src/github.com/jdkato/prose/tokenize/regexp.go
+gopkg/src/github.com/jdkato/prose/tokenize/regexp_test.go
+gopkg/src/github.com/jdkato/prose/tokenize/tokenize.go
+gopkg/src/github.com/jdkato/prose/tokenize/tokenize_test.go
+gopkg/src/github.com/jdkato/prose/tokenize/treebank.go
+gopkg/src/github.com/jdkato/prose/tokenize/treebank_test.go
+gopkg/src/github.com/jdkato/prose/transform/title.go
+gopkg/src/github.com/jdkato/prose/transform/title_test.go
+gopkg/src/github.com/jdkato/prose/transform/transform.go
+gopkg/src/github.com/jdkato/prose/transform/transform_test.go
Index: pkgsrc/textproc/go-prose/buildlink3.mk
diff -u /dev/null pkgsrc/textproc/go-prose/buildlink3.mk:1.1
--- /dev/null   Thu Aug 17 01:56:05 2017
+++ pkgsrc/textproc/go-prose/buildlink3.mk      Thu Aug 17 01:56:05 2017
@@ -0,0 +1,17 @@
+# $NetBSD: buildlink3.mk,v 1.1 2017/08/17 01:56:05 gavan Exp $
+
+BUILDLINK_TREE+=       go-prose
+
+.if !defined(GO_PROSE_BUILDLINK3_MK)
+GO_PROSE_BUILDLINK3_MK:=
+
+BUILDLINK_CONTENTS_FILTER.go-prose=    ${EGREP} gopkg/
+BUILDLINK_DEPMETHOD.go-prose?=         build
+
+BUILDLINK_API_DEPENDS.go-prose+=               go-prose>=0.0
+BUILDLINK_PKGSRCDIR.go-prose?=         ../../textproc/go-prose
+
+.endif  # GO_PROSE_BUILDLINK3_MK
+
+BUILDLINK_TREE+=       -go-prose
+
Index: pkgsrc/textproc/go-prose/distinfo
diff -u /dev/null pkgsrc/textproc/go-prose/distinfo:1.1
--- /dev/null   Thu Aug 17 01:56:05 2017
+++ pkgsrc/textproc/go-prose/distinfo   Thu Aug 17 01:56:05 2017
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1 2017/08/17 01:56:05 gavan Exp $
+
+SHA1 (prose-0.0.20170806-a678fc7b3ceb0f38ff832c337dea083902c349b2.tar.gz) = 310c4f8659c556fb0021e4fd352f80f8b92a96fb
+RMD160 (prose-0.0.20170806-a678fc7b3ceb0f38ff832c337dea083902c349b2.tar.gz) = 76cc2d21dcc6e95bbfed69406ca0c45111b3cb67
+SHA512 (prose-0.0.20170806-a678fc7b3ceb0f38ff832c337dea083902c349b2.tar.gz) = 
5717765a9084d065b0be69520581e0c8d910eea6cb5afa7437df940e4dfa7edc8ab91a808a90a04bab119427f4c540f0038a03e23b1f3f2ec05e1b0e7abc88cc
+Size (prose-0.0.20170806-a678fc7b3ceb0f38ff832c337dea083902c349b2.tar.gz) = 4562468 bytes



Home | Main Index | Thread Index | Old Index