Update license to GPLv3 (dropping the "or later" bit).

Update copyright years.
Add copyright and license information to setup.py.
Add myself as author of the relevant files.
This commit is contained in:
Soren Hansen
2009-06-27 19:46:17 +02:00
parent b098228ab0
commit 14c431c2d1
8 changed files with 43 additions and 28 deletions

View File

@@ -1,14 +1,13 @@
#!/usr/bin/python
#
# Fetch login credentials for EC2
# Copyright 2008 Canonical Ltd.
# Copyright (C) 2008-2009 Canonical Ltd.
#
# Author: Soren Hansen <soren@canonical.com>
#
# 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.
# it under the terms of the GNU General Public License version 3, as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of

View File

@@ -1,14 +1,13 @@
#!/usr/bin/python
#
# Fetch the information about an AMI instance.
# Copyright 2009 Canonical Ltd.
# Copyright (C) 2008-2009 Canonical Ltd.
#
# Author: Chuck Short <chuck.short@canonical.com>
#
# 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.
# it under the terms of the GNU General Public License version 3, as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of

View File

@@ -1,14 +1,13 @@
#!/usr/bin/python
#
# Fetch and run user-data from EC2
# Copyright 2009 Canonical Ltd.
# Copyright (C) 2008-2009 Canonical Ltd.
#
# Author: Soren Hansen <soren@canonical.com>
#
# 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.
# it under the terms of the GNU General Public License version 3, as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of

View File

@@ -1,14 +1,14 @@
#!/usr/bin/python
#
# Fetch the availabity zone and create the sources.list
# Copyright 2009 Canonical Ltd.
# Copyright (C) 2009 Canonical Ltd.
#
# Author: Chuck Short <chuck.short@canonical.com>
# Soren Hansen <soren@canonical.com>
#
# 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.
# it under the terms of the GNU General Public License version 3, as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of

View File

@@ -1,14 +1,14 @@
#!/usr/bin/python
#
# Fetch the availabity zone and create the sources.list
# Copyright 2009 Canonical Ltd.
# Copyright (C) 2008-2009 Canonical Ltd.
#
# Author: Chuck Short <chuck.short@canonical.com>
# Soren Hansen <soren@canonical.com>
#
# 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.
# it under the terms of the GNU General Public License version 3, as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of

View File

@@ -1,14 +1,14 @@
#!/usr/bin/python
#
# Fetch login credentials for EC2
# Copyright 2008 Canonical Ltd.
# Copyright (C) 2008-2009 Canonical Ltd.
#
# Author: Chuck Short <chuck.short@canonical.com>
# Soren Hansen <soren@canonical.com>
#
# 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.
# it under the terms of the GNU General Public License version 3, as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of

View File

@@ -1,13 +1,12 @@
#
# Common code for the EC2 initialisation scripts in Ubuntu
# Copyright 2009 Canonical Ltd.
# Copyright (C) 2008-2009 Canonical Ltd.
#
# Author: Soren Hansen <soren@canonical.com>
#
# 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.
# it under the terms of the GNU General Public License version 3, as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of

View File

@@ -1,3 +1,22 @@
#!/usr/bin/python
#
# Distutils magic for ec2-init
# Copyright (C) 2009 Canonical Ltd.
#
# Author: Soren Hansen <soren@canonical.com>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 3, as
# published by the Free Software Foundation.
#
# 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 <http://www.gnu.org/licenses/>.
#
from distutils.core import setup
from glob import glob
import os.path