[libnet-inet6glue-perl] 01/03: Imported Upstream version 0.6
Michael Stapelberg
michael at stapelberg.de
Sun Aug 18 15:20:44 UTC 2013
This is an automated email from the git hooks/post-receive script.
stapelberg pushed a commit to branch master
in repository libnet-inet6glue-perl.
commit 97d28e00c342b24f6cf6e2bf182459f40dda3b75
Author: Michael Stapelberg <michael at stapelberg.de>
Date: Sun Aug 18 17:19:03 2013 +0200
Imported Upstream version 0.6
---
Changes | 6 ++++++
META.yml | 14 ++++++++++----
Makefile.PL | 35 ++++++++++++++++++++++++-----------
lib/Net/INET6Glue.pm | 2 +-
4 files changed, 41 insertions(+), 16 deletions(-)
diff --git a/Changes b/Changes
index e797ae4..1091ad1 100644
--- a/Changes
+++ b/Changes
@@ -1,3 +1,9 @@
+0.6 2013/05/30
+- add more meta information to Makefile.PL, based on patch from ktdreyer
+
+0.5 2011/02/25
+- fix for IO::Socket::INET6 >=2.67
+
0.4 2010/02/16
- fix EPRT in Net::INET6Glue::FTP so that it can also be used
with IPv4 (when eprt is explicitly called)
diff --git a/META.yml b/META.yml
index 5de52cf..76a105a 100644
--- a/META.yml
+++ b/META.yml
@@ -1,9 +1,10 @@
--- #YAML:1.0
name: Net-INET6Glue
-version: 0.5
+version: 0.6
abstract: ~
-author: []
-license: unknown
+author:
+ - Steffen Ullrich <sullr.org>
+license: perl
distribution_type: module
configure_requires:
ExtUtils::MakeMaker: 0
@@ -12,11 +13,16 @@ build_requires:
requires:
IO::Socket::INET6: 2.54
Net::FTP: 2.75
+resources:
+ bugtracker: https://rt.cpan.org/Dist/Display.html?Queue=Net-INET6Glue
+ homepage: https://github.com/noxxi/p5-net-inet6glue
+ license: http://dev.perl.org/licenses/
+ Repository: https://github.com/noxxi/p5-net-inet6glue
no_index:
directory:
- t
- inc
-generated_by: ExtUtils::MakeMaker version 6.55_02
+generated_by: ExtUtils::MakeMaker version 6.57_05
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
version: 1.4
diff --git a/Makefile.PL b/Makefile.PL
index 693fd4e..79c099a 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -1,15 +1,28 @@
-use ExtUtils::MakeMaker;
+use ExtUtils::MakeMaker 6.46;
require 5.008;
-my $xt = prompt( "Should I do external tests?\n".
- "These tests will fail if there is no internet connection or if a firewall\n".
- "blocks active or passive IPv6 FTP traffic.\n".
- "[y/N]", 'n' );
+my $xt = prompt(
+ "Should I do external tests?\n".
+ "These tests will fail if there is no internet connection or if a firewall\n".
+ "blocks active or passive IPv6 FTP traffic.\n".
+ "[y/N]",
+ 'n'
+);
WriteMakefile(
- NAME => 'Net::INET6Glue',
- VERSION_FROM => 'lib/Net/INET6Glue.pm',
- PREREQ_PM => {
- 'IO::Socket::INET6' => 2.54,
- 'Net::FTP' => 2.75,
+ NAME => 'Net::INET6Glue',
+ AUTHOR => [ "Steffen Ullrich <sullr at cpan.org>" ],
+ LICENSE => 'perl',
+ VERSION_FROM => 'lib/Net/INET6Glue.pm',
+ PREREQ_PM => {
+ 'IO::Socket::INET6' => 2.54,
+ 'Net::FTP' => 2.75,
+ },
+ META_MERGE => {
+ resources => {
+ license => 'http://dev.perl.org/licenses/',
+ homepage => 'https://github.com/noxxi/p5-net-inet6glue',
+ bugtracker => 'https://rt.cpan.org/Dist/Display.html?Queue=Net-INET6Glue',
+ Repository => 'https://github.com/noxxi/p5-net-inet6glue',
},
- $xt =~m{^y}i ? ( test => { TESTS => 't/*.t t/external/*.t' }):(),
+ },
+ $xt =~m{^y}i ? ( test => { TESTS => 't/*.t t/external/*.t' }):(),
);
diff --git a/lib/Net/INET6Glue.pm b/lib/Net/INET6Glue.pm
index 895b1cd..85a99c9 100644
--- a/lib/Net/INET6Glue.pm
+++ b/lib/Net/INET6Glue.pm
@@ -1,5 +1,5 @@
package Net::INET6Glue;
-$VERSION = 0.5;
+$VERSION = 0.6;
use Net::INET6Glue::INET_is_INET6;
use Net::INET6Glue::FTP;
1;
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libnet-inet6glue-perl.git
More information about the Pkg-perl-cvs-commits
mailing list