Thu Dec 15 23:15:24 2022 UTC ()
py-nltk: updated to 3.8

Version 3.8 2022-12-12

* Refactor dispersion plot
* Provide type hints for LazyCorpusLoader variables
* Throw warning when LanguageModel is initialized with incorrect vocabulary
* Fix WordNet's all_synsets() function
* Resolve TreebankWordDetokenizer inconsistency with end-of-string contractions
* Support both iso639-3 codes and BCP-47 language tags
* Avoid DeprecationWarning in Regexp tokenizer
* Fix many doctests, add doctests to CI
* Fix bool field not being read in VerbNet
* Greatly improve time efficiency of SyllableTokenizer when tokenizing numbers
* Fix encodings of Polish udhr corpus reader
* Allow TweetTokenizer to tokenize emoji flag sequences
* Prevent LazyModule from increasing the size of nltk.__dict__
* Fix CoreNLPServer non-default port issue
* Add "acion" suffix to the Spanish SnowballStemmer
* Allow loading WordNet without OMW
* Use input() in nltk.chat.chatbot() for Jupyter support
* Fix edit_distance_align() in distance.py
* Tackle performance and accuracy regression of sentence tokenizer since NLTK 3.6.6
* Add the Iota operator to semantic logic
* Resolve critical errors in WordNet app
* Resolve critical error in CHILDES Corpus
* Make WordNet information_content() accept adjective satellites
* Add "strict=True" parameter to CoreNLP
* Resolve issue with WordNet's synset_from_sense_key
* Handle WordNet synsets that were lost in mapping
* Resolve TypeError in Boxer
* Add function to retrieve WordNet synonyms
* Warn about nonexistent OMW offsets instead of raising an error
* Fix missing ic argument in res, jcn and lin similarity functions of WordNet
* Add support for the extended OMW
* Fix LC cutoff policy of text tiling
* Optimize ConditionalFreqDist.__add__ performance
* Add Markdown corpus reader


(adam)
diff -r1.8 -r1.9 pkgsrc/textproc/py-nltk/Makefile
diff -r1.4 -r1.5 pkgsrc/textproc/py-nltk/PLIST
diff -r1.6 -r1.7 pkgsrc/textproc/py-nltk/distinfo

cvs diff -r1.8 -r1.9 pkgsrc/textproc/py-nltk/Makefile (expand / switch to unified diff)

--- pkgsrc/textproc/py-nltk/Makefile 2022/11/29 17:09:45 1.8
+++ pkgsrc/textproc/py-nltk/Makefile 2022/12/15 23:15:24 1.9
@@ -1,16 +1,16 @@ @@ -1,16 +1,16 @@
1# $NetBSD: Makefile,v 1.8 2022/11/29 17:09:45 adam Exp $ 1# $NetBSD: Makefile,v 1.9 2022/12/15 23:15:24 adam Exp $
2 2
3DISTNAME= nltk-3.7 3DISTNAME= nltk-3.8
4PKGNAME= ${PYPKGPREFIX}-${DISTNAME} 4PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
5CATEGORIES= textproc python 5CATEGORIES= textproc python
6MASTER_SITES= ${MASTER_SITE_PYPI:=n/nltk/} 6MASTER_SITES= ${MASTER_SITE_PYPI:=n/nltk/}
7EXTRACT_SUFX= .zip 7EXTRACT_SUFX= .zip
8 8
9MAINTAINER= pkgsrc-users@NetBSD.org 9MAINTAINER= pkgsrc-users@NetBSD.org
10HOMEPAGE= https://www.nltk.org/ 10HOMEPAGE= https://www.nltk.org/
11COMMENT= Natural Language Toolkit (NLTK) 11COMMENT= Natural Language Toolkit (NLTK)
12LICENSE= apache-2.0 12LICENSE= apache-2.0
13 13
14DEPENDS+= ${PYPKGPREFIX}-click-[0-9]*:../../devel/py-click 14DEPENDS+= ${PYPKGPREFIX}-click-[0-9]*:../../devel/py-click
15DEPENDS+= ${PYPKGPREFIX}-joblib-[0-9]*:../../devel/py-joblib 15DEPENDS+= ${PYPKGPREFIX}-joblib-[0-9]*:../../devel/py-joblib
16DEPENDS+= ${PYPKGPREFIX}-pyparsing-[0-9]*:../../devel/py-pyparsing 16DEPENDS+= ${PYPKGPREFIX}-pyparsing-[0-9]*:../../devel/py-pyparsing

