- From: Ville Skytta <ville@hutz.w3.org>
- Date: Wed, 05 May 2004 18:29:36 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/validator/misc/bundle
In directory hutz:/tmp/cvs-serv30421
Added Files:
Tag: validator-0_6_0-branch
.cvsignore ChangeLog MANIFEST MANIFEST.SKIP META.yml
Makefile.PL README SIGNATURE
Log Message:
First release, for the W3C Markup Validator 0.6.5.
--- NEW FILE: MANIFEST ---
ChangeLog Recent changes
MANIFEST
META.yml Module meta-data (added by MakeMaker)
Makefile.PL
README Start by reading this
SIGNATURE
lib/Bundle/W3C/Validator.pm
t/00load.t
--- NEW FILE: ChangeLog ---
--- 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: Bundle-W3C-Validator
version: 0.6.5
version_from: lib/Bundle/W3C/Validator.pm
installdirs: site
requires:
CGI: 2.81
Config::General: 0
HTML::Parser: 3.25
LWP::UserAgent: 1.9
Net::IP: 0
Set::IntSpan: 0
Text::Iconv: 0
URI: 0
distribution_type: module
generated_by: ExtUtils::MakeMaker version 6.17
--- NEW FILE: MANIFEST.SKIP ---
\.cvsignore$
\bblib\b
\bpm_to_blib\b
\bCVS\b
~$
\bMANIFEST\.SKIP$
\bMakefile$
\bMakefile\.old$
\.tar\.
\bREADME\.cvs$
--- NEW FILE: README ---
Bundle-W3C-Validator
====================
This bundle contains the prerequisite CPAN perl modules for running
the W3C Markup Validator, <http://validator.w3.org/>.
For more information, consult the embedded documentation in the
Bundle::W3C::Validator module, typically (in the directory where you
unpacked the source):
perldoc ./lib/Bundle/W3C/Validator.pm
COPYRIGHT AND LICENCE
Originally by Ville Skyttä, <ville.skytta@iki.fi>, for the W3C
Maintained by the W3C Markup Validator Team, <www-validator@w3.org>
Copyright (C) 1994-2004 World Wide Web Consortium, (Massachusetts
Institute of Technology, European Research Consortium for Informatics
and Mathematics, Keio University). All Rights Reserved. This work is
distributed under the W3C(R) Software License [1] in the hope that it
will be useful, but WITHOUT ANY WARRANTY; without even the implied
warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
[1] http://www.w3.org/Consortium/Legal/copyright-software
--- NEW FILE: SIGNATURE ---
--- NEW FILE: Makefile.PL ---
use 5.6.0;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Bundle::W3C::Validator',
ABSTRACT_FROM => 'lib/Bundle/W3C/Validator.pm',
AUTHOR => 'The W3C Markup Validator Team <www-validator@w3.org>',
VERSION_FROM => 'lib/Bundle/W3C/Validator.pm',
PREREQ_PM => {
CGI => 2.81,
Config::General => 0,
HTML::Parser => 3.25,
LWP::UserAgent => 1.90,
Net::IP => 0,
Set::IntSpan => 0,
Text::Iconv => 0,
URI => 0,
},
dist => { TARFLAGS => '--owner=0 --group=0 -cvf' },
clean => { FILES => 'ChangeLog.bak' },
);
sub MY::postamble {
return <<'MAKE_FRAG';
changelog:
cvs2cl --FSF --utc --prune \
--ignore ChangeLog --ignore cvsignore --ignore SIGNATURE \
--ignore Makefile.PL --ignore META.yml --ignore MANIFEST
MAKE_FRAG
}
--- NEW FILE: .cvsignore ---
blib
Makefile
Makefile.old
pm_to_blib
*.tar.gz
Received on Wednesday, 5 May 2004 14:30:19 UTC