Bug#600463: unblock: libnet-twitter-perl/3.13008-1
> Please consider unblocking libnet-twitter-perl. It now uses HTTPS
> instead of HTTP for OAuth token negotiation as recommended by
> Twitter[1] (that is s,http,https, for several URLs). There are no other
> changes besides a change in wording in debian/copyright and a newer
> Standards-Version. The updated package has already been in unstable for
> some time (38 days).
>
> Including this change in Squeeze would be better than having to deal
> with Twitter deciding to only support HTTPS later and the package
> breaking (I am not aware of any such plans, but I also don't use Twitter
> myself).
>
> unblock libnet-twitter-perl/3.13008-1
>
> [1] <http://dev.twitter.com/pages/auth#at-twitter>
And now also with the debdiff attached.
Regards,
Ansgar
Index: debian/control
===================================================================
--- debian/control (.../3.13007-1) (revision 63851)
+++ debian/control (.../3.13008-1) (revision 63851)
@@ -16,7 +16,7 @@
gregor herrmann <gregoa@debian.org>, Franck Joncourt <franck@debian.org>,
Antony Gelberg <antony.gelberg@wayforth.com>,
Ansgar Burchardt <ansgar@43-1.org>
-Standards-Version: 3.9.0
+Standards-Version: 3.9.1
Homepage: http://search.cpan.org/dist/Net-Twitter/
Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libnet-twitter-perl/
Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libnet-twitter-perl/
Index: debian/changelog
===================================================================
--- debian/changelog (.../3.13007-1) (revision 63851)
+++ debian/changelog (.../3.13008-1) (revision 63851)
@@ -1,3 +1,12 @@
+libnet-twitter-perl (3.13008-1) unstable; urgency=low
+
+ * New upstream release.
+ * debian/copyright: Refer to /usr/share/common-licenses/GPL-1; refer to
+ "Debian systems" instead of "Debian GNU/Linux systems".
+ * Bump Standards-Version to 3.9.1.
+
+ -- Ansgar Burchardt <ansgar@43-1.org> Wed, 08 Sep 2010 20:38:06 +0900
+
libnet-twitter-perl (3.13007-1) unstable; urgency=low
* New upstream release.
Index: debian/copyright
===================================================================
--- debian/copyright (.../3.13007-1) (revision 63851)
+++ debian/copyright (.../3.13008-1) (revision 63851)
@@ -25,8 +25,8 @@
This program is free software; you can redistribute it and/or modify
it under the terms of the Artistic License, which comes with Perl.
.
- On Debian GNU/Linux systems, the complete text of the Artistic License
- can be found in `/usr/share/common-licenses/Artistic'
+ On Debian systems, the complete text of the Artistic License
+ can be found in `/usr/share/common-licenses/Artistic'.
License: GPL-1+
This program is free software; you can redistribute it and/or modify
@@ -34,5 +34,5 @@
the Free Software Foundation; either version 1, or (at your option)
any later version.
.
- On Debian GNU/Linux systems, the complete text of the GNU General
- Public License can be found in `/usr/share/common-licenses/GPL'
+ On Debian systems, the complete text of version 1 of the GNU General
+ Public License can be found in `/usr/share/common-licenses/GPL-1'.
Index: META.yml
===================================================================
--- META.yml (.../3.13007-1) (revision 63851)
+++ META.yml (.../3.13008-1) (revision 63851)
@@ -50,4 +50,4 @@
homepage: http://github.com/semifor/Net-Twitter
license: http://dev.perl.org/licenses/
repository: git://github.com/semifor/Net-Twitter.git
-version: 3.13007
+version: 3.13008
Index: lib/Net/Twitter/Search.pm
===================================================================
--- lib/Net/Twitter/Search.pm (.../3.13007-1) (revision 63851)
+++ lib/Net/Twitter/Search.pm (.../3.13008-1) (revision 63851)
@@ -2,7 +2,7 @@
use Moose;
# use *all* digits for fBSD ports
-our $VERSION = '3.13007';
+our $VERSION = '3.13008';
$VERSION = eval $VERSION; # numify for warning-free dev releases
extends 'Net::Twitter::Core';
Index: lib/Net/Twitter/Role/OAuth.pm
===================================================================
--- lib/Net/Twitter/Role/OAuth.pm (.../3.13007-1) (revision 63851)
+++ lib/Net/Twitter/Role/OAuth.pm (.../3.13008-1) (revision 63851)
@@ -20,10 +20,10 @@
my $args = $class->$orig(@_);
my $oauth_urls = delete $args->{oauth_urls} || {
- request_token_url => "http://api.twitter.com/oauth/request_token",
- authentication_url => "http://api.twitter.com/oauth/authenticate",
- authorization_url => "http://api.twitter.com/oauth/authorize",
- access_token_url => "http://api.twitter.com/oauth/access_token",
+ request_token_url => "https://api.twitter.com/oauth/request_token",
+ authentication_url => "https://api.twitter.com/oauth/authenticate",
+ authorization_url => "https://api.twitter.com/oauth/authorize",
+ access_token_url => "https://api.twitter.com/oauth/access_token",
xauth_url => "https://api.twitter.com/oauth/access_token",
};
Index: lib/Net/Twitter/Core.pm
===================================================================
--- lib/Net/Twitter/Core.pm (.../3.13007-1) (revision 63851)
+++ lib/Net/Twitter/Core.pm (.../3.13008-1) (revision 63851)
@@ -17,7 +17,7 @@
use namespace::autoclean;
# use *all* digits for fBSD ports
-our $VERSION = '3.13007';
+our $VERSION = '3.13008';
$VERSION = eval $VERSION; # numify for warning-free dev releases
Index: lib/Net/Twitter/OAuth.pm
===================================================================
--- lib/Net/Twitter/OAuth.pm (.../3.13007-1) (revision 63851)
+++ lib/Net/Twitter/OAuth.pm (.../3.13008-1) (revision 63851)
@@ -2,7 +2,7 @@
use Moose;
# use *all* digits for fBSD ports
-our $VERSION = '3.13007';
+our $VERSION = '3.13008';
$VERSION = eval $VERSION; # numify for warning-free dev releases
extends 'Net::Twitter::Core';
Index: lib/Net/Twitter.pod
===================================================================
--- lib/Net/Twitter.pod (.../3.13007-1) (revision 63851)
+++ lib/Net/Twitter.pod (.../3.13008-1) (revision 63851)
@@ -4,7 +4,7 @@
=head1 VERSION
-This document describes Net::Twitter version 3.13007
+This document describes Net::Twitter version 3.13008
=head1 SYNOPSIS
Index: lib/Net/Identica.pm
===================================================================
--- lib/Net/Identica.pm (.../3.13007-1) (revision 63851)
+++ lib/Net/Identica.pm (.../3.13008-1) (revision 63851)
@@ -2,7 +2,7 @@
use Moose;
# use *all* digits for fBSD ports
-our $VERSION = '3.13007';
+our $VERSION = '3.13008';
$VERSION = eval $VERSION; # numify for warning-free dev releases
extends 'Net::Twitter::Core';
Index: lib/Net/Twitter.pm
===================================================================
--- lib/Net/Twitter.pm (.../3.13007-1) (revision 63851)
+++ lib/Net/Twitter.pm (.../3.13008-1) (revision 63851)
@@ -11,7 +11,7 @@
);
# use *all* digits for fBSD ports
-our $VERSION = '3.13007';
+our $VERSION = '3.13008';
$VERSION = eval $VERSION; # numify for warning-free dev releases
Index: Changes
===================================================================
--- Changes (.../3.13007-1) (revision 63851)
+++ Changes (.../3.13008-1) (revision 63851)
@@ -1,3 +1,6 @@
+3.13008 2010-08-26
+ - use HTTPS for all OAuth token negotiation steps
+
3.13007 2010-07-06
- decode_html_entities now decodes all fields (incl source in search results)
- Role::OAuth doc patch by Doug Bell <doug@plainblack.com>
Index: README
===================================================================
--- README (.../3.13007-1) (revision 63851)
+++ README (.../3.13008-1) (revision 63851)
@@ -2,7 +2,7 @@
Net::Twitter - A perl interface to the Twitter API
VERSION
- This document describes Net::Twitter version 3.13007
+ This document describes Net::Twitter version 3.13008
SYNOPSIS
use Net::Twitter;
Reply to: