* pull-debian-source:

- Check if 'dget' is available
  - Update Copyright/License info
* debian/copyright:
  - Update my copyright information
This commit is contained in:
Nathan Handler 2009-03-04 22:36:57 +00:00
parent 81f3805efa
commit 1af28e0d64
3 changed files with 13 additions and 4 deletions

9
debian/changelog vendored
View File

@ -9,7 +9,14 @@ ubuntu-dev-tools (0.66) UNRELEASED; urgency=low
[ Marco Rodrigues ]
* Remove workaround for Debian madison, it works fine now.
-- Jonathan Davies <jpds@ubuntu.com> Wed, 04 Mar 2009 20:45:10 +0000
[ Nathan Handler ]
* pull-debian-source:
- Check if 'dget' is available
- Update Copyright/License info
* debian/copyright:
- Update my copyright information
-- Nathan Handler <nhandler@ubuntu.com> Wed, 04 Mar 2009 22:35:44 +0000
ubuntu-dev-tools (0.65) jaunty; urgency=low

2
debian/copyright vendored
View File

@ -40,7 +40,7 @@ Copyright:
(C) 2007, Terence Simpson <stdin@stdin.me.uk>
(C) 2008, Iain Lane <iain@orangesquash.org.uk>
(C) 2008-2009, Jonathan Davies <jpds@ubuntu.com>
(C) 2008, Nathan handler <nhandler@ubuntu.com>
(C) 2008, 2009, Nathan handler <nhandler@ubuntu.com>
Licenses:

View File

@ -2,7 +2,7 @@
# Script Name: pull-debian-source
# Author: Nathan Handler <nhandler@ubuntu.com>
# Usage: pull-debian-source <source package> [release]
# Copyright (C) 2008 Nathan Handler <nhandler@ubuntu.com>
# Copyright (C) 2008, 2009 Nathan Handler <nhandler@ubuntu.com>
# License: GNU General Public License
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@ -15,13 +15,15 @@
# GNU General Public License for more details.
#
# On Debian GNU/Linux systems, the complete text of the GNU General
# Public License can be found in the /usr/share/common-licenses/GPL file.
# Public License can be found in the /usr/share/common-licenses/GPL-3 file.
use warnings;
use strict;
use LWP::Simple;
use File::Basename;
die("Please install 'devscripts'\n") if(! grep -x "$_/dget",$ENV{'PATH'});
my($package)=$ARGV[0] || &usage();
&usage() if(($package=~m/^\-\-help/i) || ($package=~m/^\-h/i));
my($release)=$ARGV[1] || 'unstable';