[libgit-pureperl-perl] 03/10: Imported Upstream version 0.51
gregor herrmann
gregoa at debian.org
Sat Oct 31 17:51:50 UTC 2015
This is an automated email from the git hooks/post-receive script.
gregoa pushed a commit to branch master
in repository libgit-pureperl-perl.
commit 18b691143c1f4138fb36957772d7ab0fd741c262
Author: gregor herrmann <gregoa at debian.org>
Date: Sat Oct 31 18:36:55 2015 +0100
Imported Upstream version 0.51
---
CHANGES | 5 +++++
META.yml | 4 ++--
Makefile.PL | 2 +-
lib/Git/PurePerl.pm | 4 ++--
t/protocol_gpp.t | 7 +++++++
5 files changed, 17 insertions(+), 5 deletions(-)
diff --git a/CHANGES b/CHANGES
index aa3ef14..34d4fe8 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,10 @@
Revision history for Perl module Git::PurePerl:
+0.51 Fri Mar 6 13:58:39 CET 2015
+ - Fix failing test if there is no internet access (Bugdebugger)
+ - Update repository link in PurePerl.pm (Bugdebugger)
+ - Update repository link (Сергей Романов)
+
0.50 Sat Jan 25 14:58:16 CET 2014
- Now with the changes from 0.49 in CHANGES. That's it.
diff --git a/META.yml b/META.yml
index d7ae500..952548c 100644
--- a/META.yml
+++ b/META.yml
@@ -36,5 +36,5 @@ requires:
namespace::autoclean: 0
resources:
license: http://dev.perl.org/licenses/
- repository: git://github.com/bobtfish/git-pureperl.git
-version: 0.50
+ repository: git://github.com/broquaint/git-pureperl.git
+version: 0.51
diff --git a/Makefile.PL b/Makefile.PL
index 459ff53..986995e 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -9,7 +9,7 @@ author 'Leon Brocard <acme at astray.com>';
abstract 'A Pure Perl interface to Git repositories';
license 'perl';
-resources repository => 'git://github.com/bobtfish/git-pureperl.git';
+resources repository => 'git://github.com/broquaint/git-pureperl.git';
requires 'Archive::Extract' => '0';
requires 'Compress::Raw::Zlib' => '0';
diff --git a/lib/Git/PurePerl.pm b/lib/Git/PurePerl.pm
index 03e8639..8feda79 100644
--- a/lib/Git/PurePerl.pm
+++ b/lib/Git/PurePerl.pm
@@ -37,7 +37,7 @@ use IO::Socket::INET;
use Path::Class;
use namespace::autoclean;
-our $VERSION = '0.50';
+our $VERSION = '0.51';
$VERSION = eval $VERSION;
has 'directory' => (
@@ -531,7 +531,7 @@ It was mostly based on Grit L<http://grit.rubyforge.org/>.
=head1 MAINTAINANCE
-This module is maintained in git at L<http://github.com/bobtfish/git-pureperl/>.
+This module is maintained in git at L<http://github.com/broquaint/git-pureperl/>.
Patches are welcome, please come speak to one of the L<Gitalist> team
on C<< #gitalist >>.
diff --git a/t/protocol_gpp.t b/t/protocol_gpp.t
index 07683d1..80c52e6 100644
--- a/t/protocol_gpp.t
+++ b/t/protocol_gpp.t
@@ -6,6 +6,13 @@ use IO::File;
use Path::Class;
use Test::More;
+my $socket = IO::Socket::INET->new("www.github.com:80");
+if ($socket) {
+ close ($socket);
+} else {
+ plan skip_all => 'No Internet connection available';
+}
+
my $directory = 'test-protocol';
dir($directory)->rmtree;
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libgit-pureperl-perl.git
More information about the Pkg-perl-cvs-commits
mailing list