Update of /cvsroot/file-extattr/File-ExtAttr
In directory sc8-pr-cvs17:/tmp/cvs-serv17711
Modified Files:
Changes MANIFEST META.yml Makefile.PL README
Log Message:
Fix META.yml file; validate META.yml in test suite; bump version to 1.05
Index: README
===================================================================
RCS file: /cvsroot/file-extattr/File-ExtAttr/README,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** README 6 May 2007 10:02:13 -0000 1.11
--- README 23 Jun 2007 11:04:30 -0000 1.12
***************
*** 1,3 ****
! File-ExtAttr version 1.04
=========================
--- 1,3 ----
! File-ExtAttr version 1.05
=========================
Index: META.yml
===================================================================
RCS file: /cvsroot/file-extattr/File-ExtAttr/META.yml,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** META.yml 6 May 2007 10:02:13 -0000 1.6
--- META.yml 23 Jun 2007 11:04:30 -0000 1.7
***************
*** 1,9 ****
# http://module-build.sourceforge.net/META-spec.html
- #XXXXXXX This is a prototype!!! It will change in the future!!! XXXXX#
name: File-ExtAttr
! version: 1.04
version_from: lib/File/ExtAttr.pm
installdirs: site
requires:
distribution_type: module
--- 1,11 ----
# http://module-build.sourceforge.net/META-spec.html
name: File-ExtAttr
! version: 1.05
version_from: lib/File/ExtAttr.pm
installdirs: site
requires:
+ Carp: 0
+ Scalar::Util: 0
+ license: perl
distribution_type: module
Index: Changes
===================================================================
RCS file: /cvsroot/file-extattr/File-ExtAttr/Changes,v
retrieving revision 1.28
retrieving revision 1.29
diff -C2 -d -r1.28 -r1.29
*** Changes 6 May 2007 09:56:40 -0000 1.28
--- Changes 23 Jun 2007 11:04:30 -0000 1.29
***************
*** 1,4 ****
--- 1,9 ----
Revision history for Perl extension File::ExtAttr.
+ 1.05 2007-06-23
+
+ - (richdawe) Fix META.yml so that it's valid. Add a test using
+ Test::YAML::Meta to the test suite, to validate META.yml.
+
1.04 2007-05-06
Index: Makefile.PL
===================================================================
RCS file: /cvsroot/file-extattr/File-ExtAttr/Makefile.PL,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** Makefile.PL 6 May 2007 08:35:06 -0000 1.7
--- Makefile.PL 23 Jun 2007 11:04:30 -0000 1.8
***************
*** 35,39 ****
NAME => 'File::ExtAttr',
VERSION_FROM => 'lib/File/ExtAttr.pm', # finds $VERSION
! PREREQ_PM => {}, # e.g., Module::Name => 1.1
($] >= 5.005 ? ## Add these new keywords supported since 5.005
(ABSTRACT_FROM => 'lib/File/ExtAttr.pm', # retrieve abstract from module
--- 35,43 ----
NAME => 'File::ExtAttr',
VERSION_FROM => 'lib/File/ExtAttr.pm', # finds $VERSION
! PREREQ_PM => {
! # e.g., Module::Name => 1.1
! Carp => 0,
! Scalar::Util => 0
! },
($] >= 5.005 ? ## Add these new keywords supported since 5.005
(ABSTRACT_FROM => 'lib/File/ExtAttr.pm', # retrieve abstract from module
***************
*** 48,51 ****
--- 52,58 ----
# Un-comment this if you add C files to link with later:
# OBJECT => '$(O_FILES)', # link all the C files too
+
+ # Hand-roll META.yml and MANIFEST.
+ NO_META => 1,
);
Index: MANIFEST
===================================================================
RCS file: /cvsroot/file-extattr/File-ExtAttr/MANIFEST,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -d -r1.16 -r1.17
*** MANIFEST 6 May 2007 09:56:40 -0000 1.16
--- MANIFEST 23 Jun 2007 11:04:30 -0000 1.17
***************
*** 26,29 ****
--- 26,30 ----
t/02load-all.t
t/03pod-coverage.t
+ t/04yaml-meta.t
t/11basic.t
t/13long.t
|