[Bps-public-commit] dist-zilla-mintingprofile-rtx branch, master, updated. 0.09-10-gb31ba59
Alex Vandiver
alexmv at bestpractical.com
Thu Jun 26 16:44:38 EDT 2014
The branch, master has been updated
via b31ba598d06a20d3e505357c8cdb6b8a0f1aea9b (commit)
via b60a4e572d8babae10086724e5778ad85fb83b61 (commit)
via f463b3b5cb9bfbb5ff6a48dd15b93aa0d2c416a4 (commit)
from 19df2820969607715cddf75eed41b05a1df261c9 (commit)
Summary of changes:
Changes | 7 +++++++
META.yml | 11 ++++++-----
Makefile.PL | 2 +-
inc/Module/Install.pm | 2 +-
inc/Module/Install/Base.pm | 2 +-
inc/Module/Install/Can.pm | 2 +-
inc/Module/Install/Fetch.pm | 2 +-
inc/Module/Install/Makefile.pm | 2 +-
inc/Module/Install/Metadata.pm | 2 +-
inc/Module/Install/Share.pm | 2 +-
inc/Module/Install/Win32.pm | 2 +-
inc/Module/Install/WriteAll.pm | 2 +-
lib/Dist/Zilla/MintingProfile/RTx.pm | 5 +++--
profiles/db/skel/Makefile.PL | 6 ++----
profiles/default/skel/Makefile.PL | 6 ++----
15 files changed, 30 insertions(+), 25 deletions(-)
- Log -----------------------------------------------------------------
commit f463b3b5cb9bfbb5ff6a48dd15b93aa0d2c416a4
Author: Alex Vandiver <alexmv at bestpractical.com>
Date: Thu Jun 26 16:34:46 2014 -0400
Modern Module::Install::RTx includes all_from and readme_from
all_from was added in 0.21, readme_from was added in 0.34_04
diff --git a/Makefile.PL b/Makefile.PL
index 993a45f..54d24d2 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -7,7 +7,7 @@ license 'gplv2';
install_share 'module' => 'Dist::Zilla::MintingProfile::RTx', 'profiles';
requires 'Dist::Zilla';
-requires 'Module::Install::RTx';
+requires 'Module::Install::RTx', 0.34_04;
requires 'Module::Install::ReadmeFromPod';
WriteAll;
diff --git a/profiles/db/skel/Makefile.PL b/profiles/db/skel/Makefile.PL
index 50be3e2..889f54a 100644
--- a/profiles/db/skel/Makefile.PL
+++ b/profiles/db/skel/Makefile.PL
@@ -1,9 +1,7 @@
use inc::Module::Install;
{{ ($path = $dist->name) =~ s|-|/|g; '' }}
-RTx '{{$dist->name}}';
-all_from 'lib/{{$path}}.pm';
-readme_from 'lib/{{$path}}.pm', { options => [quotes => 'none'] };
-license 'gplv2';
+RTx '{{$dist->name}}';
+license 'gplv2';
requires_rt '4.2.0';
rt_too_new '4.4.0';
diff --git a/profiles/default/skel/Makefile.PL b/profiles/default/skel/Makefile.PL
index 50be3e2..889f54a 100644
--- a/profiles/default/skel/Makefile.PL
+++ b/profiles/default/skel/Makefile.PL
@@ -1,9 +1,7 @@
use inc::Module::Install;
{{ ($path = $dist->name) =~ s|-|/|g; '' }}
-RTx '{{$dist->name}}';
-all_from 'lib/{{$path}}.pm';
-readme_from 'lib/{{$path}}.pm', { options => [quotes => 'none'] };
-license 'gplv2';
+RTx '{{$dist->name}}';
+license 'gplv2';
requires_rt '4.2.0';
rt_too_new '4.4.0';
commit b60a4e572d8babae10086724e5778ad85fb83b61
Author: Alex Vandiver <alexmv at bestpractical.com>
Date: Thu Jun 26 16:43:23 2014 -0400
Add an explicit perl version, based on RT 4.0's minimum
diff --git a/lib/Dist/Zilla/MintingProfile/RTx.pm b/lib/Dist/Zilla/MintingProfile/RTx.pm
index a0c2b39..95ad2d6 100644
--- a/lib/Dist/Zilla/MintingProfile/RTx.pm
+++ b/lib/Dist/Zilla/MintingProfile/RTx.pm
@@ -4,7 +4,8 @@ package Dist::Zilla::MintingProfile::RTx;
use Moose;
with 'Dist::Zilla::Role::MintingProfile::ShareDir';
-
+
+use 5.008003;
our $VERSION = '0.09';
commit b31ba598d06a20d3e505357c8cdb6b8a0f1aea9b
Author: Alex Vandiver <alexmv at bestpractical.com>
Date: Thu Jun 26 16:41:35 2014 -0400
Version 0.10
diff --git a/Changes b/Changes
index 68913d4..f38b7f6 100644
--- a/Changes
+++ b/Changes
@@ -1,3 +1,10 @@
+0.10 2014-06-26
+ - Remove mentions of RT 3.8, which is no longer supported
+ - Default to being compat with >= 4.0, < 4.4
+ - Force bugtracking links to not wrap
+ - Omit all_from and readme_from, which Module::Install::RTx 0.34_04 and
+ above include in RTx() by default
+
0.09 2014-03-13
- Include a default Changes file
diff --git a/META.yml b/META.yml
index 18d1cc3..e2d2aab 100644
--- a/META.yml
+++ b/META.yml
@@ -3,12 +3,12 @@ abstract: ~
author:
- 'Kevin Falcone <falcone at bestpractical.com>'
build_requires:
- ExtUtils::MakeMaker: 6.36
+ ExtUtils::MakeMaker: 6.59
configure_requires:
- ExtUtils::MakeMaker: 6.36
+ ExtUtils::MakeMaker: 6.59
distribution_type: module
dynamic_config: 1
-generated_by: 'Module::Install version 1.06'
+generated_by: 'Module::Install version 1.08'
license: gplv2
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -20,8 +20,9 @@ no_index:
- profiles
requires:
Dist::Zilla: 0
- Module::Install::RTx: 0
+ Module::Install::RTx: 0.3404
Module::Install::ReadmeFromPod: 0
+ perl: 5.8.3
resources:
license: http://opensource.org/licenses/gpl-license.php
-version: 0.09
+version: '0.10'
diff --git a/inc/Module/Install.pm b/inc/Module/Install.pm
index 4ecf46b..7680c84 100644
--- a/inc/Module/Install.pm
+++ b/inc/Module/Install.pm
@@ -31,7 +31,7 @@ BEGIN {
# This is not enforced yet, but will be some time in the next few
# releases once we can make sure it won't clash with custom
# Module::Install extensions.
- $VERSION = '1.06';
+ $VERSION = '1.08';
# Storage for the pseudo-singleton
$MAIN = undef;
diff --git a/inc/Module/Install/Base.pm b/inc/Module/Install/Base.pm
index 802844a..3e63345 100644
--- a/inc/Module/Install/Base.pm
+++ b/inc/Module/Install/Base.pm
@@ -4,7 +4,7 @@ package Module::Install::Base;
use strict 'vars';
use vars qw{$VERSION};
BEGIN {
- $VERSION = '1.06';
+ $VERSION = '1.08';
}
# Suspend handler for "redefined" warnings
diff --git a/inc/Module/Install/Can.pm b/inc/Module/Install/Can.pm
index 22167b8..93f248d 100644
--- a/inc/Module/Install/Can.pm
+++ b/inc/Module/Install/Can.pm
@@ -8,7 +8,7 @@ use Module::Install::Base ();
use vars qw{$VERSION @ISA $ISCORE};
BEGIN {
- $VERSION = '1.06';
+ $VERSION = '1.08';
@ISA = 'Module::Install::Base';
$ISCORE = 1;
}
diff --git a/inc/Module/Install/Fetch.pm b/inc/Module/Install/Fetch.pm
index bee0c4f..ecc0d53 100644
--- a/inc/Module/Install/Fetch.pm
+++ b/inc/Module/Install/Fetch.pm
@@ -6,7 +6,7 @@ use Module::Install::Base ();
use vars qw{$VERSION @ISA $ISCORE};
BEGIN {
- $VERSION = '1.06';
+ $VERSION = '1.08';
@ISA = 'Module::Install::Base';
$ISCORE = 1;
}
diff --git a/inc/Module/Install/Makefile.pm b/inc/Module/Install/Makefile.pm
index 7052f36..c0978a4 100644
--- a/inc/Module/Install/Makefile.pm
+++ b/inc/Module/Install/Makefile.pm
@@ -8,7 +8,7 @@ use Fcntl qw/:flock :seek/;
use vars qw{$VERSION @ISA $ISCORE};
BEGIN {
- $VERSION = '1.06';
+ $VERSION = '1.08';
@ISA = 'Module::Install::Base';
$ISCORE = 1;
}
diff --git a/inc/Module/Install/Metadata.pm b/inc/Module/Install/Metadata.pm
index 58430f3..e4112f8 100644
--- a/inc/Module/Install/Metadata.pm
+++ b/inc/Module/Install/Metadata.pm
@@ -6,7 +6,7 @@ use Module::Install::Base ();
use vars qw{$VERSION @ISA $ISCORE};
BEGIN {
- $VERSION = '1.06';
+ $VERSION = '1.08';
@ISA = 'Module::Install::Base';
$ISCORE = 1;
}
diff --git a/inc/Module/Install/Share.pm b/inc/Module/Install/Share.pm
index 4e2b602..e4ecfe1 100644
--- a/inc/Module/Install/Share.pm
+++ b/inc/Module/Install/Share.pm
@@ -8,7 +8,7 @@ use ExtUtils::Manifest ();
use vars qw{$VERSION @ISA $ISCORE};
BEGIN {
- $VERSION = '1.06';
+ $VERSION = '1.08';
@ISA = 'Module::Install::Base';
$ISCORE = 1;
}
diff --git a/inc/Module/Install/Win32.pm b/inc/Module/Install/Win32.pm
index eeaa3fe..e529382 100644
--- a/inc/Module/Install/Win32.pm
+++ b/inc/Module/Install/Win32.pm
@@ -6,7 +6,7 @@ use Module::Install::Base ();
use vars qw{$VERSION @ISA $ISCORE};
BEGIN {
- $VERSION = '1.06';
+ $VERSION = '1.08';
@ISA = 'Module::Install::Base';
$ISCORE = 1;
}
diff --git a/inc/Module/Install/WriteAll.pm b/inc/Module/Install/WriteAll.pm
index 85d8018..2c74308 100644
--- a/inc/Module/Install/WriteAll.pm
+++ b/inc/Module/Install/WriteAll.pm
@@ -6,7 +6,7 @@ use Module::Install::Base ();
use vars qw{$VERSION @ISA $ISCORE};
BEGIN {
- $VERSION = '1.06';
+ $VERSION = '1.08';
@ISA = qw{Module::Install::Base};
$ISCORE = 1;
}
diff --git a/lib/Dist/Zilla/MintingProfile/RTx.pm b/lib/Dist/Zilla/MintingProfile/RTx.pm
index 95ad2d6..a8bf986 100644
--- a/lib/Dist/Zilla/MintingProfile/RTx.pm
+++ b/lib/Dist/Zilla/MintingProfile/RTx.pm
@@ -7,7 +7,7 @@ with 'Dist::Zilla::Role::MintingProfile::ShareDir';
use 5.008003;
-our $VERSION = '0.09';
+our $VERSION = '0.10';
=head1 NAME
-----------------------------------------------------------------------
More information about the Bps-public-commit
mailing list