mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-05-09 16:01:28 +00:00
Relicense the code in this branch to ISC
This commit is contained in:
parent
d80f54dfa5
commit
d67edd7c3c
5
debian/copyright
vendored
5
debian/copyright
vendored
@ -185,16 +185,19 @@ License: GPL-3+
|
|||||||
Files:
|
Files:
|
||||||
doc/sponsor-patch.1,
|
doc/sponsor-patch.1,
|
||||||
doc/suspicious-source.1,
|
doc/suspicious-source.1,
|
||||||
|
doc/ubuntu-dev-tools.5,
|
||||||
doc/wrap-and-sort.1,
|
doc/wrap-and-sort.1,
|
||||||
sponsor-patch,
|
sponsor-patch,
|
||||||
suspicious-source,
|
suspicious-source,
|
||||||
ubuntutools/builder.py,
|
ubuntutools/builder.py,
|
||||||
|
ubuntutools/common.py,
|
||||||
|
ubuntutools/config.py,
|
||||||
ubuntutools/logger.py,
|
ubuntutools/logger.py,
|
||||||
ubuntutools/question.py,
|
ubuntutools/question.py,
|
||||||
ubuntutools/sponsor_patch/bugtask.py,
|
ubuntutools/sponsor_patch/bugtask.py,
|
||||||
ubuntutools/sponsor_patch/main.py,
|
ubuntutools/sponsor_patch/main.py,
|
||||||
ubuntutools/sponsor_patch/patch.py,
|
ubuntutools/sponsor_patch/patch.py,
|
||||||
wrap-and-sort,
|
wrap-and-sort
|
||||||
Copyright:
|
Copyright:
|
||||||
2010, Benjamin Drung <bdrung@ubuntu.com>
|
2010, Benjamin Drung <bdrung@ubuntu.com>
|
||||||
2010, Evan Broder <evan@ebroder.net>
|
2010, Evan Broder <evan@ebroder.net>
|
||||||
|
@ -1,17 +1,16 @@
|
|||||||
.\" Copyright (C) 2010 Stefano Rivera <stefanor@ubuntu.com>
|
.\" Copyright (C) 2010, Stefano Rivera <stefanor@ubuntu.com>
|
||||||
.\"
|
.\"
|
||||||
.\" This program is free software; you can redistribute it and/or
|
.\" Permission to use, copy, modify, and/or distribute this software for any
|
||||||
.\" modify it under the terms of the GNU General Public License
|
.\" purpose with or without fee is hereby granted, provided that the above
|
||||||
.\" as published by the Free Software Foundation; either version 2
|
.\" copyright notice and this permission notice appear in all copies.
|
||||||
.\" 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-2 for more details.
|
|
||||||
.\"
|
.\"
|
||||||
|
.\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
||||||
|
.\" REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
||||||
|
.\" AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
||||||
|
.\" INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
||||||
|
.\" LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
||||||
|
.\" OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
||||||
|
.\" PERFORMANCE OF THIS SOFTWARE.
|
||||||
.TH ubuntu\-dev\-tools "5" "December 19 2010" "ubuntu\-dev\-tools"
|
.TH ubuntu\-dev\-tools "5" "December 19 2010" "ubuntu\-dev\-tools"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
ubuntu\-dev\-tools \- Configuration for the ubuntu\-dev\-tools package.
|
ubuntu\-dev\-tools \- Configuration for the ubuntu\-dev\-tools package.
|
||||||
|
@ -1,28 +1,19 @@
|
|||||||
#
|
|
||||||
# common.py - provides functions which are commonly used by the
|
# common.py - provides functions which are commonly used by the
|
||||||
# ubuntu-dev-tools package.
|
# ubuntu-dev-tools package.
|
||||||
#
|
#
|
||||||
# Copyright (C) 2008 Jonathan Davies <jpds@ubuntu.com>
|
# Copyright (C) 2010, Stefano Rivera <stefanor@ubuntu.com>
|
||||||
# Copyright (C) 2008 Siegfried-Angel Gevatter Pujals <rainct@ubuntu.com>
|
|
||||||
#
|
#
|
||||||
# Some of the functions are based upon code written by Martin Pitt
|
# Permission to use, copy, modify, and/or distribute this software for any
|
||||||
# <martin.pitt@ubuntu.com> and Kees Cook <kees@ubuntu.com>.
|
# purpose with or without fee is hereby granted, provided that the above
|
||||||
|
# copyright notice and this permission notice appear in all copies.
|
||||||
#
|
#
|
||||||
# ##################################################################
|
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
||||||
#
|
# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
||||||
# This program is free software; you can redistribute it and/or
|
# AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
||||||
# modify it under the terms of the GNU General Public License
|
# INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
||||||
# as published by the Free Software Foundation; either version 3
|
# LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
||||||
# of the License, or (at your option) any later version.
|
# OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
||||||
#
|
# PERFORMANCE OF THIS SOFTWARE.
|
||||||
# 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.
|
|
||||||
#
|
|
||||||
# ##################################################################
|
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
|
@ -1,20 +1,19 @@
|
|||||||
# config.py - Common configuration file and environment variable handling for
|
# config.py - Common configuration file and environment variable handling for
|
||||||
# the ubuntu-dev-tools package.
|
# the ubuntu-dev-tools package.
|
||||||
#
|
#
|
||||||
# Copyright (C) 2010 Stefano Rivera <stefanor@ubuntu.com>
|
# Copyright (C) 2010, Stefano Rivera <stefanor@ubuntu.com>
|
||||||
#
|
#
|
||||||
# This program is free software; you can redistribute it and/or
|
# Permission to use, copy, modify, and/or distribute this software for any
|
||||||
# modify it under the terms of the GNU General Public License
|
# purpose with or without fee is hereby granted, provided that the above
|
||||||
# as published by the Free Software Foundation; either version 2
|
# copyright notice and this permission notice appear in all copies.
|
||||||
# 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-2 for more details.
|
|
||||||
#
|
#
|
||||||
|
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
||||||
|
# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
||||||
|
# AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
||||||
|
# INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
||||||
|
# LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
||||||
|
# OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
||||||
|
# PERFORMANCE OF THIS SOFTWARE.
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import os.path
|
import os.path
|
||||||
|
Loading…
x
Reference in New Issue
Block a user