From 14b7b8c6cd39b3c9bd52ba66769489469bf92ff4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Luttringer?= Date: Wed, 23 May 2012 18:01:39 +0200 Subject: [PATCH] Add copyright and gplv2 license header --- COPYRIGHT | 2 ++ COPYING => LICENSE | 0 bin/is | 19 ++++++++++++++++++- installsystems/__init__.py | 19 ++++++++++++++++++- installsystems/config.py | 19 ++++++++++++++++++- installsystems/database.py | 20 +++++++++++++++++++- installsystems/image.py | 19 ++++++++++++++++++- installsystems/printer.py | 19 ++++++++++++++++++- installsystems/repository.py | 19 ++++++++++++++++++- installsystems/tarball.py | 19 ++++++++++++++++++- installsystems/template.py | 19 ++++++++++++++++++- installsystems/tools.py | 19 ++++++++++++++++++- 12 files changed, 183 insertions(+), 10 deletions(-) create mode 100644 COPYRIGHT rename COPYING => LICENSE (100%) diff --git a/COPYRIGHT b/COPYRIGHT new file mode 100644 index 0000000..5d19919 --- /dev/null +++ b/COPYRIGHT @@ -0,0 +1,2 @@ +Copytight © 2011-2012 Smartjog S.A. +Copyright © 2011-2012 Sébastien Luttringer diff --git a/COPYING b/LICENSE similarity index 100% rename from COPYING rename to LICENSE diff --git a/bin/is b/bin/is index 9ec7b2a..6c94cf8 100755 --- a/bin/is +++ b/bin/is @@ -1,7 +1,24 @@ #!/usr/bin/python # -*- python -*- # -*- coding: utf-8 -*- -# Started 30/06/2011 by Seblu + +# Installsystems - Python installation framework +# Copyright © 2011-2012 Smartjog S.A +# Copyright © 2011-2012 Sébastien Luttringer +# +# 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. ''' InstallSystems Command line Tool diff --git a/installsystems/__init__.py b/installsystems/__init__.py index 7c9dc7c..aa51e8d 100644 --- a/installsystems/__init__.py +++ b/installsystems/__init__.py @@ -1,6 +1,23 @@ # -*- python -*- # -*- coding: utf-8 -*- -# Started 10/05/2011 by Seblu + +# Installsystems - Python installation framework +# Copyright © 2011-2012 Smartjog S.A +# Copyright © 2011-2012 Sébastien Luttringer +# +# 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. ''' InstallSystems module diff --git a/installsystems/config.py b/installsystems/config.py index 0bfe8e6..d3a864c 100644 --- a/installsystems/config.py +++ b/installsystems/config.py @@ -1,6 +1,23 @@ # -*- python -*- # -*- coding: utf-8 -*- -# Started 30/05/2011 by Seblu + +# Installsystems - Python installation framework +# Copyright © 2011-2012 Smartjog S.A +# Copyright © 2011-2012 Sébastien Luttringer +# +# 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. ''' InstallSystems Configuration files class diff --git a/installsystems/database.py b/installsystems/database.py index df8df8b..6b86325 100644 --- a/installsystems/database.py +++ b/installsystems/database.py @@ -1,6 +1,24 @@ # -*- python -*- # -*- coding: utf-8 -*- -# Started 24/05/2011 by Seblu +# +# Installsystems - Python installation framework +# Copyright © 2011-2012 Smartjog S.A +# Copyright © 2011-2012 Sébastien Luttringer +# +# 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. + ''' Database stuff diff --git a/installsystems/image.py b/installsystems/image.py index 50a9729..3d23eb0 100644 --- a/installsystems/image.py +++ b/installsystems/image.py @@ -1,6 +1,23 @@ # -*- python -*- # -*- coding: utf-8 -*- -# Started 10/05/2011 by Seblu + +# Installsystems - Python installation framework +# Copyright © 2011-2012 Smartjog S.A +# Copyright © 2011-2012 Sébastien Luttringer +# +# 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. ''' Image stuff diff --git a/installsystems/printer.py b/installsystems/printer.py index ced603e..c875344 100644 --- a/installsystems/printer.py +++ b/installsystems/printer.py @@ -1,6 +1,23 @@ # -*- python -*- # -*- coding: utf-8 -*- -# Started 10/05/2011 by Seblu + +# Installsystems - Python installation framework +# Copyright © 2011-2012 Smartjog S.A +# Copyright © 2011-2012 Sébastien Luttringer +# +# 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. ''' Install Systems Printer module diff --git a/installsystems/repository.py b/installsystems/repository.py index 3019484..8ed00ac 100644 --- a/installsystems/repository.py +++ b/installsystems/repository.py @@ -1,6 +1,23 @@ # -*- python -*- # -*- coding: utf-8 -*- -# Started 10/05/2011 by Seblu + +# Installsystems - Python installation framework +# Copyright © 2011-2012 Smartjog S.A +# Copyright © 2011-2012 Sébastien Luttringer +# +# 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. ''' Repository stuff diff --git a/installsystems/tarball.py b/installsystems/tarball.py index 3af679c..4f1d383 100644 --- a/installsystems/tarball.py +++ b/installsystems/tarball.py @@ -1,6 +1,23 @@ # -*- python -*- # -*- coding: utf-8 -*- -# Started 17/05/2011 by Seblu + +# Installsystems - Python installation framework +# Copyright © 2011-2012 Smartjog S.A +# Copyright © 2011-2012 Sébastien Luttringer +# +# 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. ''' Tarball wrapper diff --git a/installsystems/template.py b/installsystems/template.py index 06ce72d..59f28a4 100644 --- a/installsystems/template.py +++ b/installsystems/template.py @@ -1,6 +1,23 @@ # -*- python -*- # -*- coding: utf-8 -*- -# Started 12/05/2011 by Seblu + +# Installsystems - Python installation framework +# Copyright © 2011-2012 Smartjog S.A +# Copyright © 2011-2012 Sébastien Luttringer +# +# 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. description = u"""[image] name = %(name)s diff --git a/installsystems/tools.py b/installsystems/tools.py index 55817c0..660a6db 100644 --- a/installsystems/tools.py +++ b/installsystems/tools.py @@ -1,6 +1,23 @@ # -*- python -*- # -*- coding: utf-8 -*- -# Started 26/05/2011 by Seblu + +# Installsystems - Python installation framework +# Copyright © 2011-2012 Smartjog S.A +# Copyright © 2011-2012 Sébastien Luttringer +# +# 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. ''' InstallSystems Generic Tools Library -- GitLab