pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/devel/p5-Module-Install PkgSrc changes:



details:   https://anonhg.NetBSD.org/pkgsrc/rev/018bece019a6
branches:  trunk
changeset: 557149:018bece019a6
user:      sno <sno%pkgsrc.org@localhost>
date:      Sun Apr 12 00:45:54 2009 +0000

description:
PkgSrc changes:
  - Updating package to 0.82

Upstream changes:
0.82 Wed  9 Apr 2009 - Adam Kennedy
        - if configure_requires has ExtUtils::MakeMaker and it's version
          requires perl 5.6, require perl 5.6 for dist in META.yml (CHORNY)
        - Fixes to Module/AutoInstall.pm: (MSTROUT)
          - don't prompt for required dependencies under CPAN/CPANPLUS
          - allow PERL_AUTOINSTALL_PREFER_CPAN env var to disable cpanp use
        - Module::Install::DSL now correctly installs itself into the
          generated tarball (ADAMK)
        - Preferentially dispatch leading-underscore methods used in plugins
          to the main Module::Install object (ADAMK)

0.81 Tue 24 Mar 2009 - Adam Kennedy
        - Use 3-argument open when Perl >= 5.006 (ADAMK)
        - Support for 'keywords' key in META.yml (CHORNY)
        - More URLs for licenses, test for this (CHORNY)
        - tests for extracting link to bugtracker,
          will more correctly extract them (CHORNY)
        - Adding version-normalising Module::Install::_cmp
          (for <=> equivalent on versions) (ADAMK)
        - If the Makefile.PL time is in the future by only a few seconds
          (probably due to 2-second filesystem time rounding on Win32)
          sleep for 5 seconds to avoid the problem. (ADAMK)
        - Moving from Module::Install::DSL to inc::Module::Install::DSL
          (to reduce the Makefile.PL header for DSL mode to one line) (ADAMK)
        - Adding convenience pod reading Module::Install::_readpod (ADAMK)
        - Adding convenience pod stripping Module::Install::_readperl (ADAMK)
        - Adding experimental requires_from command to auto-detect requires (ADAMK)
        - Add a "Writing MYMETA.yml" status message (ADAMK)
        - Generalising boolean commands (ADAMK)
        - Cleaner removal of files during realclean (ADAMK)
        - Write META.yml and MYMETA.yml after Makefile to pick up a couple
          of extra implicit dependencies. (ADAMK)
        - Set a high configure_requires on ExtUtils::MakeMaker for any client
          that supports configure_requires. (ADAMK)
        - Add a full resolution test for Module::Install::DSL (ADAMK)
        - If we write MYMETA.yml, remove it at realclean time (ADAMK)
        - Removed the 'Removing META.yml' warning

0.80 Tue 17 Mar 2009 - Adam Kennedy
        - Don't generate MYMETA.yml if we don't have YAML::Tiny, even if
          we've said we need it. This was breaking Catalyst. (ADAMK)
        - Will not ask about auto-installing mandatory dependencies, if
          $ENV{PERL5_CPANPLUS_IS_RUNNING} is set (CHORNY)

0.79 Wed  4 Feb 2009 - Adam Kennedy
        - Upgrading (and testing) Perl version normalisation
        - Adding an experimental-grade implementation of MYMETA.yml

