r66099 - in /branches/upstream/libapp-nopaste-perl/current: Changes META.yml Makefile.PL lib/App/Nopaste.pm lib/App/Nopaste/Service/Gist.pm

carnil at users.alioth.debian.org carnil at users.alioth.debian.org
Wed Dec 22 06:40:41 UTC 2010


Author: carnil
Date: Wed Dec 22 06:39:59 2010
New Revision: 66099

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=66099
Log:
[svn-upgrade] new version libapp-nopaste-perl (0.24)

Modified:
    branches/upstream/libapp-nopaste-perl/current/Changes
    branches/upstream/libapp-nopaste-perl/current/META.yml
    branches/upstream/libapp-nopaste-perl/current/Makefile.PL
    branches/upstream/libapp-nopaste-perl/current/lib/App/Nopaste.pm
    branches/upstream/libapp-nopaste-perl/current/lib/App/Nopaste/Service/Gist.pm

Modified: branches/upstream/libapp-nopaste-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libapp-nopaste-perl/current/Changes?rev=66099&op=diff
==============================================================================
--- branches/upstream/libapp-nopaste-perl/current/Changes (original)
+++ branches/upstream/libapp-nopaste-perl/current/Changes Wed Dec 22 06:39:59 2010
@@ -1,4 +1,7 @@
 Revision history for App-Nopaste
+
+0.24    Tue Dec 21 2010
+        Gist requires https (Ricardo SIGNES)
 
 0.23    Fri Nov 26 2010
         Preserve the source file's extension for ssh (Thomas Sibley)

Modified: branches/upstream/libapp-nopaste-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libapp-nopaste-perl/current/META.yml?rev=66099&op=diff
==============================================================================
--- branches/upstream/libapp-nopaste-perl/current/META.yml (original)
+++ branches/upstream/libapp-nopaste-perl/current/META.yml Wed Dec 22 06:39:59 2010
@@ -32,4 +32,4 @@
   homepage: http://github.com/sartak/app-nopaste/tree
   license: http://dev.perl.org/licenses/
   repository: git://github.com/sartak/app-nopaste.git
-version: 0.23
+version: 0.24

Modified: branches/upstream/libapp-nopaste-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libapp-nopaste-perl/current/Makefile.PL?rev=66099&op=diff
==============================================================================
--- branches/upstream/libapp-nopaste-perl/current/Makefile.PL (original)
+++ branches/upstream/libapp-nopaste-perl/current/Makefile.PL Wed Dec 22 06:39:59 2010
@@ -1,5 +1,6 @@
 # Load the Module::Install bundled in ./inc/
 use inc::Module::Install;
+use Module::Install::GithubMeta;
 
 # Define metadata
 name           'App-Nopaste';

Modified: branches/upstream/libapp-nopaste-perl/current/lib/App/Nopaste.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libapp-nopaste-perl/current/lib/App/Nopaste.pm?rev=66099&op=diff
==============================================================================
--- branches/upstream/libapp-nopaste-perl/current/lib/App/Nopaste.pm (original)
+++ branches/upstream/libapp-nopaste-perl/current/lib/App/Nopaste.pm Wed Dec 22 06:39:59 2010
@@ -7,7 +7,7 @@
 use base 'Exporter';
 our @EXPORT_OK = 'nopaste';
 
-our $VERSION = '0.23';
+our $VERSION = '0.24';
 
 sub nopaste {
     # process arguments {{{

Modified: branches/upstream/libapp-nopaste-perl/current/lib/App/Nopaste/Service/Gist.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libapp-nopaste-perl/current/lib/App/Nopaste/Service/Gist.pm?rev=66099&op=diff
==============================================================================
--- branches/upstream/libapp-nopaste-perl/current/lib/App/Nopaste/Service/Gist.pm (original)
+++ branches/upstream/libapp-nopaste-perl/current/lib/App/Nopaste/Service/Gist.pm Wed Dec 22 06:39:59 2010
@@ -18,7 +18,7 @@
     my %auth = $self->_get_auth;
 
     my $res = $ua->post(
-      'http://gist.github.com/api/v1/json/new',
+      'https://gist.github.com/api/v1/json/new',
       {
         'file_ext[gistfile1]'      => '.' . ( $arg{lang} || 'txt' ),
         'file_contents[gistfile1]' => $arg{text},




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