cvs diff -r1.4 -r1.5 pkgsrc/textproc/py-nltk/PLIST (expand / switch to unified diff)

--- pkgsrc/textproc/py-nltk/PLIST 2022/11/29 17:09:45 1.4
+++ pkgsrc/textproc/py-nltk/PLIST 2022/12/15 23:15:24 1.5
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.4 2022/11/29 17:09:45 adam Exp $ 1@comment $NetBSD: PLIST,v 1.5 2022/12/15 23:15:24 adam Exp $
2bin/nltk-${PYVERSSUFFIX} 2bin/nltk-${PYVERSSUFFIX}
3${PYSITELIB}/${EGG_INFODIR}/PKG-INFO 3${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
4${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt 4${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
5${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt 5${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
6${PYSITELIB}/${EGG_INFODIR}/entry_points.txt 6${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
7${PYSITELIB}/${EGG_INFODIR}/not-zip-safe 7${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
8${PYSITELIB}/${EGG_INFODIR}/requires.txt 8${PYSITELIB}/${EGG_INFODIR}/requires.txt
9${PYSITELIB}/${EGG_INFODIR}/top_level.txt 9${PYSITELIB}/${EGG_INFODIR}/top_level.txt
10${PYSITELIB}/nltk/VERSION 10${PYSITELIB}/nltk/VERSION
11${PYSITELIB}/nltk/__init__.py 11${PYSITELIB}/nltk/__init__.py
12${PYSITELIB}/nltk/__init__.pyc 12${PYSITELIB}/nltk/__init__.pyc
13${PYSITELIB}/nltk/__init__.pyo 13${PYSITELIB}/nltk/__init__.pyo
14${PYSITELIB}/nltk/app/__init__.py 14${PYSITELIB}/nltk/app/__init__.py
@@ -178,26 +178,29 @@ ${PYSITELIB}/nltk/corpus/__init__.pyc @@ -178,26 +178,29 @@ ${PYSITELIB}/nltk/corpus/__init__.pyc
178${PYSITELIB}/nltk/corpus/__init__.pyo 178${PYSITELIB}/nltk/corpus/__init__.pyo
179${PYSITELIB}/nltk/corpus/europarl_raw.py 179${PYSITELIB}/nltk/corpus/europarl_raw.py
180${PYSITELIB}/nltk/corpus/europarl_raw.pyc 180${PYSITELIB}/nltk/corpus/europarl_raw.pyc
181${PYSITELIB}/nltk/corpus/europarl_raw.pyo 181${PYSITELIB}/nltk/corpus/europarl_raw.pyo
182${PYSITELIB}/nltk/corpus/reader/__init__.py 182${PYSITELIB}/nltk/corpus/reader/__init__.py
183${PYSITELIB}/nltk/corpus/reader/__init__.pyc 183${PYSITELIB}/nltk/corpus/reader/__init__.pyc
184${PYSITELIB}/nltk/corpus/reader/__init__.pyo 184${PYSITELIB}/nltk/corpus/reader/__init__.pyo
185${PYSITELIB}/nltk/corpus/reader/aligned.py 185${PYSITELIB}/nltk/corpus/reader/aligned.py
186${PYSITELIB}/nltk/corpus/reader/aligned.pyc 186${PYSITELIB}/nltk/corpus/reader/aligned.pyc
187${PYSITELIB}/nltk/corpus/reader/aligned.pyo 187${PYSITELIB}/nltk/corpus/reader/aligned.pyo
188${PYSITELIB}/nltk/corpus/reader/api.py 188${PYSITELIB}/nltk/corpus/reader/api.py
189${PYSITELIB}/nltk/corpus/reader/api.pyc 189${PYSITELIB}/nltk/corpus/reader/api.pyc
190${PYSITELIB}/nltk/corpus/reader/api.pyo 190${PYSITELIB}/nltk/corpus/reader/api.pyo
 191${PYSITELIB}/nltk/corpus/reader/bcp47.py
 192${PYSITELIB}/nltk/corpus/reader/bcp47.pyc
 193${PYSITELIB}/nltk/corpus/reader/bcp47.pyo
191${PYSITELIB}/nltk/corpus/reader/bnc.py 194${PYSITELIB}/nltk/corpus/reader/bnc.py
192${PYSITELIB}/nltk/corpus/reader/bnc.pyc 195${PYSITELIB}/nltk/corpus/reader/bnc.pyc
193${PYSITELIB}/nltk/corpus/reader/bnc.pyo 196${PYSITELIB}/nltk/corpus/reader/bnc.pyo
194${PYSITELIB}/nltk/corpus/reader/bracket_parse.py 197${PYSITELIB}/nltk/corpus/reader/bracket_parse.py
195${PYSITELIB}/nltk/corpus/reader/bracket_parse.pyc 198${PYSITELIB}/nltk/corpus/reader/bracket_parse.pyc
196${PYSITELIB}/nltk/corpus/reader/bracket_parse.pyo 199${PYSITELIB}/nltk/corpus/reader/bracket_parse.pyo
197${PYSITELIB}/nltk/corpus/reader/categorized_sents.py 200${PYSITELIB}/nltk/corpus/reader/categorized_sents.py
198${PYSITELIB}/nltk/corpus/reader/categorized_sents.pyc 201${PYSITELIB}/nltk/corpus/reader/categorized_sents.pyc
199${PYSITELIB}/nltk/corpus/reader/categorized_sents.pyo 202${PYSITELIB}/nltk/corpus/reader/categorized_sents.pyo
200${PYSITELIB}/nltk/corpus/reader/chasen.py 203${PYSITELIB}/nltk/corpus/reader/chasen.py
201${PYSITELIB}/nltk/corpus/reader/chasen.pyc 204${PYSITELIB}/nltk/corpus/reader/chasen.pyc
202${PYSITELIB}/nltk/corpus/reader/chasen.pyo 205${PYSITELIB}/nltk/corpus/reader/chasen.pyo
203${PYSITELIB}/nltk/corpus/reader/childes.py 206${PYSITELIB}/nltk/corpus/reader/childes.py
@@ -229,26 +232,29 @@ ${PYSITELIB}/nltk/corpus/reader/ieer.pyc @@ -229,26 +232,29 @@ ${PYSITELIB}/nltk/corpus/reader/ieer.pyc
229${PYSITELIB}/nltk/corpus/reader/ieer.pyo 232${PYSITELIB}/nltk/corpus/reader/ieer.pyo
230${PYSITELIB}/nltk/corpus/reader/indian.py 233${PYSITELIB}/nltk/corpus/reader/indian.py
231${PYSITELIB}/nltk/corpus/reader/indian.pyc 234${PYSITELIB}/nltk/corpus/reader/indian.pyc
232${PYSITELIB}/nltk/corpus/reader/indian.pyo 235${PYSITELIB}/nltk/corpus/reader/indian.pyo
233${PYSITELIB}/nltk/corpus/reader/ipipan.py 236${PYSITELIB}/nltk/corpus/reader/ipipan.py
234${PYSITELIB}/nltk/corpus/reader/ipipan.pyc 237${PYSITELIB}/nltk/corpus/reader/ipipan.pyc
235${PYSITELIB}/nltk/corpus/reader/ipipan.pyo 238${PYSITELIB}/nltk/corpus/reader/ipipan.pyo
236${PYSITELIB}/nltk/corpus/reader/knbc.py 239${PYSITELIB}/nltk/corpus/reader/knbc.py
237${PYSITELIB}/nltk/corpus/reader/knbc.pyc 240${PYSITELIB}/nltk/corpus/reader/knbc.pyc
238${PYSITELIB}/nltk/corpus/reader/knbc.pyo 241${PYSITELIB}/nltk/corpus/reader/knbc.pyo
239${PYSITELIB}/nltk/corpus/reader/lin.py 242${PYSITELIB}/nltk/corpus/reader/lin.py
240${PYSITELIB}/nltk/corpus/reader/lin.pyc 243${PYSITELIB}/nltk/corpus/reader/lin.pyc
241${PYSITELIB}/nltk/corpus/reader/lin.pyo 244${PYSITELIB}/nltk/corpus/reader/lin.pyo
 245${PYSITELIB}/nltk/corpus/reader/markdown.py
 246${PYSITELIB}/nltk/corpus/reader/markdown.pyc
 247${PYSITELIB}/nltk/corpus/reader/markdown.pyo
242${PYSITELIB}/nltk/corpus/reader/mte.py 248${PYSITELIB}/nltk/corpus/reader/mte.py
243${PYSITELIB}/nltk/corpus/reader/mte.pyc 249${PYSITELIB}/nltk/corpus/reader/mte.pyc
244${PYSITELIB}/nltk/corpus/reader/mte.pyo 250${PYSITELIB}/nltk/corpus/reader/mte.pyo
245${PYSITELIB}/nltk/corpus/reader/nkjp.py 251${PYSITELIB}/nltk/corpus/reader/nkjp.py
246${PYSITELIB}/nltk/corpus/reader/nkjp.pyc 252${PYSITELIB}/nltk/corpus/reader/nkjp.pyc
247${PYSITELIB}/nltk/corpus/reader/nkjp.pyo 253${PYSITELIB}/nltk/corpus/reader/nkjp.pyo
248${PYSITELIB}/nltk/corpus/reader/nombank.py 254${PYSITELIB}/nltk/corpus/reader/nombank.py
249${PYSITELIB}/nltk/corpus/reader/nombank.pyc 255${PYSITELIB}/nltk/corpus/reader/nombank.pyc
250${PYSITELIB}/nltk/corpus/reader/nombank.pyo 256${PYSITELIB}/nltk/corpus/reader/nombank.pyo
251${PYSITELIB}/nltk/corpus/reader/nps_chat.py 257${PYSITELIB}/nltk/corpus/reader/nps_chat.py
252${PYSITELIB}/nltk/corpus/reader/nps_chat.pyc 258${PYSITELIB}/nltk/corpus/reader/nps_chat.pyc
253${PYSITELIB}/nltk/corpus/reader/nps_chat.pyo 259${PYSITELIB}/nltk/corpus/reader/nps_chat.pyo
254${PYSITELIB}/nltk/corpus/reader/opinion_lexicon.py 260${PYSITELIB}/nltk/corpus/reader/opinion_lexicon.py
@@ -391,26 +397,29 @@ ${PYSITELIB}/nltk/inference/prover9.pyc @@ -391,26 +397,29 @@ ${PYSITELIB}/nltk/inference/prover9.pyc
391${PYSITELIB}/nltk/inference/prover9.pyo 397${PYSITELIB}/nltk/inference/prover9.pyo
392${PYSITELIB}/nltk/inference/resolution.py 398${PYSITELIB}/nltk/inference/resolution.py
393${PYSITELIB}/nltk/inference/resolution.pyc 399${PYSITELIB}/nltk/inference/resolution.pyc
394${PYSITELIB}/nltk/inference/resolution.pyo 400${PYSITELIB}/nltk/inference/resolution.pyo
395${PYSITELIB}/nltk/inference/tableau.py 401${PYSITELIB}/nltk/inference/tableau.py
396${PYSITELIB}/nltk/inference/tableau.pyc 402${PYSITELIB}/nltk/inference/tableau.pyc
397${PYSITELIB}/nltk/inference/tableau.pyo 403${PYSITELIB}/nltk/inference/tableau.pyo
398${PYSITELIB}/nltk/internals.py 404${PYSITELIB}/nltk/internals.py
399${PYSITELIB}/nltk/internals.pyc 405${PYSITELIB}/nltk/internals.pyc
400${PYSITELIB}/nltk/internals.pyo 406${PYSITELIB}/nltk/internals.pyo
401${PYSITELIB}/nltk/jsontags.py 407${PYSITELIB}/nltk/jsontags.py
402${PYSITELIB}/nltk/jsontags.pyc 408${PYSITELIB}/nltk/jsontags.pyc
403${PYSITELIB}/nltk/jsontags.pyo 409${PYSITELIB}/nltk/jsontags.pyo
 410${PYSITELIB}/nltk/langnames.py
 411${PYSITELIB}/nltk/langnames.pyc
 412${PYSITELIB}/nltk/langnames.pyo
404${PYSITELIB}/nltk/lazyimport.py 413${PYSITELIB}/nltk/lazyimport.py
405${PYSITELIB}/nltk/lazyimport.pyc 414${PYSITELIB}/nltk/lazyimport.pyc
406${PYSITELIB}/nltk/lazyimport.pyo 415${PYSITELIB}/nltk/lazyimport.pyo
407${PYSITELIB}/nltk/lm/__init__.py 416${PYSITELIB}/nltk/lm/__init__.py
408${PYSITELIB}/nltk/lm/__init__.pyc 417${PYSITELIB}/nltk/lm/__init__.pyc
409${PYSITELIB}/nltk/lm/__init__.pyo 418${PYSITELIB}/nltk/lm/__init__.pyo
410${PYSITELIB}/nltk/lm/api.py 419${PYSITELIB}/nltk/lm/api.py
411${PYSITELIB}/nltk/lm/api.pyc 420${PYSITELIB}/nltk/lm/api.pyc
412${PYSITELIB}/nltk/lm/api.pyo 421${PYSITELIB}/nltk/lm/api.pyo
413${PYSITELIB}/nltk/lm/counter.py 422${PYSITELIB}/nltk/lm/counter.py
414${PYSITELIB}/nltk/lm/counter.pyc 423${PYSITELIB}/nltk/lm/counter.pyc
415${PYSITELIB}/nltk/lm/counter.pyo 424${PYSITELIB}/nltk/lm/counter.pyo
416${PYSITELIB}/nltk/lm/models.py 425${PYSITELIB}/nltk/lm/models.py
@@ -719,77 +728,71 @@ ${PYSITELIB}/nltk/test/classify_fixt.py @@ -719,77 +728,71 @@ ${PYSITELIB}/nltk/test/classify_fixt.py
719${PYSITELIB}/nltk/test/classify_fixt.pyc 728${PYSITELIB}/nltk/test/classify_fixt.pyc
720${PYSITELIB}/nltk/test/classify_fixt.pyo 729${PYSITELIB}/nltk/test/classify_fixt.pyo
721${PYSITELIB}/nltk/test/collections.doctest 730${PYSITELIB}/nltk/test/collections.doctest
722${PYSITELIB}/nltk/test/collocations.doctest 731${PYSITELIB}/nltk/test/collocations.doctest
723${PYSITELIB}/nltk/test/concordance.doctest 732${PYSITELIB}/nltk/test/concordance.doctest
724${PYSITELIB}/nltk/test/conftest.py 733${PYSITELIB}/nltk/test/conftest.py
725${PYSITELIB}/nltk/test/conftest.pyc 734${PYSITELIB}/nltk/test/conftest.pyc
726${PYSITELIB}/nltk/test/conftest.pyo 735${PYSITELIB}/nltk/test/conftest.pyo
727${PYSITELIB}/nltk/test/corpus.doctest 736${PYSITELIB}/nltk/test/corpus.doctest
728${PYSITELIB}/nltk/test/crubadan.doctest 737${PYSITELIB}/nltk/test/crubadan.doctest
729${PYSITELIB}/nltk/test/data.doctest 738${PYSITELIB}/nltk/test/data.doctest
730${PYSITELIB}/nltk/test/dependency.doctest 739${PYSITELIB}/nltk/test/dependency.doctest
731${PYSITELIB}/nltk/test/discourse.doctest 740${PYSITELIB}/nltk/test/discourse.doctest
732${PYSITELIB}/nltk/test/discourse_fixt.py 
733${PYSITELIB}/nltk/test/discourse_fixt.pyc 
734${PYSITELIB}/nltk/test/discourse_fixt.pyo 
735${PYSITELIB}/nltk/test/drt.doctest 741${PYSITELIB}/nltk/test/drt.doctest
736${PYSITELIB}/nltk/test/featgram.doctest 742${PYSITELIB}/nltk/test/featgram.doctest
737${PYSITELIB}/nltk/test/featstruct.doctest 743${PYSITELIB}/nltk/test/featstruct.doctest
738${PYSITELIB}/nltk/test/framenet.doctest 744${PYSITELIB}/nltk/test/framenet.doctest
739${PYSITELIB}/nltk/test/generate.doctest 745${PYSITELIB}/nltk/test/generate.doctest
740${PYSITELIB}/nltk/test/gensim.doctest 746${PYSITELIB}/nltk/test/gensim.doctest
741${PYSITELIB}/nltk/test/gensim_fixt.py 747${PYSITELIB}/nltk/test/gensim_fixt.py
742${PYSITELIB}/nltk/test/gensim_fixt.pyc 748${PYSITELIB}/nltk/test/gensim_fixt.pyc
743${PYSITELIB}/nltk/test/gensim_fixt.pyo 749${PYSITELIB}/nltk/test/gensim_fixt.pyo
744${PYSITELIB}/nltk/test/gluesemantics.doctest 750${PYSITELIB}/nltk/test/gluesemantics.doctest
745${PYSITELIB}/nltk/test/gluesemantics_malt.doctest 751${PYSITELIB}/nltk/test/gluesemantics_malt.doctest
746${PYSITELIB}/nltk/test/gluesemantics_malt_fixt.py 752${PYSITELIB}/nltk/test/gluesemantics_malt_fixt.py
747${PYSITELIB}/nltk/test/gluesemantics_malt_fixt.pyc 753${PYSITELIB}/nltk/test/gluesemantics_malt_fixt.pyc
748${PYSITELIB}/nltk/test/gluesemantics_malt_fixt.pyo 754${PYSITELIB}/nltk/test/gluesemantics_malt_fixt.pyo
749${PYSITELIB}/nltk/test/grammar.doctest 755${PYSITELIB}/nltk/test/grammar.doctest
750${PYSITELIB}/nltk/test/grammartestsuites.doctest 756${PYSITELIB}/nltk/test/grammartestsuites.doctest
751${PYSITELIB}/nltk/test/index.doctest 757${PYSITELIB}/nltk/test/index.doctest
752${PYSITELIB}/nltk/test/inference.doctest 758${PYSITELIB}/nltk/test/inference.doctest
753${PYSITELIB}/nltk/test/inference_fixt.py 
754${PYSITELIB}/nltk/test/inference_fixt.pyc 
755${PYSITELIB}/nltk/test/inference_fixt.pyo 
756${PYSITELIB}/nltk/test/internals.doctest 759${PYSITELIB}/nltk/test/internals.doctest
757${PYSITELIB}/nltk/test/japanese.doctest 760${PYSITELIB}/nltk/test/japanese.doctest
758${PYSITELIB}/nltk/test/lm.doctest 761${PYSITELIB}/nltk/test/lm.doctest
759${PYSITELIB}/nltk/test/logic.doctest 762${PYSITELIB}/nltk/test/logic.doctest
760${PYSITELIB}/nltk/test/meteor.doctest 763${PYSITELIB}/nltk/test/meteor.doctest
761${PYSITELIB}/nltk/test/metrics.doctest 764${PYSITELIB}/nltk/test/metrics.doctest
762${PYSITELIB}/nltk/test/misc.doctest 765${PYSITELIB}/nltk/test/misc.doctest
763${PYSITELIB}/nltk/test/nonmonotonic.doctest 766${PYSITELIB}/nltk/test/nonmonotonic.doctest
764${PYSITELIB}/nltk/test/nonmonotonic_fixt.py 
765${PYSITELIB}/nltk/test/nonmonotonic_fixt.pyc 
766${PYSITELIB}/nltk/test/nonmonotonic_fixt.pyo 
767${PYSITELIB}/nltk/test/paice.doctest 767${PYSITELIB}/nltk/test/paice.doctest
768${PYSITELIB}/nltk/test/parse.doctest 768${PYSITELIB}/nltk/test/parse.doctest
769${PYSITELIB}/nltk/test/portuguese_en.doctest 769${PYSITELIB}/nltk/test/portuguese_en.doctest
770${PYSITELIB}/nltk/test/portuguese_en_fixt.py 770${PYSITELIB}/nltk/test/portuguese_en_fixt.py
771${PYSITELIB}/nltk/test/portuguese_en_fixt.pyc 771${PYSITELIB}/nltk/test/portuguese_en_fixt.pyc
772${PYSITELIB}/nltk/test/portuguese_en_fixt.pyo 772${PYSITELIB}/nltk/test/portuguese_en_fixt.pyo
773${PYSITELIB}/nltk/test/probability.doctest 773${PYSITELIB}/nltk/test/probability.doctest
774${PYSITELIB}/nltk/test/probability_fixt.py 774${PYSITELIB}/nltk/test/probability_fixt.py
775${PYSITELIB}/nltk/test/probability_fixt.pyc 775${PYSITELIB}/nltk/test/probability_fixt.pyc
776${PYSITELIB}/nltk/test/probability_fixt.pyo 776${PYSITELIB}/nltk/test/probability_fixt.pyo
777${PYSITELIB}/nltk/test/propbank.doctest 777${PYSITELIB}/nltk/test/propbank.doctest
778${PYSITELIB}/nltk/test/relextract.doctest 778${PYSITELIB}/nltk/test/relextract.doctest
779${PYSITELIB}/nltk/test/resolution.doctest 779${PYSITELIB}/nltk/test/resolution.doctest
780${PYSITELIB}/nltk/test/semantics.doctest 780${PYSITELIB}/nltk/test/semantics.doctest
781${PYSITELIB}/nltk/test/sentiment.doctest 781${PYSITELIB}/nltk/test/sentiment.doctest
782${PYSITELIB}/nltk/test/sentiwordnet.doctest 782${PYSITELIB}/nltk/test/sentiwordnet.doctest
 783${PYSITELIB}/nltk/test/setup_fixt.py
 784${PYSITELIB}/nltk/test/setup_fixt.pyc
 785${PYSITELIB}/nltk/test/setup_fixt.pyo
783${PYSITELIB}/nltk/test/simple.doctest 786${PYSITELIB}/nltk/test/simple.doctest
784${PYSITELIB}/nltk/test/stem.doctest 787${PYSITELIB}/nltk/test/stem.doctest
785${PYSITELIB}/nltk/test/tag.doctest 788${PYSITELIB}/nltk/test/tag.doctest
786${PYSITELIB}/nltk/test/tokenize.doctest 789${PYSITELIB}/nltk/test/tokenize.doctest
787${PYSITELIB}/nltk/test/toolbox.doctest 790${PYSITELIB}/nltk/test/toolbox.doctest
788${PYSITELIB}/nltk/test/translate.doctest 791${PYSITELIB}/nltk/test/translate.doctest
789${PYSITELIB}/nltk/test/tree.doctest 792${PYSITELIB}/nltk/test/tree.doctest
790${PYSITELIB}/nltk/test/treeprettyprinter.doctest 793${PYSITELIB}/nltk/test/treeprettyprinter.doctest
791${PYSITELIB}/nltk/test/treetransforms.doctest 794${PYSITELIB}/nltk/test/treetransforms.doctest
792${PYSITELIB}/nltk/test/unit/__init__.py 795${PYSITELIB}/nltk/test/unit/__init__.py
793${PYSITELIB}/nltk/test/unit/__init__.pyc 796${PYSITELIB}/nltk/test/unit/__init__.pyc
794${PYSITELIB}/nltk/test/unit/__init__.pyo 797${PYSITELIB}/nltk/test/unit/__init__.pyo
795${PYSITELIB}/nltk/test/unit/lm/__init__.py 798${PYSITELIB}/nltk/test/unit/lm/__init__.py

cvs diff -r1.6 -r1.7 pkgsrc/textproc/py-nltk/distinfo (expand / switch to unified diff)

--- pkgsrc/textproc/py-nltk/distinfo 2022/11/29 17:09:45 1.6
+++ pkgsrc/textproc/py-nltk/distinfo 2022/12/15 23:15:24 1.7
@@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
1$NetBSD: distinfo,v 1.6 2022/11/29 17:09:45 adam Exp $ 1$NetBSD: distinfo,v 1.7 2022/12/15 23:15:24 adam Exp $
2 2
3BLAKE2s (nltk-3.7.zip) = 28c8e1bb3b834d1460e41e967473b89641fddc6db6b890e292a1ba8aa60519ee 3BLAKE2s (nltk-3.8.zip) = abd3408550c17141c5ad16b590b26a84196d7a0c33d9ddcff77ef4eff0816e94
4SHA512 (nltk-3.7.zip) = 8abe2d11875f769a4d23190b8da5807ee6a924fd5e07bfeb545f1a6e191eb1f49d02cbd80330f4261330598dd0936430c68513291f6e49fc275047c93e7f430a 4SHA512 (nltk-3.8.zip) = 94ce94a0a5fc353e1802758b30c095d03dda044b337072e29ed0b17de509c0c3902b13bef7177adef1f0cbf57cd629ac9f8b1a242edcd3f3b4d206990b3cdcf8
5Size (nltk-3.7.zip) = 3293449 bytes 5Size (nltk-3.8.zip) = 4619825 bytes