Skip to content

Commit

Permalink
Update to 1.16
Browse files Browse the repository at this point in the history
Add missing DEPENDS

Upstream changes:
1.16      2015-02-24
	- podspell script: set output encoding from locale CTYPE (DOLMEN)

1.15      2014-02-28
	- Convert to strict mode of File::ShareDir::ProjectDistDir (KENTNL)
	- change to use Path::Tiny->lines_utf8

1.14      2014-02-12
	- Discontinue use of File::Slurp, use Path::Tiny->lines instead
	  GH #15 ( Ether )

1.13      2013-11-02
	- fix encoding issues issues in pod for perldoc

1.12      2013-10-17
	- improve documentation

1.11      2013-10-17
	- fix shebang to /usr/bin/perl for EUMM replacment GH #13 (dolmen)

1.10      2013-09-27
	[FEATURES]
	- added 'no_wide_chars' option to strip words with such characters
	  from the output.  This may help spellcheckers that can't cope
	  with UTF-8
	[CHANGED]
	- improved punctuation stripping algorithm for better word
	  isolation (example C<< "hello". >> now is found as "hello")
	- strips all word that do not have at least one \w character
	  as a spellchecker isn't likely to do anything useful with them
	[DOCUMENTED]
	- added recommendations for dealing with character encoding

1.09      2013-09-25
	[FIXED]
	- stopwords with 's are learned without 's to match how they are
	  checked
	[CHANGED]
	- leading and trailing punctuation is entirely stripped since the
	  spellchecker won't care anyway.  Trailing periods are *not*
	  stripped as they might be abbreviations ("Ph.D."), but such words
	  are checked against the stoplist both with and without
	  trailing periods to account for abbreviations and words at the
	  end of a sentence.

1.08      2013-09-24
	[FIXED]
	- hyphenated word parts are also checked against the stoplist
	  and stripped (dagolden) GH #9
	[DOCUMENTED]
	- noted that stopwords must be added before words appear in Pod

1.07      2013-09-14
	- add many words
	[FEATURES]
	- Pod::Wordlist is an Object ( dagolden )
	- Lingua::EN::Inflect is used to reduce requiring plurals in the list
	  ( dagolden )
	- the wordlist is now a sharedir file
	[DEPRECATED]
	- accessing %Pod::Wordlist::Wordlist directly

1.06      2013-09-08
	- import stopwords from Pod::Wordlist::hanekomu except names

1.05      2013-07-07
	- add stopwords
  • Loading branch information
wen committed Mar 5, 2015
1 parent eae6ae8 commit b13b252
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
8 changes: 5 additions & 3 deletions textproc/p5-Pod-Spell/Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
# $NetBSD: Makefile,v 1.10 2014/10/09 14:07:04 wiz Exp $
# $NetBSD: Makefile,v 1.11 2015/03/05 14:41:24 wen Exp $

DISTNAME= Pod-Spell-1.04
DISTNAME= Pod-Spell-1.16
PKGNAME= p5-${DISTNAME}
PKGREVISION= 2
CATEGORIES= devel perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Pod/}

Expand All @@ -12,6 +11,9 @@ COMMENT= Formatter for spellchecking Pod
LICENSE= artistic-2.0

DEPENDS+= {perl>=5.9.3,p5-Pod-Escapes>=1.01}:../../textproc/p5-Pod-Escapes
DEPENDS+= p5-Lingua-EN-Inflect>=0:../../textproc/p5-Lingua-EN-Inflect
DEPENDS+= p5-Class-Tiny>=0:../../devel/p5-Class-Tiny
DEPENDS+= p5-File-ShareDir-ProjectDistDir>=0:../../devel/p5-File-ShareDir-ProjectDistDir

PERL5_PACKLIST= auto/Pod/Spell/.packlist

Expand Down
8 changes: 4 additions & 4 deletions textproc/p5-Pod-Spell/distinfo
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
$NetBSD: distinfo,v 1.2 2013/07/05 00:17:32 wen Exp $
$NetBSD: distinfo,v 1.3 2015/03/05 14:41:24 wen Exp $

SHA1 (Pod-Spell-1.04.tar.gz) = 35569e9d78f2c3914f2ceafd373eaee8497be5ba
RMD160 (Pod-Spell-1.04.tar.gz) = 4d084a3c087da16d9f974f3449e2936c17172c46
Size (Pod-Spell-1.04.tar.gz) = 24736 bytes
SHA1 (Pod-Spell-1.16.tar.gz) = 820217dbec2ab10730c8ed2d3b1a12f4b3874da9
RMD160 (Pod-Spell-1.16.tar.gz) = ad9fc80e270447b5f773b7a8a34127d1f57c2b7f
Size (Pod-Spell-1.16.tar.gz) = 30447 bytes

0 comments on commit b13b252

Please sign in to comment.