In perl.git, the branch blead has been updated

<https://perl5.git.perl.org/perl.git/commitdiff/3914756484d43456860eb2b181a29c11ddfe85c0?hp=e7206367046d4f58fd12d34816a357cc5535a02f>

- Log -----------------------------------------------------------------
commit 3914756484d43456860eb2b181a29c11ddfe85c0
Author: Sawyer X <xsawy...@cpan.org>
Date:   Mon Feb 19 10:38:22 2018 +0200

    Correct PathTools dist files and bump to 3.74:
    
    There were permission errors when uploading 3.73 so we are bumping
    it to 3.74.
    
    I've included the META.json and META.yml files in the dist and
    corrected their entry in MANIFEST.

-----------------------------------------------------------------------

Summary of changes:
 dist/PathTools/Changes                    |  3 ++
 dist/PathTools/Cwd.pm                     |  2 +-
 dist/PathTools/MANIFEST                   |  4 +--
 dist/PathTools/META.json                  | 55 +++++++++++++++++++++++++++++++
 dist/PathTools/META.yml                   | 30 +++++++++++++++++
 dist/PathTools/lib/File/Spec.pm           |  2 +-
 dist/PathTools/lib/File/Spec/AmigaOS.pm   |  2 +-
 dist/PathTools/lib/File/Spec/Cygwin.pm    |  2 +-
 dist/PathTools/lib/File/Spec/Epoc.pm      |  2 +-
 dist/PathTools/lib/File/Spec/Functions.pm |  2 +-
 dist/PathTools/lib/File/Spec/Mac.pm       |  2 +-
 dist/PathTools/lib/File/Spec/OS2.pm       |  2 +-
 dist/PathTools/lib/File/Spec/Unix.pm      |  2 +-
 dist/PathTools/lib/File/Spec/VMS.pm       |  2 +-
 dist/PathTools/lib/File/Spec/Win32.pm     |  2 +-
 15 files changed, 101 insertions(+), 13 deletions(-)
 create mode 100644 dist/PathTools/META.json
 create mode 100644 dist/PathTools/META.yml

diff --git a/dist/PathTools/Changes b/dist/PathTools/Changes
index a6a73f47b5..b256d98878 100644
--- a/dist/PathTools/Changes
+++ b/dist/PathTools/Changes
@@ -1,5 +1,8 @@
 Revision history for Perl distribution PathTools.
 