0.78 Sun 25 Jan 2009 - Adam Kennedy
        - Much more aggressive dependencies, except PAR::Dist (ADAMK)
        - Adding inc::Module::Install::DSL for simple installs (ADAMK)
        - We now avoid poking references in @INC in case they
          have strange overload behaviours.  (PJF, RT #39929)
        - installdirs and install_as_* are now documented in
          Module/Install.pod (PJF, RT #25111)
        - Applied patch RT #38443 from Oleg Kostyuk for two-part
          version numbers being passed to perl_version.  Calling
          'perl_version 5.8' should now work the same as
          'perl_version 5.008'.  Additional tests added to
          t/07_perl_version.t to check this.  (PJF, RT #38443)
        - Module::Install no longer complains about the phrase
          "All rights reserved" in association with open source
          licenses.  (PJF, RT #41268)

diffstat:

 devel/p5-Module-Install/Makefile |  11 +++++------
 devel/p5-Module-Install/distinfo |   8 ++++----
 2 files changed, 9 insertions(+), 10 deletions(-)

diffs (42 lines):

diff -r bc53fe2a21d5 -r 018bece019a6 devel/p5-Module-Install/Makefile
--- a/devel/p5-Module-Install/Makefile  Sun Apr 12 00:43:48 2009 +0000
+++ b/devel/p5-Module-Install/Makefile  Sun Apr 12 00:45:54 2009 +0000
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.8 2008/10/19 19:17:57 he Exp $
+# $NetBSD: Makefile,v 1.9 2009/04/12 00:45:54 sno Exp $
 
-DISTNAME=      Module-Install-0.77
+DISTNAME=      Module-Install-0.82
 PKGNAME=       p5-${DISTNAME}
-PKGREVISION=   1
 SVR4_PKGNAME=  p5moi
 CATEGORIES=    devel perl5
 MASTER_SITES=  ${MASTER_SITE_PERL_CPAN:=Module/}
@@ -11,11 +10,11 @@
 HOMEPAGE=      http://search.cpan.org/dist/Module-Install/
 COMMENT=       Perl5 module for building and installing Perl modules
 
-DEPENDS+=      p5-Archive-Tar>=1.38:../../archivers/p5-Archive-Tar
-DEPENDS+=      p5-ExtUtils-Install>=1.50:../../devel/p5-ExtUtils-Install
+DEPENDS+=      p5-Archive-Tar>=1.44:../../archivers/p5-Archive-Tar
+DEPENDS+=      p5-ExtUtils-Install>=1.52:../../devel/p5-ExtUtils-Install
 DEPENDS+=      p5-ExtUtils-ParseXS>=2.19:../../devel/p5-ExtUtils-ParseXS
 DEPENDS+=      p5-Module-Build>=0.2808:../../devel/p5-Module-Build
-DEPENDS+=      p5-Module-CoreList>=2.15:../../devel/p5-Module-CoreList
+DEPENDS+=      p5-Module-CoreList>=2.17:../../devel/p5-Module-CoreList
 DEPENDS+=      p5-Module-ScanDeps>=0.83:../../devel/p5-Module-ScanDeps
 DEPENDS+=      p5-PAR-Dist>=0.29:../../devel/p5-PAR-Dist
 DEPENDS+=      p5-YAML-Tiny>=1.31:../../textproc/p5-YAML-Tiny
diff -r bc53fe2a21d5 -r 018bece019a6 devel/p5-Module-Install/distinfo
--- a/devel/p5-Module-Install/distinfo  Sun Apr 12 00:43:48 2009 +0000
+++ b/devel/p5-Module-Install/distinfo  Sun Apr 12 00:45:54 2009 +0000
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.6 2008/08/11 12:33:37 he Exp $
+$NetBSD: distinfo,v 1.7 2009/04/12 00:45:54 sno Exp $
 
-SHA1 (Module-Install-0.77.tar.gz) = 35d99c4a9ca6bc28c9aba467a84bd35c9904c3fc
-RMD160 (Module-Install-0.77.tar.gz) = 5f60d9d00b4ead81cfd82edef90c2df4c80dc14b
-Size (Module-Install-0.77.tar.gz) = 132617 bytes
+SHA1 (Module-Install-0.82.tar.gz) = e3d929ad994c84236b775250d78077097b3b5e30
+RMD160 (Module-Install-0.82.tar.gz) = dbd6eef18dc48cccad6ca4fc29c8e027de1e279b
+Size (Module-Install-0.82.tar.gz) = 145216 bytes



Home | Main Index | Thread Index | Old Index