From 1af28e0d647c3e55f4c120fd8554fa491ece5e22 Mon Sep 17 00:00:00 2001 From: Nathan Handler Date: Wed, 4 Mar 2009 22:36:57 +0000 Subject: [PATCH] * pull-debian-source: - Check if 'dget' is available - Update Copyright/License info * debian/copyright: - Update my copyright information --- debian/changelog | 9 ++++++++- debian/copyright | 2 +- pull-debian-source | 6 ++++-- 3 files changed, 13 insertions(+), 4 deletions(-) diff --git a/debian/changelog b/debian/changelog index 20de9fd..5321a5a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 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 Wed, 04 Mar 2009 22:35:44 +0000 ubuntu-dev-tools (0.65) jaunty; urgency=low diff --git a/debian/copyright b/debian/copyright index db79056..dc71389 100644 --- a/debian/copyright +++ b/debian/copyright @@ -40,7 +40,7 @@ Copyright: (C) 2007, Terence Simpson (C) 2008, Iain Lane (C) 2008-2009, Jonathan Davies - (C) 2008, Nathan handler + (C) 2008, 2009, Nathan handler Licenses: diff --git a/pull-debian-source b/pull-debian-source index 4a9f838..67ddb58 100755 --- a/pull-debian-source +++ b/pull-debian-source @@ -2,7 +2,7 @@ # Script Name: pull-debian-source # Author: Nathan Handler # Usage: pull-debian-source [release] -# Copyright (C) 2008 Nathan Handler +# Copyright (C) 2008, 2009 Nathan Handler # 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';