+3.74
+- No changes.
+
 3.73
 - Define NEED_croak_xs_usage, fixing usage of croak_xs_usage()
 - [perl #132853] Add metadata (ABSTRACT, LICENSE, AUTHOR)
diff --git a/dist/PathTools/Cwd.pm b/dist/PathTools/Cwd.pm
index b045bc83a1..58af9352db 100644
--- a/dist/PathTools/Cwd.pm
+++ b/dist/PathTools/Cwd.pm
@@ -3,7 +3,7 @@ use strict;
 use Exporter;
 
 
-our $VERSION = '3.73';
+our $VERSION = '3.74';
 my $xs_version = $VERSION;
 $VERSION =~ tr/_//d;
 
diff --git a/dist/PathTools/MANIFEST b/dist/PathTools/MANIFEST
index 7dc8ec505a..84d5058476 100644
--- a/dist/PathTools/MANIFEST
+++ b/dist/PathTools/MANIFEST
@@ -13,8 +13,8 @@ lib/File/Spec/VMS.pm
 lib/File/Spec/Win32.pm
 Makefile.PL
 MANIFEST                       This list of files
-PathTools-3.73/META.json
-PathTools-3.73/META.yml
+META.json
+META.yml
 ppport.h
 t/abs2rel.t
 t/crossplatform.t
diff --git a/dist/PathTools/META.json b/dist/PathTools/META.json
new file mode 100644
index 0000000000..ad429a5d32
--- /dev/null
+++ b/dist/PathTools/META.json
@@ -0,0 +1,55 @@
+{
+   "abstract" : "Tools for working with directory and file names",
+   "author" : [
+      "Perl 5 Porters"
+   ],
+   "dynamic_config" : 1,
+   "generated_by" : "ExtUtils::MakeMaker version 7.24, CPAN::Meta::Converter 
version 2.150010",
+   "license" : [
+      "perl_5"
+   ],
+   "meta-spec" : {
+      "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec";,
+      "version" : "2"
+   },
+   "name" : "PathTools",
+   "no_index" : {
+      "directory" : [
+         "t",
+         "inc"
+      ]
+   },
+   "prereqs" : {
+      "build" : {
+         "requires" : {
+            "ExtUtils::MakeMaker" : "0"
+         }
+      },
+      "configure" : {
+         "requires" : {
+            "ExtUtils::MakeMaker" : "0"
+         }
+      },
+      "runtime" : {
+         "requires" : {
+            "Carp" : "0",
+            "File::Basename" : "0",
+            "Scalar::Util" : "0",
+            "Test::More" : "0.88"
+         }
+      }
+   },
+   "release_status" : "stable",
+   "resources" : {
+      "bugtracker" : {
+         "web" : "https://rt.perl.org/rt3/";
+      },
+      "homepage" : "http://dev.perl.org/";,
+      "repository" : {
+         "type" : "git",
+         "url" : "git://perl5.git.perl.org/perl.git"
+      }
+   },
+   "version" : "3.73",
+   "x_serialization_backend" : "JSON::PP version 2.27400_02"
+}
diff --git a/dist/PathTools/META.yml b/dist/PathTools/META.yml
new file mode 100644
index 0000000000..c2adfcfd31
--- /dev/null
+++ b/dist/PathTools/META.yml
@@ -0,0 +1,30 @@
+---
+abstract: 'Tools for working with directory and file names'
+author:
+  - 'Perl 5 Porters'
+build_requires:
+  ExtUtils::MakeMaker: '0'
+configure_requires:
+  ExtUtils::MakeMaker: '0'
+dynamic_config: 1
+generated_by: 'ExtUtils::MakeMaker version 7.24, CPAN::Meta::Converter version 
2.150010'
+license: perl
+meta-spec:
+  url: http://module-build.sourceforge.net/META-spec-v1.4.html
+  version: '1.4'
+name: PathTools
+no_index:
+  directory:
+    - t
+    - inc
+requires:
+  Carp: '0'
+  File::Basename: '0'
+  Scalar::Util: '0'
+  Test::More: '0.88'
+resources:
+  bugtracker: https://rt.perl.org/rt3/
+  homepage: http://dev.perl.org/
+  repository: git://perl5.git.perl.org/perl.git
+version: '3.73'
+x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff --git a/dist/PathTools/lib/File/Spec.pm b/dist/PathTools/lib/File/Spec.pm
index b7f47a6123..85327ee0da 100644
--- a/dist/PathTools/lib/File/Spec.pm
+++ b/dist/PathTools/lib/File/Spec.pm
@@ -2,7 +2,7 @@ package File::Spec;
 
 use strict;
 
-our $VERSION = '3.73';
+our $VERSION = '3.74';
 $VERSION =~ tr/_//d;
 
 my %module = (
diff --git a/dist/PathTools/lib/File/Spec/AmigaOS.pm 
b/dist/PathTools/lib/File/Spec/AmigaOS.pm
index 57e92062a1..3c8407266d 100644
--- a/dist/PathTools/lib/File/Spec/AmigaOS.pm
+++ b/dist/PathTools/lib/File/Spec/AmigaOS.pm
@@ -3,7 +3,7 @@ package File::Spec::AmigaOS;
 use strict;
 require File::Spec::Unix;
 
-our $VERSION = '3.73';
+our $VERSION = '3.74';
 $VERSION =~ tr/_//d;
 
 our @ISA = qw(File::Spec::Unix);
diff --git a/dist/PathTools/lib/File/Spec/Cygwin.pm 
b/dist/PathTools/lib/File/Spec/Cygwin.pm
index 5332cc120c..ed646a160f 100644
--- a/dist/PathTools/lib/File/Spec/Cygwin.pm
+++ b/dist/PathTools/lib/File/Spec/Cygwin.pm
@@ -3,7 +3,7 @@ package File::Spec::Cygwin;
 use strict;
 require File::Spec::Unix;
 
-our $VERSION = '3.73';
+our $VERSION = '3.74';
 $VERSION =~ tr/_//d;
 
 our @ISA = qw(File::Spec::Unix);
diff --git a/dist/PathTools/lib/File/Spec/Epoc.pm 
b/dist/PathTools/lib/File/Spec/Epoc.pm
index 8cf1f70693..58f74a33ca 100644
--- a/dist/PathTools/lib/File/Spec/Epoc.pm
+++ b/dist/PathTools/lib/File/Spec/Epoc.pm
@@ -2,7 +2,7 @@ package File::Spec::Epoc;
 
 use strict;
 
-our $VERSION = '3.73';
+our $VERSION = '3.74';
 $VERSION =~ tr/_//d;
 
 require File::Spec::Unix;
diff --git a/dist/PathTools/lib/File/Spec/Functions.pm 
b/dist/PathTools/lib/File/Spec/Functions.pm
index feb8b81582..9af6352dd2 100644
--- a/dist/PathTools/lib/File/Spec/Functions.pm
+++ b/dist/PathTools/lib/File/Spec/Functions.pm
@@ -3,7 +3,7 @@ package File::Spec::Functions;
 use File::Spec;
 use strict;
 
-our $VERSION = '3.73';
+our $VERSION = '3.74';
 $VERSION =~ tr/_//d;
 
 require Exporter;
diff --git a/dist/PathTools/lib/File/Spec/Mac.pm 
b/dist/PathTools/lib/File/Spec/Mac.pm
index 7661d4ef10..a1b044d152 100644
--- a/dist/PathTools/lib/File/Spec/Mac.pm
+++ b/dist/PathTools/lib/File/Spec/Mac.pm
@@ -4,7 +4,7 @@ use strict;
 use Cwd ();
 require File::Spec::Unix;
 
-our $VERSION = '3.73';
+our $VERSION = '3.74';
 $VERSION =~ tr/_//d;
 
 our @ISA = qw(File::Spec::Unix);
diff --git a/dist/PathTools/lib/File/Spec/OS2.pm 
b/dist/PathTools/lib/File/Spec/OS2.pm
index 87ba407d45..e961ad4e33 100644
--- a/dist/PathTools/lib/File/Spec/OS2.pm
+++ b/dist/PathTools/lib/File/Spec/OS2.pm
@@ -4,7 +4,7 @@ use strict;
 use Cwd ();
 require File::Spec::Unix;
 
-our $VERSION = '3.73';
+our $VERSION = '3.74';
 $VERSION =~ tr/_//d;
 
 our @ISA = qw(File::Spec::Unix);
diff --git a/dist/PathTools/lib/File/Spec/Unix.pm 
b/dist/PathTools/lib/File/Spec/Unix.pm
index 7386833000..a1fa6736a1 100644
--- a/dist/PathTools/lib/File/Spec/Unix.pm
+++ b/dist/PathTools/lib/File/Spec/Unix.pm
@@ -3,7 +3,7 @@ package File::Spec::Unix;
 use strict;
 use Cwd ();
 
-our $VERSION = '3.73';
+our $VERSION = '3.74';
 $VERSION =~ tr/_//d;
 
 =head1 NAME
diff --git a/dist/PathTools/lib/File/Spec/VMS.pm 
b/dist/PathTools/lib/File/Spec/VMS.pm
index eec1a36c09..cbafdce88a 100644
--- a/dist/PathTools/lib/File/Spec/VMS.pm
+++ b/dist/PathTools/lib/File/Spec/VMS.pm
@@ -4,7 +4,7 @@ use strict;
 use Cwd ();
 require File::Spec::Unix;
 
-our $VERSION = '3.73';
+our $VERSION = '3.74';
 $VERSION =~ tr/_//d;
 
 our @ISA = qw(File::Spec::Unix);
diff --git a/dist/PathTools/lib/File/Spec/Win32.pm 
b/dist/PathTools/lib/File/Spec/Win32.pm
index d523822780..9ccafa7d15 100644
--- a/dist/PathTools/lib/File/Spec/Win32.pm
+++ b/dist/PathTools/lib/File/Spec/Win32.pm
@@ -5,7 +5,7 @@ use strict;
 use Cwd ();
 require File::Spec::Unix;
 
-our $VERSION = '3.73';
+our $VERSION = '3.74';
 $VERSION =~ tr/_//d;
 
 our @ISA = qw(File::Spec::Unix);

-- 
Perl5 Master Repository

Reply via email to