Import of pkgsrc-2014Q1

This commit is contained in:
2014-04-17 16:38:45 +02:00
parent 785076ae39
commit 9a8c06dafb
19365 changed files with 828089 additions and 278039 deletions

View File

@@ -1,6 +1,20 @@
Module::Build is a system for building, testing, and installing Perl
modules. It is meant to be a replacement for ExtUtils::MakeMaker.
Developers may alter the behavior of the module through subclassing in
a much more straightforward way than with MakeMaker. It also does not
require a make on your system - most of the Module::Build code is
pure-perl and written in a very cross-platform way.
"Module::Build" is a system for building, testing, and installing Perl
modules. It is meant to be an alternative to "ExtUtils::MakeMaker".
Developers may alter the behavior of the module through subclassing in a
much more straightforward way than with "MakeMaker". It also does not
require a "make" on your system - most of the "Module::Build" code is
pure-perl and written in a very cross-platform way. See "MOTIVATIONS" for
more comparisons between "ExtUtils::MakeMaker" and "Module::Build". To
install "Module::Build", and any other module that uses "Module::Build" for
its installation process, do the following: perl Build.PL # 'Build.PL'
script creates the 'Build' script ./Build # Need ./ to ensure we're using
this "Build" script ./Build test # and not another one that happens to be
in the PATH ./Build install This illustrates initial configuration and the
running of three 'actions'. In this case the actions run are 'build' (the
default action), 'test', and 'install'. Other actions defined so far
include: build manifest clean manifest_skip code manpages config_data
pardist diff ppd dist ppmdist distcheck prereq_data distclean prereq_report
distdir pure_install distinstall realclean distmeta retest distsign
skipcheck disttest test docs testall fakeinstall testcover help testdb html
testpod install testpodcoverage installdeps versioninstall You can run the
'help' action for a complete list of actions.

View File

@@ -1,29 +1,30 @@
# $NetBSD: Makefile,v 1.37 2013/05/31 12:40:30 wiz Exp $
# $NetBSD: Makefile,v 1.38 2014/02/16 18:02:35 sno Exp $
#
DISTNAME= Module-Build-0.4004
DISTNAME= Module-Build-0.4205
PKGNAME= p5-${DISTNAME}0
PKGREVISION= 1
SVR4_PKGNAME= p5mob
CATEGORIES= devel perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Module/}
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=../../authors/id/L/LE/LEONT/}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://search.cpan.org/dist/Module-Build/
HOMEPAGE= https://metacpan.org/release/Module-Build
COMMENT= Build and install Perl modules
LICENSE= ${PERL5_LICENSE}
DEPENDS+= {perl>=5.14.1,p5-ExtUtils-CBuilder>=0.27}:../../devel/p5-ExtUtils-CBuilder
DEPENDS+= {perl>=5.14.1,p5-ExtUtils-ParseXS>=2.21}:../../devel/p5-ExtUtils-ParseXS
DEPENDS+= {perl>=5.10.1,p5-PathTools>=3.30}:../../devel/p5-PathTools
#DEPENDS+= p5-ExtUtils-CBuilder>=0.27:../../devel/p5-ExtUtils-CBuilder
#DEPENDS+= p5-ExtUtils-ParseXS>=2.21:../../devel/p5-ExtUtils-ParseXS
.include "options.mk"
USE_LANGUAGES= c # For the tests
USE_LANGUAGES= c # For the tests
#BUILDING_MODULE_BUILD= yes
PERL5_MODULE_TYPE= Module::Build
PERL5_PACKLIST= auto/Module/Build/.packlist
# For the tests:
USE_TOOLS+= perl
USE_TOOLS+= perl
PERL5_PACKLIST= auto/Module/Build/.packlist
.include "../../lang/perl5/module.mk"
.include "../../mk/bsd.pkg.mk"

View File

@@ -1,5 +1,5 @@
$NetBSD: distinfo,v 1.23 2013/04/21 05:27:12 hiramatsu Exp $
$NetBSD: distinfo,v 1.24 2014/02/16 18:09:22 sno Exp $
SHA1 (Module-Build-0.4004.tar.gz) = f88f719b5208f244ff1959be65d6e4520656cd39
RMD160 (Module-Build-0.4004.tar.gz) = 3e14dadb5494bfafa3df3197aa7ec7564f3f478b
Size (Module-Build-0.4004.tar.gz) = 307445 bytes
SHA1 (Module-Build-0.4205.tar.gz) = 8b656cbc6fe813f9eec1cb63fc9d892ee8924192
RMD160 (Module-Build-0.4205.tar.gz) = 107dda899c64205cbd17aa04453885758f7e7ed5
Size (Module-Build-0.4205.tar.gz) = 309120 bytes

View File

@@ -1,8 +1,8 @@
# $NetBSD: options.mk,v 1.4 2010/01/17 17:38:17 sno Exp $
# $NetBSD: options.mk,v 1.6 2013/12/07 00:58:01 wiz Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.p5-Module-Build
PKG_SUPPORTED_OPTIONS= dist_authoring license_creation ppm_support bundling
PKG_SUPPORTED_OPTIONS= dist_authoring license_creation
PKG_SUGGESTED_OPTIONS= # empty - only for CPAN Authors
.include "../../mk/bsd.options.mk"
@@ -15,10 +15,3 @@ DEPENDS+= p5-Module-Signature>=0.21:../../security/p5-Module-Signature
.if !empty(PKG_OPTIONS:Mlicense_creation)
DEPENDS+= p5-Software-License-[0-9]*:../../devel/p5-Software-License
.endif
.if !empty(PKG_OPTIONS:Mppm_support)
DEPENDS+= {perl>=5.10.1,p5-IO>=1.13}:../../devel/p5-IO
.endif
.if !empty(PKG_OPTIONS:Mbundling)
# contains required ExtUtils::Installed>=1.999_001
DEPENDS+= {perl>=5.10.1,p5-ExtUtils-Install>=1.54}:../../devel/p5-ExtUtils-Install
.endif