Sun Feb 7 20:16:39 2021 UTC ()
Update to 0.76. From the changelog:

[Added]
- Mention the `--strict` option for `pherkin` in SYNOPSIS
- Added deprecation warning to 'data' accessor in
  Test::BDD::Cucumber::Model::Scenario

[Fixed]
- Warnings when processing empty feature files or files without
  a text after the `Feature:` keyword
- Feature and scenario descriptions missing space on concatenated lines
- Location of failed test in TAP output now points to the failed step,
  instead of somewhere inside `TAP::Harness`

[Changed]
- Scenarios defined by a scenario outline (`Examples:`) are now
  independent as in Cucumber; before, failure of a scenario in an
  outline would cancel all subsequent steps *and* scenarios -- now
  only steps are cancelled (skipped), but subsequent scenarios are
  run (gh #123)
- Descriptions of tests no longer contain prefixed 'In '
- Dependency YAML::Syck switched to YAML (which wraps YAML::XS or
  YAML::PP, whichever is available); YAML has 3x more dependencies
  on CPAN, increasing chances of prior availability
- Language definitions now stored as Perl instead of JSON for
  compactness and load speed

[Removed]
- Dependencies on Clone, List::MoreUtils, Number::Range


(schmonz)
diff -r1.48 -r1.49 pkgsrc/devel/p5-Test-BDD-Cucumber/Makefile
diff -r1.38 -r1.39 pkgsrc/devel/p5-Test-BDD-Cucumber/distinfo

cvs diff -r1.48 -r1.49 pkgsrc/devel/p5-Test-BDD-Cucumber/Makefile (expand / switch to unified diff)

--- pkgsrc/devel/p5-Test-BDD-Cucumber/Makefile 2020/12/29 11:28:01 1.48
+++ pkgsrc/devel/p5-Test-BDD-Cucumber/Makefile 2021/02/07 20:16:39 1.49
@@ -1,35 +1,32 @@ @@ -1,35 +1,32 @@
1# $NetBSD: Makefile,v 1.48 2020/12/29 11:28:01 schmonz Exp $ 1# $NetBSD: Makefile,v 1.49 2021/02/07 20:16:39 schmonz Exp $
2 2
3DISTNAME= Test-BDD-Cucumber-0.75 3DISTNAME= Test-BDD-Cucumber-0.76
4PKGNAME= p5-${DISTNAME} 4PKGNAME= p5-${DISTNAME}
5CATEGORIES= devel perl5 5CATEGORIES= devel perl5
6MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Test/} 6MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Test/}
7 7
8MAINTAINER= schmonz@NetBSD.org 8MAINTAINER= schmonz@NetBSD.org
9HOMEPAGE= https://metacpan.org/release/Test-BDD-Cucumber 9HOMEPAGE= https://metacpan.org/release/Test-BDD-Cucumber
10COMMENT= Feature-complete Cucumber-style testing in Perl 10COMMENT= Feature-complete Cucumber-style testing in Perl
11LICENSE= ${PERL5_LICENSE} 11LICENSE= ${PERL5_LICENSE}
12 12
13DEPENDS+= p5-Clone-[0-9]*:../../devel/p5-Clone 
14DEPENDS+= p5-File-Find-Rule-[0-9]*:../../devel/p5-File-Find-Rule 13DEPENDS+= p5-File-Find-Rule-[0-9]*:../../devel/p5-File-Find-Rule
15DEPENDS+= p5-JSON-MaybeXS>=1.001000:../../converters/p5-JSON-MaybeXS 14DEPENDS+= p5-JSON-MaybeXS>=1.001000:../../converters/p5-JSON-MaybeXS
16DEPENDS+= p5-List-MoreUtils-[0-9]*:../../devel/p5-List-MoreUtils 
17DEPENDS+= p5-Module-Runtime-[0-9]*:../../devel/p5-Module-Runtime 15DEPENDS+= p5-Module-Runtime-[0-9]*:../../devel/p5-Module-Runtime
18DEPENDS+= p5-Moo>=2.002002:../../devel/p5-Moo 16DEPENDS+= p5-Moo>=2.002002:../../devel/p5-Moo
19DEPENDS+= p5-MooX-HandlesVia-[0-9]*:../../devel/p5-MooX-HandlesVia 17DEPENDS+= p5-MooX-HandlesVia-[0-9]*:../../devel/p5-MooX-HandlesVia
20DEPENDS+= p5-Number-Range-[0-9]*:../../math/p5-Number-Range 
21DEPENDS+= p5-Path-Class-[0-9]*:../../devel/p5-Path-Class 18DEPENDS+= p5-Path-Class-[0-9]*:../../devel/p5-Path-Class
22DEPENDS+= p5-Sub-Quote-[0-9]*:../../devel/p5-Sub-Quote 19DEPENDS+= p5-Sub-Quote-[0-9]*:../../devel/p5-Sub-Quote
23DEPENDS+= p5-Test-Differences-[0-9]*:../../devel/p5-Test-Differences 20DEPENDS+= p5-Test-Differences-[0-9]*:../../devel/p5-Test-Differences
24DEPENDS+= p5-Type-Tiny-[0-9]*:../../devel/p5-Type-Tiny 21DEPENDS+= p5-Type-Tiny-[0-9]*:../../devel/p5-Type-Tiny
25DEPENDS+= p5-YAML-Syck-[0-9]*:../../textproc/p5-YAML-Syck 22DEPENDS+= p5-YAML-[0-9]*:../../textproc/p5-YAML
26DEPENDS+= p5-strictures-[0-9]*:../../devel/p5-strictures 23DEPENDS+= p5-strictures-[0-9]*:../../devel/p5-strictures
27 24
28#BUILD_DEPENDS+= p5-Test-Exception-[0-9]*:../../devel/p5-Test-Exception 25#BUILD_DEPENDS+= p5-Test-Exception-[0-9]*:../../devel/p5-Test-Exception
29#BUILD_DEPENDS+= p5-Carp-Always-[0-9]*:../../devel/p5-Carp-Always 26#BUILD_DEPENDS+= p5-Carp-Always-[0-9]*:../../devel/p5-Carp-Always
30 27
31REPLACE_PERL+= bin/pherkin 28REPLACE_PERL+= bin/pherkin
32PERL5_PACKLIST= auto/Test/BDD/Cucumber/.packlist 29PERL5_PACKLIST= auto/Test/BDD/Cucumber/.packlist
33 30
34.include "../../lang/perl5/module.mk" 31.include "../../lang/perl5/module.mk"
35.include "../../mk/bsd.pkg.mk" 32.include "../../mk/bsd.pkg.mk"

cvs diff -r1.38 -r1.39 pkgsrc/devel/p5-Test-BDD-Cucumber/distinfo (expand / switch to unified diff)

--- pkgsrc/devel/p5-Test-BDD-Cucumber/distinfo 2020/12/29 11:28:01 1.38
+++ pkgsrc/devel/p5-Test-BDD-Cucumber/distinfo 2021/02/07 20:16:39 1.39
@@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
1$NetBSD: distinfo,v 1.38 2020/12/29 11:28:01 schmonz Exp $ 1$NetBSD: distinfo,v 1.39 2021/02/07 20:16:39 schmonz Exp $
2 2
3SHA1 (Test-BDD-Cucumber-0.75.tar.gz) = 0bd066765e5e356e708ce599fc84708cf0352dc5 3SHA1 (Test-BDD-Cucumber-0.76.tar.gz) = a4d71137865f94f14ccd5670b50afe09c5de0042
4RMD160 (Test-BDD-Cucumber-0.75.tar.gz) = 66c92c570107a250a76b176e6aa34fdd3d80b7fe 4RMD160 (Test-BDD-Cucumber-0.76.tar.gz) = 572d99328ead5e40fca57e1fa04fe26e95b9a669
5SHA512 (Test-BDD-Cucumber-0.75.tar.gz) = 084001414c74a3b70a1ad2e8bdaf9e5a12d505b79fd9aa9c3656ea5f167ef6a9b0c91a3b687218b560106c004638bcd9ffe3188ff0997ac54daac306f7c70e76 5SHA512 (Test-BDD-Cucumber-0.76.tar.gz) = 44ec439ab5eac5d3ba8f236c7715caebfb27286d13094df8bce0f06962aacc0f6fa43a692a68add91eff1f9171b989f6ae345adc148a4f6b3dc440ccf50190f1
6Size (Test-BDD-Cucumber-0.75.tar.gz) = 103200 bytes 6Size (Test-BDD-Cucumber-0.76.tar.gz) = 103308 bytes