r58451 - in /trunk/libnet-github-perl: Changes META.yml debian/changelog debian/control debian/copyright lib/Net/GitHub.pm lib/Net/GitHub/V2/HasRepo.pm

ansgar-guest at users.alioth.debian.org ansgar-guest at users.alioth.debian.org
Wed May 26 11:13:55 UTC 2010


Author: ansgar-guest
Date: Wed May 26 11:13:40 2010
New Revision: 58451

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=58451
Log:
* New upstream release.
* debian/copyright: Remove License-Alias fields.
* Add myself to Uploaders.

Modified:
    trunk/libnet-github-perl/Changes
    trunk/libnet-github-perl/META.yml
    trunk/libnet-github-perl/debian/changelog
    trunk/libnet-github-perl/debian/control
    trunk/libnet-github-perl/debian/copyright
    trunk/libnet-github-perl/lib/Net/GitHub.pm
    trunk/libnet-github-perl/lib/Net/GitHub/V2/HasRepo.pm

Modified: trunk/libnet-github-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-github-perl/Changes?rev=58451&op=diff
==============================================================================
--- trunk/libnet-github-perl/Changes (original)
+++ trunk/libnet-github-perl/Changes Wed May 26 11:13:40 2010
@@ -1,4 +1,7 @@
 Revision history for Net-GitHub
+
+0.22    2010.05.26
+        token and login are really optional (franck cuny)
 
 0.21    2010.05.18
         try to load user and token from .gitconfig if not specified in

Modified: trunk/libnet-github-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-github-perl/META.yml?rev=58451&op=diff
==============================================================================
--- trunk/libnet-github-perl/META.yml (original)
+++ trunk/libnet-github-perl/META.yml Wed May 26 11:13:40 2010
@@ -34,4 +34,4 @@
 resources:
   license: http://dev.perl.org/licenses/
   repository: http://github.com/fayland/perl-net-github/tree/master
-version: 0.21
+version: 0.22

Modified: trunk/libnet-github-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-github-perl/debian/changelog?rev=58451&op=diff
==============================================================================
--- trunk/libnet-github-perl/debian/changelog (original)
+++ trunk/libnet-github-perl/debian/changelog Wed May 26 11:13:40 2010
@@ -1,3 +1,11 @@
+libnet-github-perl (0.22-1) unstable; urgency=low
+
+  * New upstream release.
+  * debian/copyright: Remove License-Alias fields.
+  * Add myself to Uploaders.
+
+ -- Ansgar Burchardt <ansgar at 43-1.org>  Wed, 26 May 2010 20:13:23 +0900
+
 libnet-github-perl (0.21-1) unstable; urgency=low
 
   * New upstream release

Modified: trunk/libnet-github-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-github-perl/debian/control?rev=58451&op=diff
==============================================================================
--- trunk/libnet-github-perl/debian/control (original)
+++ trunk/libnet-github-perl/debian/control Wed May 26 11:13:40 2010
@@ -7,7 +7,8 @@
  liburi-perl, libwww-mechanize-gzip-perl, perl
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: Christine Spang <christine at debian.org>,
- Angel Abad <angelabad at gmail.com>
+ Angel Abad <angelabad at gmail.com>,
+ Ansgar Burchardt <ansgar at 43-1.org>
 Standards-Version: 3.8.4
 Homepage: http://search.cpan.org/dist/Net-GitHub/
 Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libnet-github-perl/

Modified: trunk/libnet-github-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-github-perl/debian/copyright?rev=58451&op=diff
==============================================================================
--- trunk/libnet-github-perl/debian/copyright (original)
+++ trunk/libnet-github-perl/debian/copyright Wed May 26 11:13:40 2010
@@ -7,12 +7,10 @@
 Copyright: 2002-2010, Adam Kennedy <adamk at cpan.org>
            2002-2010, Audrey Tang <autrijus at autrijus.org>
            2002-2010, Brian Ingerson <ingy at cpan.org>
-License-Alias: Perl
 License: Artistic or GPL-1+
 
 Files: *
 Copyright: 2009-2010, Fayland Lam <fayland at gmail.com>
-License-Alias: Perl
 License: Artistic or GPL-1+
 
 Files: debian/*

Modified: trunk/libnet-github-perl/lib/Net/GitHub.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-github-perl/lib/Net/GitHub.pm?rev=58451&op=diff
==============================================================================
--- trunk/libnet-github-perl/lib/Net/GitHub.pm (original)
+++ trunk/libnet-github-perl/lib/Net/GitHub.pm Wed May 26 11:13:40 2010
@@ -2,7 +2,7 @@
 
 use Any::Moose;
 
-our $VERSION = '0.21';
+our $VERSION = '0.22';
 our $AUTHORITY = 'cpan:FAYLAND';
 
 sub new {

Modified: trunk/libnet-github-perl/lib/Net/GitHub/V2/HasRepo.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-github-perl/lib/Net/GitHub/V2/HasRepo.pm?rev=58451&op=diff
==============================================================================
--- trunk/libnet-github-perl/lib/Net/GitHub/V2/HasRepo.pm (original)
+++ trunk/libnet-github-perl/lib/Net/GitHub/V2/HasRepo.pm Wed May 26 11:13:40 2010
@@ -14,7 +14,7 @@
     my $self = shift;
     my $ret;
     foreach my $col ('owner', 'repo', 'login', 'token') {
-        $ret->{$col} = $self->$col;
+        $ret->{$col} = $self->$col if defined $self->$col;
     }
     return $ret;
 }




More information about the Pkg-perl-cvs-commits mailing list