pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/devel/p5-Module-CPANTS-Analyse Update from 0.90_02 to ...
details: https://anonhg.NetBSD.org/pkgsrc/rev/10ab8f85895f
branches: trunk
changeset: 646604:10ab8f85895f
user: mef <mef%pkgsrc.org@localhost>
date: Thu Feb 12 06:43:56 2015 +0000
description:
Update from 0.90_02 to 0.96 (PKGVERSION is 0.90.02 to 0.96)
---------------------------
0.96 2014-11-24
- Added an import option to load extra Kwalitee plugins.
- Fixed RT#100512 - has_readme now accepts README.pod as well
- Improved no_abstract_stub_in_pod to detect "The great new"
as a boilerplate
- Switched to File::Find::Object
0.95 2014-09-26
- Switched to Test::FailWarnings to make CPAN testers happier
0.94 2014-09-26
- Fixed RT#99141 - use_strict metric does not recognize
`use v5.14` syntax (ishigaki)
0.93_04 2014-09-05
- Accept COPYING as a license file
- Take included module (under inc/) into consideration while
analyzing prereq_matches_use
- Changed most of the META.yml metrics to pass if META.yml doesn't
exist
0.93_03 2014-08-13
- Added meta_json_is_parsable and meta_json_conforms_to_known_spec
- Added meta_yml_has_repository_resource
- Renamed metayml_ metrics to meta_yml_
- Fixed abstract encoding issues
- Refactored tests
- Fixed not to ignore directory symlinks
- Fixed RT#97858 - wrong no_symlinks test in files not in MANIFEST
(for a local distribution; CPANTS site doesn't ignore symlinks
not listed in MANIFEST)
- Fixed RT#97601 - Test::Kwalitee incorrectly reports non-use of
strict in Inline::CPP
0.93_02 2014-06-30
- Removed cpants_lint.pl in favor of App::CPANTS::Lint
- Fixed RT#94468 - "use_strict" metric doesn't like .pod files
that contain no perl (ishigaki)
- Fixed RT#96492 - 0.93_01 test failures on OSX (ether)
0.93_01 2014-05-27
- Added the following metrics:
- has_known_license_in_source_file
- has_abstract_in_pod
- no_abstract_stub_in_pod
- Removed metayml_conforms_spec_current metric.
- Supported x_cpants custom META field to tell analyzer to ignore
some of the metrics (only) when calculating a kwalitee score.
- Refactored several Kwalitee files, and internal stash layout has
changed rather significantly. You might need to modify your
tools if they happen to depend on the stash directly.
0.92 2013-09-22
- Fixed a case when more than one license sections come in row
(spotted by ysasaki++) (ishigaki)
- stopped checking auto_features (ishigaki)
0.91 2013-09-05
- Fixed RT#69233 - doesn't detect use >= 5.012 as use strict
(ishigaki)
- Fixed RT#83336 - Fails to detect strict via `use MooseX::Types`
(ether)
- Fixed RT#83851 - 'use v5.16' and greater not deemed "strict"
(ishigaki)
- Fixed RT#86504 - fix sort order of Kwalitee generators (ether)
- Fixed RT#87155 - more Module::Install tests needed (1.04 is
broken) (ishigaki)
- Fixed RT#87597 - proper_libs is a dubious test (ishigaki)
- Fixed RT#87598 - Can't use an undefined value as an ARRAY
reference at .../FindModules.pm line 115. (ishigaki)
- Fixed RT#87988 - Fix use of $Test::Kwalitee::VERSION (ether)
- Fixed RT#88216 - extracts_nicely metric fails for -TRIAL
releases (ishigaki)
- Fixed RT#88365 - YAML/JSON tests are not failing when improperly
encoded characters are seen (ishigaki)
- Moose::Exporter also provides strict and warnings (doy)
diffstat:
devel/p5-Module-CPANTS-Analyse/Makefile | 10 +++++-----
devel/p5-Module-CPANTS-Analyse/distinfo | 8 ++++----
2 files changed, 9 insertions(+), 9 deletions(-)
diffs (45 lines):
diff -r 16a4463b7b43 -r 10ab8f85895f devel/p5-Module-CPANTS-Analyse/Makefile
--- a/devel/p5-Module-CPANTS-Analyse/Makefile Thu Feb 12 06:32:50 2015 +0000
+++ b/devel/p5-Module-CPANTS-Analyse/Makefile Thu Feb 12 06:43:56 2015 +0000
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.14 2014/05/31 12:56:54 wiz Exp $
+# $NetBSD: Makefile,v 1.15 2015/02/12 06:43:56 mef Exp $
-DISTNAME= Module-CPANTS-Analyse-0.9002
-PKGNAME= p5-${DISTNAME:S/9002/90.02/}
-PKGREVISION= 4
+DISTNAME= Module-CPANTS-Analyse-0.96
+PKGNAME= p5-${DISTNAME}
CATEGORIES= devel perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Module/}
@@ -17,6 +16,7 @@
DEPENDS+= p5-CPAN-DistnameInfo>=0.06:../../devel/p5-CPAN-DistnameInfo
DEPENDS+= {perl>=5.19.1,p5-CPAN-Meta>=2.131490}:../../devel/p5-CPAN-Meta
DEPENDS+= p5-Class-Accessor>=0.19:../../devel/p5-Class-Accessor
+DEPENDS+= p5-ExtUtils-MakeMaker-CPANfile-[0-9]*:../p5-ExtUtils-MakeMaker-CPANfile
DEPENDS+= p5-File-Find-Rule-VCS>=0:../../devel/p5-File-Find-Rule-VCS
DEPENDS+= p5-IO-Capture>=0.05:../../devel/p5-IO-Capture
DEPENDS+= p5-List-MoreUtils>=0:../../devel/p5-List-MoreUtils
@@ -37,7 +37,7 @@
USE_LANGUAGES= # empty
PERL5_PACKLIST= auto/Module/CPANTS/Analyse/.packlist
-PERL5_MODULE_TYPE= Module::Build
+#ERL5_MODULE_TYPE= Module::Build
.include "../../lang/perl5/module.mk"
.include "../../mk/bsd.pkg.mk"
diff -r 16a4463b7b43 -r 10ab8f85895f devel/p5-Module-CPANTS-Analyse/distinfo
--- a/devel/p5-Module-CPANTS-Analyse/distinfo Thu Feb 12 06:32:50 2015 +0000
+++ b/devel/p5-Module-CPANTS-Analyse/distinfo Thu Feb 12 06:43:56 2015 +0000
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.4 2013/08/25 07:50:37 wen Exp $
+$NetBSD: distinfo,v 1.5 2015/02/12 06:43:56 mef Exp $
-SHA1 (Module-CPANTS-Analyse-0.9002.tar.gz) = 744d9f366a7caf1127a47d05901ea73763d8e2e7
-RMD160 (Module-CPANTS-Analyse-0.9002.tar.gz) = 339499a4c845d4b26551fc54923f5c7a9f2f865b
-Size (Module-CPANTS-Analyse-0.9002.tar.gz) = 602509 bytes
+SHA1 (Module-CPANTS-Analyse-0.96.tar.gz) = 967bea7834bf2d8fbab538e31100da2dea7b6320
+RMD160 (Module-CPANTS-Analyse-0.96.tar.gz) = 1b97b80d463c01bf087a844f2918219f1cce9bea
+Size (Module-CPANTS-Analyse-0.96.tar.gz) = 44323 bytes
Home |
Main Index |
Thread Index |
Old Index