~ubuntu-branches/ubuntu/natty/ubuntu-dev-tools/natty-updates

« back to all changes in this revision

Viewing changes to pull-revu-source

  • Committer: Bazaar Package Importer
  • Author(s): Benjamin Drung, Benjamin Drung, Stefano Rivera
  • Date: 2011-02-22 00:42:33 UTC
  • Revision ID: james.westby@ubuntu.com-20110222004233-1mptdqzwzusupxw1
Tags: 0.117
[ Benjamin Drung ]
* dgetlp, import-bug-from-debian, suspicious-source:
  Show error messages instead of having the import errors for
  recommended packages (Closes: #613101, LP: #693813).
* update_maintainer.py: Update Maintainer field if it is set to
  "Ubuntu Core Developers <ubuntu-devel@lists.ubuntu.com>".

[ Stefano Rivera ]
* ubuntutools/archive.py: Rewrite launchpadlib redirects to https when
  fetching dscs.
* debian/control:
  - Suggest qemu-user-static | qemu-kvm-extras-static. Ubuntu provides a
    qemu-user-static package, like Debian, since natty.
  - Drop Build-Depend on Recommend on libapt-pkg-perl. No longer used.
* grab-merge: Show help when no arguments are provided.
* pull-revu-source: Check for the availability of libwww-perl, and print a
  more helpful error.
* requestsync, grep-merges: Require a UTF-8 locale. (Closes: #613114,
  LP: #553795)

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
use warnings;
22
22
use strict;
23
23
use File::Basename;
24
 
use LWP::Simple;
25
24
use Getopt::Long;
26
25
 
27
26
my $REVU = "revu.ubuntuwire.com";
31
30
GetOptions('help' => \$help);
32
31
usage(0) if($help);
33
32
 
 
33
eval { require LWP::Simple; };
 
34
if ($@=~ m#^Can\'t locate LWP/Simple#) {
 
35
        print(STDERR "Please install libwww-perl.\n");
 
36
        exit(1);
 
37
}
 
38
use LWP::Simple;
 
39
 
34
40
dget(getURL());
35
41
 
36
42
sub getURL {