From aecf19760123524194f90b49d1b999833fea3cfa Mon Sep 17 00:00:00 2001 From: Michael Bienia Date: Sun, 11 Jul 2010 20:30:08 +0200 Subject: [PATCH] Add copyright information for "import-bug-from-debian" and install it as part of ubuntu-dev-tools. --- debian/changelog | 5 ++++- debian/control | 1 + debian/copyright | 18 +++++++++++------- import-bug-from-debian | 20 ++++++++++++++++++++ setup.py | 1 + 5 files changed, 37 insertions(+), 8 deletions(-) diff --git a/debian/changelog b/debian/changelog index 6dea9b8..86e3647 100644 --- a/debian/changelog +++ b/debian/changelog @@ -14,7 +14,10 @@ ubuntu-dev-tools (0.101) UNRELEASED; urgency=low * Bump Standards-Version to 3.9.0 (no changes required). * Switch to dpkg-source 3.0 (native) format. - -- Benjamin Drung Tue, 29 Jun 2010 16:43:51 +0200 + [ Michael Bienia ] + * Add "import-bug-from-debian" written by James Westby. + + -- Michael Bienia Sun, 11 Jul 2010 20:28:54 +0200 ubuntu-dev-tools (0.100) maverick; urgency=low diff --git a/debian/control b/debian/control index af9a235..9e95ad5 100644 --- a/debian/control +++ b/debian/control @@ -57,6 +57,7 @@ Description: useful tools for Ubuntu developers report. - grab-merge - grabs a merge from merges.ubuntu.com easily. - hugdaylist - compile HugDay lists from bug list URLs. + - import-bug-from-debian - copy a bug from the Debian BTS to Launchpad - lp-project-upload - upload a release tarball to a Launchpad project - lp-set-dup - sets the "duplicate of" bug of a bug and its dups. - manage-credentials - manage Launchpad token credentials. diff --git a/debian/copyright b/debian/copyright index 44298b1..ee005fe 100644 --- a/debian/copyright +++ b/debian/copyright @@ -10,6 +10,7 @@ Upstream Authors: Daniel Holbach Emmet Hikory Iain Lane + James Westby Jamin W. Collins Jonathan Davies Jordan Mantha @@ -35,6 +36,7 @@ Copyright: (C) 2006-2007, Albin Tonnerre (C) 2006-2007, Daniel Holbach (C) 2008, Iain Lane + © 2009, James Westby (C) Jamin W. Collins (C) 2008-2009, Jonathan Davies (C) Jordan Mantha @@ -54,9 +56,10 @@ Copyright: Licenses: -404main, check-symbols, dgetlp, lp-project-upload, lp-set-dup, pbuilder-dist, -pbuilder-dist-simple, requestsync, reverse-build-depends, submittodebian, ubuntuiso, -and update-maintainer are licensed under the GNU General Public License, version 2: +404main, check-symbols, dgetlp, import-bug-from-debian, lp-project-upload, +lp-set-dup, pbuilder-dist, pbuilder-dist-simple, requestsync, +reverse-build-depends, submittodebian, ubuntuiso, and update-maintainer are +licensed under the GNU General Public License, version 2: This package is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -90,7 +93,8 @@ License v3 can be found in `/usr/share/common-licenses/GPL-3'. The following scripts can be used, at your option, regarding any later version of the previously specified license: 404main, dch-repeat, dgetlp, -get-build-deps, lp-project-upload, lp-set-dup, manage-credentials, mk-sbuild-lv, -pbuilder-dist, pull-debian-debdiff, pull-debian-source, pull-lp-source, -pull-revu-source, reverse-build-depends, setup-packaging-environment, submittodebian, -suspicious-source, syncpackage, ubuntu-build, what-patch. +get-build-deps, import-bug-from-debian, lp-project-upload, lp-set-dup, +manage-credentials, mk-sbuild-lv, pbuilder-dist, pull-debian-debdiff, +pull-debian-source, pull-lp-source, pull-revu-source, reverse-build-depends, +setup-packaging-environment, submittodebian, suspicious-source, syncpackage, +ubuntu-build, what-patch. diff --git a/import-bug-from-debian b/import-bug-from-debian index 331c701..34fb2ea 100755 --- a/import-bug-from-debian +++ b/import-bug-from-debian @@ -1,5 +1,25 @@ #!/usr/bin/python +# Copyright © 2009 James Westby +# +# ################################################################## +# +# 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 the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License along +# with this program; if not, write to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +# +# ################################################################## + from launchpadlib.launchpad import ( STAGING_SERVICE_ROOT, EDGE_SERVICE_ROOT, diff --git a/setup.py b/setup.py index 997c19e..6eb3bf5 100755 --- a/setup.py +++ b/setup.py @@ -24,6 +24,7 @@ setup(name='ubuntu-dev-tools', 'grab-attachments', 'grab-merge', 'hugdaylist', + 'import-bug-from-debian', 'lp-project-upload', 'lp-set-dup', 'lp-shell',