From d3efcc879ff525bd36d1b57906f55706cc05044d Mon Sep 17 00:00:00 2001 From: Siegfried-Angel Gevatter Pujals Date: Mon, 11 Aug 2008 20:06:35 +0200 Subject: [PATCH] Remove unneeded AUTHORS and README. Add the GPL header to all scripts. --- 404main | 17 +++++++++- AUTHORS | 17 ---------- README | 78 ------------------------------------------- TODO | 2 +- check-symbols | 19 +++++++++-- dch-repeat | 19 +++++++++-- debian/changelog | 7 +++- dgetlp | 26 ++++++++------- get-branches | 24 ++++++------- get-build-deps | 18 +++++++++- grab-attachments | 17 ++++++++-- hugdaylist | 27 +++++++-------- massfile | 17 +++++++++- mk-sbuild-lv | 17 +++++++++- pbuilder-dist | 16 ++++++++- pbuilder-dist-simple | 16 ++++++++- pbuilder-dist.new | 16 ++++++++- pull-debian-debdiff | 17 +++++++++- pull-lp-source | 13 ++++---- requestsync | 15 ++++++++- reverse-build-depends | 18 +++++++++- submittodebian | 30 +++++++++-------- suspicious-source | 14 +++++++- update-maintainer | 17 +++++++++- what-patch | 22 ++++++++++-- 25 files changed, 324 insertions(+), 175 deletions(-) delete mode 100644 AUTHORS delete mode 100644 README diff --git a/404main b/404main index 604e759..db00ce9 100755 --- a/404main +++ b/404main @@ -3,7 +3,22 @@ # # Copyright 2006-2007 (C) Pete Savage # Copyright 2007 (C) Siegfried-A. Gevatter -# License: GPLv2 or later +# +# ################################################################## +# +# 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. +# +# See file /usr/share/common-licenses/GPL for more details. +# +# ################################################################## # # This script is used to check if a package and all its build # dependencies are in main or not. diff --git a/AUTHORS b/AUTHORS deleted file mode 100644 index 167c7dd..0000000 --- a/AUTHORS +++ /dev/null @@ -1,17 +0,0 @@ -Albert Damen -Albin Tonnerre -Daniel Hahler -Daniel Holbach -Iain Lane -Jamin W. Collins -Jonathan Patrick Davies -Jordan Mantha -Kees Cook -Luke Yelavich -Martin Pitt -Michael Bienia -Pete Savage -Siegfried-A. Gevatter -Soren Hansen -Steve Kowalik -Terence Simpson diff --git a/README b/README deleted file mode 100644 index 8cf4e00..0000000 --- a/README +++ /dev/null @@ -1,78 +0,0 @@ -================================ -== Ubuntu Development Tools == -================================ - -404main - ... will check if and all it's build dependencies are - are in the "main" component or not. - -check-symbols [] - ... will compare and give you a diff of the exported symbols of all - .so files in all binary packages of . is not - mandatory and set to /var/cache/pbuilder/result by default. - -dch-repeat [--help] - ... will repeat a change log into an older release. - -dgetlp - ... will simulate «dget»'s behaviour for files hosted at - launchpadlibrarian.net. - -get-branches [checkout|branch] - ... will branch / checkout all the Bazaar branches in a Launchpad - team. - -get-build-deps [] - ... will install the build dependencies for a package, if you are - inside its source file. Alternatively, you can pass it the name of - a file containing a list of packages, one on each line, or just - pass them all as parameters, and it will get their build - dependencies. - -hugdaylist [-n ] - ... will create a list of bug list for a hug day listing - -massfile - ... will perform a massive bug reporting operation on Launchpad - according to the information in the "information" and "list" files - that are in the working directory. - -mk-sbuild-lv - ... will create LVM snapshot chroots via schroot and sbuild. It - assumes that sbuild has not be installed and configured before. - -pbuilder-dist [withlog] [create|update|build|clean|login|execute] - ... is a wrapper to use pbuilder with many different Ubuntu and/or - Debian releases. It's recommended to symlink as pbuilder-feisty, - pbuilder-gutsy, etc. - -pull-debian-debdiff - ... will attempt to find and download a specific version of a - Debian package and its immediate parent to generate a debdiff. - -requestsync [-n|-s] [base version] - ... will file a sync request for a package from Debian by sending - a bug report to Launchpad. - -reverse-build-depends [-c|-s] - ... will print 's build dependencies. - -submittodebian - ... will submit patches to Debian's BTS. Run it from inside the - source directory of a Debian package (note that there has to be - a .dsc for it in the parent directory). - -suspicious-source - ... will output a list of files which are not common source files. - This should be run in the root of a source tree to find files which - might not be the "prefered form of modification" that the GPL and - other licenses require. - -update-maintainer - ... will update the Maintainer field of an Ubuntu package to match - the DebianMaintainerField specification, and add a line about this - to the changelog. - -what-patch - ... will check what patching system is used by a package. You need - to be in its source directory in order for it to work. diff --git a/TODO b/TODO index 414c944..9ac821f 100644 --- a/TODO +++ b/TODO @@ -2,6 +2,6 @@ https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools - Create missing manpages (for all commands). - Modify 404main to use the more robust python-apt module. -- Use the short version of the GPL license in all scripts. - Ask all authors who have used GPL if they are happy with using "or any later" versions of the license. +- pull-lp-source: determine the current development distro programatically. diff --git a/check-symbols b/check-symbols index 800764a..1adf2cc 100755 --- a/check-symbols +++ b/check-symbols @@ -1,7 +1,22 @@ #!/bin/bash -# Copyright 2006-2007 (C) Daniel Holbach +# +# Copyright (C) 2006-2007 Daniel Holbach # Modified by Siegfried-A. Gevatter -# License: GPLv2 +# +# ################################################################## +# +# 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; version 2. +# +# 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. +# +# See file /usr/share/common-licenses/GPL-2 for more details. +# +# ################################################################## # # This script is used to get a diff of the exported symbols of all .so files in # every binary package of package $1. diff --git a/dch-repeat b/dch-repeat index ba831f0..c32938e 100755 --- a/dch-repeat +++ b/dch-repeat @@ -1,7 +1,22 @@ #!/usr/bin/perl -# Copyright 2007-2008 (C) Canonical, Ltd +# +# Copyright (C) 2007-2008 Canonical, Ltd. # Author: Kees Cook -# License: GPLv2 +# +# ################################################################## +# +# 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; version 2. +# +# 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. +# +# See file /usr/share/common-licenses/GPL-2 for more details. +# +# ################################################################## # # This script is used to repeat a change log into an older release. It # expects that --build-tree is laid out with each Ubuntu release as a diff --git a/debian/changelog b/debian/changelog index 5587b68..13b6893 100644 --- a/debian/changelog +++ b/debian/changelog @@ -9,7 +9,12 @@ ubuntu-dev-tools (0.37ubuntu1) intrepid; urgency=low - Check that 'distro' exists on Launchpad. - Use subprocess for dget calls. - -- Jonathan Patrick Davies Sun, 10 August 2008 22:07:58 +0100 + [ Siegfried-Angel Gevatter Pujals ] + * Add the GNU General Public License header to all scripts. + * Remove files AUTHORS (it duplicated content from debian/copyright) and + README (superseded by the manpages). + + -- Siegfried-Angel Gevatter Pujals Mon, 11 Aug 2008 19:44:53 +0200 ubuntu-dev-tools (0.36ubuntu1) intrepid; urgency=low diff --git a/dgetlp b/dgetlp index 38b5502..9df4289 100755 --- a/dgetlp +++ b/dgetlp @@ -1,20 +1,22 @@ #!/bin/bash # Copyright (C) 2008 Terence Simpson # Modified by Siegfried-A. Gevatter -# 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 -# 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. +# 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. +# +# See file /usr/share/common-licenses/GPL for more details. +# +# ################################################################## # # This script simulates «dget»'s behaviour for files hosted at # launchpadlibrarian.net. diff --git a/get-branches b/get-branches index 886a758..2cb248f 100755 --- a/get-branches +++ b/get-branches @@ -1,24 +1,24 @@ #!/usr/bin/python # -*- coding: utf-8 -*- # +# Copyright (C) 2007 Canonical Ltd. # Created by Daniel Holbach # Modified by Jonathan Patrick Davies # -# Copyright (C) 2007 Canonical Ltd. +# ################################################################## # -# 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, version 3 of the 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 the Free Software Foundation; version 3. +# +# 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. # -# 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. +# See file /usr/share/common-licenses/GPL-3 for more details. # -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . -# - +# ################################################################## # # This script is used to checkout or branch all the Bazaar branches # in a Launchpad team. diff --git a/get-build-deps b/get-build-deps index 3f2c6f7..50dd938 100755 --- a/get-build-deps +++ b/get-build-deps @@ -1,6 +1,22 @@ #!/bin/bash +# # Copyright 2007 (C) Siegfried-A. Gevatter -# License: GPLv3 or later +# +# ################################################################## +# +# 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 3 +# 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. +# +# See file /usr/share/common-licenses/GPL for more details. +# +# ################################################################## # # If you don't pass it any argument, this script will check if # there's a control (debian/control) file somewhere in the current diff --git a/grab-attachments b/grab-attachments index dbda6f2..109a119 100755 --- a/grab-attachments +++ b/grab-attachments @@ -1,9 +1,22 @@ #!/usr/bin/python # -# Copyright 2007, Canonical, Daniel Holbach +# Copyright (C) 2007, Canonical Ltd. +# Written by Daniel Holbach # -# GPL 3 +# ################################################################## # +# 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; version 3. +# +# 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. +# +# See file /usr/share/common-licenses/GPL-3 for more details. +# +# ################################################################## import os import sys diff --git a/hugdaylist b/hugdaylist index e9c5057..3556322 100755 --- a/hugdaylist +++ b/hugdaylist @@ -1,22 +1,24 @@ #!/usr/bin/python # -*- coding: utf-8 -*- # -# Copyright (C) 2007 Canonical Ltd., Daniel Holbach -# Copyright (C) 2008 Jonathan Patrick Davies +# Copyright (C) 2007 Canonical Ltd., Daniel Holbach +# Copyright (C) 2008 Jonathan Patrick Davies # -# 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, version 3 of the License. +# ################################################################## # -# 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. +# 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; version 3. +# +# 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, see . +# See file /usr/share/common-licenses/GPL-3 for more details. +# +# ################################################################## # - # # hugdaylist - produces MoinMoin wiki formatted tables based on a Launchpad bug # list. @@ -26,7 +28,6 @@ # # hugdaylist -n # - will only list URLs. -# import os import re diff --git a/massfile b/massfile index ccc6780..7927820 100755 --- a/massfile +++ b/massfile @@ -1,10 +1,25 @@ #!/usr/bin/python # -*- coding: utf-8 -*- # -# (C) Canonical, 2007, GPL v3 +# Copyright (C) 2007 Canonical Ltd. # # Modified by Iain Lane , taking some code written by # Daniel Hahler +# +# ################################################################## +# +# 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; version 3. +# +# 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. +# +# See file /usr/share/common-licenses/GPL-3 for more details. +# +# ################################################################## import os import sys diff --git a/mk-sbuild-lv b/mk-sbuild-lv index 51ad04c..444fed7 100755 --- a/mk-sbuild-lv +++ b/mk-sbuild-lv @@ -1,7 +1,22 @@ #!/bin/bash +# # Copyright 2006-2007 (C) Canonical Ltd. # Created by Kees Cook -# License: GPLv2 +# +# ################################################################## +# +# 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; version 2. +# +# 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. +# +# See file /usr/share/common-licenses/GPL-2 for more details. +# +# ################################################################## # # This script creates LVM snapshot chroots via schroot and sbuild. # Much love to "man sbuild-setup", https://wiki.ubuntu.com/PbuilderHowto, diff --git a/pbuilder-dist b/pbuilder-dist index 47e54da..b3b502a 100755 --- a/pbuilder-dist +++ b/pbuilder-dist @@ -4,7 +4,21 @@ # Copyright (C) Jordan Mantha # Copyright (C) 2007-2008 Siegfried-A. Gevatter # -# License: GPLv2 or later +# ################################################################## +# +# 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. +# +# See file /usr/share/common-licenses/GPL for more details. +# +# ################################################################## # # This script is a wrapper to be able to easily use pbuilder for # different distributions (eg, Gutsy, Hardy, Debian unstable, etc). diff --git a/pbuilder-dist-simple b/pbuilder-dist-simple index 3210226..1a4e385 100755 --- a/pbuilder-dist-simple +++ b/pbuilder-dist-simple @@ -3,7 +3,21 @@ # Copyright (C) Jamin W. Collins # Copyright (C) Jordan Mantha # -# License: GPLv2 or later +# ################################################################## +# +# 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. +# +# See file /usr/share/common-licenses/GPL for more details. +# +# ################################################################## # # This script is a wrapper to be able to easily use pbuilder for # different distributions (eg, Gutsy, Hardy, Debian unstable, etc). diff --git a/pbuilder-dist.new b/pbuilder-dist.new index ab3468e..48755bb 100755 --- a/pbuilder-dist.new +++ b/pbuilder-dist.new @@ -5,7 +5,21 @@ # With some changes by Iain Lane # Based upon pbuilder-dist-simple by Jamin Collins and Jordan Mantha. # -# License: GPLv2 or later +# ################################################################## +# +# 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. +# +# See file /usr/share/common-licenses/GPL for more details. +# +# ################################################################## # # This script is a wrapper to be able to easily use pbuilder for # different distributions (eg, Gutsy, Hardy, Debian unstable, etc). diff --git a/pull-debian-debdiff b/pull-debian-debdiff index 08c47bb..37f3cd8 100755 --- a/pull-debian-debdiff +++ b/pull-debian-debdiff @@ -1,6 +1,21 @@ #!/usr/bin/perl +# # Copyright 2007-2008 Kees Cook -# License GPLv3 +# +# ################################################################## +# +# 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; version 3. +# +# 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. +# +# See file /usr/share/common-licenses/GPL-3 for more details. +# +# ################################################################## # # This script attempts to find and download a specific version of a Debian # package and its immediate parent to generate a debdiff. diff --git a/pull-lp-source b/pull-lp-source index 527be98..65eaa5f 100755 --- a/pull-lp-source +++ b/pull-lp-source @@ -1,12 +1,15 @@ #!/usr/bin/python +# # pull-lp-source -- pull a source package from Launchpad # Basic usage: pull-lp-source [] # # Copyright (C) 2008 Iain Lane # -# BackportFromLP class taken from prevu tool, which has -# copyright (C) 2006 John Dong . +# BackportFromLP class taken from prevu tool, which is: +# Copyright (C) 2006 John Dong # +# ################################################################## +# # 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 3 @@ -17,12 +20,10 @@ # 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. +# See file /usr/share/common-licenses/GPL for more details. # +# ################################################################## -# TODO: Determine current development distro programatically import os import subprocess diff --git a/requestsync b/requestsync index 4cfde41..96bce89 100755 --- a/requestsync +++ b/requestsync @@ -9,7 +9,20 @@ # Daniel Hahler # Iain Lane # -# License: GPLv2, see /usr/share/common-licenses/GPL-2 +# ################################################################## +# +# 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; version 2. +# +# 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. +# +# See file /usr/share/common-licenses/GPL-2 for more details. +# +# ################################################################## import os, sys, urllib, subprocess, getopt from debian_bundle.changelog import Version diff --git a/reverse-build-depends b/reverse-build-depends index 5e4f617..8a95ca8 100755 --- a/reverse-build-depends +++ b/reverse-build-depends @@ -1,7 +1,23 @@ #!/bin/bash +# # Copyright (C) 2007 Siegfried-A. Gevatter # Based upon a short script by an unknown author -# License: GPLv2+ +# +# ################################################################## +# +# 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. +# +# See file /usr/share/common-licenses/GPL for more details. +# +# ################################################################## # # This script is used to find the reverse build dependencies # that a package has. diff --git a/submittodebian b/submittodebian index 209fe7b..770b4b1 100755 --- a/submittodebian +++ b/submittodebian @@ -1,23 +1,25 @@ #!/usr/bin/python # -*- coding: utf-8 -*- # -# submittodebian - tool to submit patches to Debian's bts -# Copyright (C) 2007 Canonical Ltd. -# Author: Soren Hansen +# submittodebian - tool to submit patches to Debian's BTS +# Copyright (C) 2007 Canonical Ltd. +# Author: Soren Hansen # -# 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. +# 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. +# +# See file /usr/share/common-licenses/GPL 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. +# ################################################################## import re, os, sys from tempfile import mkstemp diff --git a/suspicious-source b/suspicious-source index 943376e..e4d81f9 100755 --- a/suspicious-source +++ b/suspicious-source @@ -1,7 +1,19 @@ #!/bin/bash +# # Copyright 2007 (C) Siegfried-A. Gevatter # Based upon a script by Martin Pitt -# License: GPLv3 or later +# +# 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 3 +# 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. +# +# See file /usr/share/common-licenses/GPL for more details. # # This script outputs a list of files which are not common source files. This # should be run in the root of a source tree to find files which might not be diff --git a/update-maintainer b/update-maintainer index ce03185..5403ef4 100755 --- a/update-maintainer +++ b/update-maintainer @@ -1,6 +1,21 @@ #!/bin/bash +# # Copyright 2007 (C) Albin Tonnerre (Lutin) -# License: GPLv2 +# +# ################################################################## +# +# 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; version 2. +# +# 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. +# +# See file /usr/share/common-licenses/GPL-2 for more details. +# +# ################################################################## # # This script is used to update the Maintainer field of an Ubuntu package # to match the DebianMaintainerField specification. diff --git a/what-patch b/what-patch index 73920fa..90d3f47 100755 --- a/what-patch +++ b/what-patch @@ -1,11 +1,27 @@ #!/bin/bash +# # Copyright 2006-2008 (C) Kees Cook # Modified by Siegfried-A. Gevatter # Modified by Daniel Hahler -# License: GPLv2 +# +# ################################################################## +# +# 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; version 2. +# +# 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. +# +# See file /usr/share/common-licenses/GPL-2 for more details. +# +# ################################################################## +# +# By default only the name of the patch system is printed. Verbose mode can be +# enabled with -v. -# Default operation reports only the patch system. Verbose mode can be -# enabled with -v if [ "$1" = "-h" ] || [ "$1" = "--help" ] then cat <