Update of /cvsroot/module-build/CPANPLUS-Dist-Build
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18284
Added Files:
MANIFEST MANIFEST.SKIP META.yml Makefile.PL README
Log Message:
Initial checkin of Jos' code
--- NEW FILE: README ---
This is the README file for CPANPLUS::Dist::Build, a CPANPLUS plugin
to install modules that use 'Module::Build' as their installer
Please refer to 'perldoc CPANPLUS::Dist::Build' after installation
for details.
#####################################################################
* Description
Params::Check
CPANPLUS::Dist::Build is a distribution class for Module::Build
related modules.
Using this package, you can create, install and uninstall perl
modules. It inherits from CPANPLUS::Dist.
Normal users won't have to worry about the interface to this module,
as it functions transparently as a plug-in to CPANPLUS and will
just Do The Right Thing when it's loaded.
#####################################################################
* Installation
CPANPLUS::Dist::Build follows the standard perl module install process
perl Makefile.PL
make
make test
make install
The module uses no C or XS parts, so no c-compiler is required.
######################################################################
AUTHOR
This module by Jos Boumans <ka...@cp...>.
COPYRIGHT
This module is copyright (c) 2005 Jos Boumans <ka...@cp...>. All
rights reserved.
This library is free software; you may redistribute and/or modify it
under the same terms as Perl itself.
--- NEW FILE: MANIFEST ---
lib/CPANPLUS/Dist/Build.pm
lib/CPANPLUS/Dist/Build/Constants.pm
Makefile.PL
MANIFEST This list of files
MANIFEST.SKIP
META.yml
README
t/01_CPANPLUS-Dist-Build-Constants.t
t/02_CPANPLUS-Dist-Build.t
t/dummy-perl/.hidden
t/dummy-perl/lib/.hidden
t/dummy-perl/man/man1/.hidden
t/dummy-perl/man/man3/.hidden
t/src/noxs/Foo-Bar-0.01.tar.gz
t/src/xs/Foo-Bar-0.01.tar.gz
--- NEW FILE: META.yml ---
# http://module-build.sourceforge.net/META-spec.html
#XXXXXXX This is a prototype!!! It will change in the future!!! XXXXX#
name: CPANPLUS-Dist-Build
version: 0.02
version_from: lib/CPANPLUS/Dist/Build.pm
installdirs: site
requires:
CPANPLUS: 0.055
File::Spec: 0
IPC::Cmd: 0.23
Locale::Maketext::Simple: 0
Module::Build: 0.2611
Module::Load::Conditional: 0.06
Module::Pluggable: 2.4
Params::Check: 0.22
Test::More: 0
distribution_type: module
generated_by: ExtUtils::MakeMaker version 6.25
--- NEW FILE: Makefile.PL ---
use ExtUtils::MakeMaker;
use strict;
WriteMakefile (
NAME => 'CPANPLUS::Dist::Build',
VERSION_FROM => 'lib/CPANPLUS/Dist/Build.pm', # finds $VERSION
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz' },
PREREQ_PM => {
'Test::More' => 0,
'CPANPLUS' => '0.055',
'Locale::Maketext::Simple' => 0,
'Params::Check' => '0.22',
'IPC::Cmd' => '0.23',
'Module::Load::Conditional' => '0.06',
'Module::Pluggable' => '2.4',
'Module::Build' => '0.2611',
'File::Spec' => 0,
},
AUTHOR => 'Jos Boumans <kane[at]cpan.org>',
ABSTRACT => 'CPANPLUS plugin to install packages that use Build.PL',
);
--- NEW FILE: MANIFEST.SKIP ---
^t/dummy-perl/lib/(?!\.hidden)
^t/dummy-perl/man/man1/(?!\.hidden)
^t/dummy-perl/man/man3/(?!\.hidden)
^t/dummy-perl/script/(?!\.hidden)
^blib/
^t/\..*
^pmfiles.dat$
^Makefile$
^Makefile.old$
^MANIFEST.bak$
^pm_to_blib
^blibdirs
^TODO$
^cover_db/
^tmp/
^samples/
^CPANPLUS.*gz$
\.DS_Store$
\.swp$
\.orig$
\.rpt$
^patches/
|