The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
Changes 03
MANIFEST 10
MANIFEST.SKIP 01
META.json 1025
META.yml 36
Makefile.PL 322
lib/Mac/PropertyList/ReadBinary.pm 11
lib/Mac/PropertyList/WriteBinary.pm 11
lib/Mac/PropertyList.pm 11
9 files changed (This is a version diff) 2060
@@ -1,5 +1,8 @@
 # Changes for Mac::PropertyList
 
+1.41 - Fri Sep 12 06:15:56 2014
+	* Fix up some metadata (GitHub #4)
+
 1.40 - Fri Jan  3 13:57:08 2014
 	* Get rid of MYMETA
 
@@ -32,7 +32,6 @@ t/false_key.t
 t/get_filehandle.t
 t/import.t
 t/load.t
-t/Makefile.PL
 t/parse.t
 t/parse_plist_fh.t
 t/plists.t
@@ -62,3 +62,4 @@
 \.releaserc
 \.lwpcookies
 Mac-\.*
+\.swp$
@@ -4,7 +4,7 @@
       "brian d foy <bdfoy@cpan.org>"
    ],
    "dynamic_config" : 1,
-   "generated_by" : "ExtUtils::MakeMaker version 6.62, CPAN::Meta::Converter version 2.112150",
+   "generated_by" : "ExtUtils::MakeMaker version 6.86, CPAN::Meta::Converter version 2.120921",
    "license" : [
       "perl_5"
    ],
@@ -22,26 +22,41 @@
    "prereqs" : {
       "build" : {
          "requires" : {
-            "ExtUtils::MakeMaker" : 0
+            "ExtUtils::MakeMaker" : "0"
          }
       },
       "configure" : {
          "requires" : {
-            "ExtUtils::MakeMaker" : 0
+            "ExtUtils::MakeMaker" : "0"
          }
       },
       "runtime" : {
          "requires" : {
-            "MIME::Base64" : 0,
-            "Math::BigInt" : 0,
+            "MIME::Base64" : "0",
+            "Math::BigInt" : "0",
             "Scalar::Util" : "1.11",
-            "Test::More" : 0,
-            "Time::Local" : 0,
-            "XML::Entities" : 0,
-            "parent" : 0
+            "Time::Local" : "0",
+            "XML::Entities" : "0",
+            "parent" : "0"
+         }
+      },
+      "test" : {
+         "requires" : {
+            "Test::More" : "0"
          }
       }
    },
    "release_status" : "stable",
-   "version" : "1.40"
+   "resources" : {
+      "bugtracker" : {
+         "mailto" : "bug-MacPropertyList@rt.cpan.org",
+         "web" : "https://rt.cpan.org/Public/Dist/Display.html?Name=Mac-PropertyList"
+      },
+      "repository" : {
+         "type" : "git",
+         "url" : "git://github.com/briandfoy/mac-propertylist.git",
+         "web" : "https://github.com/briandfoy/mac-propertylist"
+      }
+   },
+   "version" : "1.41"
 }
@@ -4,10 +4,11 @@ author:
   - 'brian d foy <bdfoy@cpan.org>'
 build_requires:
   ExtUtils::MakeMaker: 0
+  Test::More: 0
 configure_requires:
   ExtUtils::MakeMaker: 0
 dynamic_config: 1
-generated_by: 'ExtUtils::MakeMaker version 6.62, CPAN::Meta::Converter version 2.112150'
+generated_by: 'ExtUtils::MakeMaker version 6.86, CPAN::Meta::Converter version 2.120921'
 license: perl
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -21,8 +22,10 @@ requires:
   MIME::Base64: 0
   Math::BigInt: 0
   Scalar::Util: 1.11
-  Test::More: 0
   Time::Local: 0
   XML::Entities: 0
   parent: 0
-version: 1.40
+resources:
+  bugtracker: https://rt.cpan.org/Public/Dist/Display.html?Name=Mac-PropertyList
+  repository: git://github.com/briandfoy/mac-propertylist.git
+version: 1.41
@@ -1,4 +1,4 @@
-use ExtUtils::MakeMaker;
+use ExtUtils::MakeMaker 6.64;
 
 require 5.010;
 
@@ -15,13 +15,32 @@ WriteMakefile
 	'PREREQ_PM' => {
 		'Math::BigInt'  => '0',
 		'MIME::Base64'  => '0',
-		'Test::More'    => '0',
 		'Time::Local'   => '0',
 		'Scalar::Util'  => '1.11',
 		'XML::Entities' => '0',
 		'parent'        => '0',
 		},
 
-	clean          => { FILES => 'Mac-PropertyList-*' },
+	'TEST_REQUIRES' => {
+		'Test::More'    => '0',
+		},
+
+	'clean'          => { FILES => 'Mac-PropertyList-*' },
+
+	'META_MERGE' => {
+		"meta-spec" => { version => 2 },
+		resources => {
+			repository => {
+				type => 'git',
+				url => 'git://github.com/briandfoy/mac-propertylist.git',
+				web => 'https://github.com/briandfoy/mac-propertylist',
+				},
+
+			bugtracker => {
+				web => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Mac-PropertyList',
+				mailto => 'bug-MacPropertyList@rt.cpan.org',
+				},
+			},
+		},
 	);
 
@@ -13,7 +13,7 @@ use MIME::Base64      qw(decode_base64);
 use POSIX             qw(SEEK_END SEEK_SET);
 use XML::Entities     ();
 
-$VERSION = '1.40';
+$VERSION = '1.41';
 
 __PACKAGE__->_run( @ARGV ) unless caller;
 
@@ -101,7 +101,7 @@ use constant {
     havePack64   => ( eval { pack('Q>', 1153202979583557643) eq "\x10\x01\0\0\0\0\0\x0B" } ? 1 : 0 ),
 };
 
-$VERSION = '1.40';
+$VERSION = '1.41';
 @EXPORT_OK = qw( as_string );
 
 sub as_string {
@@ -24,7 +24,7 @@ use parent qw(Exporter);
 	'all' => \@EXPORT_OK,
 	);
 
-$VERSION = '1.40';
+$VERSION = '1.41';
 
 =encoding utf8