From 494b38aaef4a5447d2979b8911fc0b03c78dce67 Mon Sep 17 00:00:00 2001 From: Daniel Garcia Moreno Date: Thu, 18 Jul 2013 19:51:22 +0200 Subject: [PATCH] Changed the gpl header to lgpl --- deltatar/aescrypto.py | 11 ++++++----- filesplit.py | 11 ++++++----- rescue_tar.py | 11 ++++++----- runtests.py | 11 ++++++----- testing/__init__.py | 11 ++++++----- testing/test_concat_compress.py | 11 ++++++----- testing/test_encryption.py | 11 ++++++----- testing/test_multivol.py | 11 ++++++----- testing/test_rescue_tar.py | 11 ++++++----- 9 files changed, 54 insertions(+), 45 deletions(-) diff --git a/deltatar/aescrypto.py b/deltatar/aescrypto.py index f46e031..ee5d546 100644 --- a/deltatar/aescrypto.py +++ b/deltatar/aescrypto.py @@ -2,18 +2,19 @@ # Copyright (C) 2013 Intra2net AG # -# 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 +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU Lesser 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. +# GNU Lesser 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 . +# along with this program. If not, see +# # Author: Daniel Garcia diff --git a/filesplit.py b/filesplit.py index ef7129d..00060ec 100644 --- a/filesplit.py +++ b/filesplit.py @@ -2,18 +2,19 @@ # Copyright (C) 2013 Intra2net AG # -# 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 +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU Lesser 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. +# GNU Lesser 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 . +# along with this program. If not, see +# import argparse diff --git a/rescue_tar.py b/rescue_tar.py index 6158db9..9931f60 100644 --- a/rescue_tar.py +++ b/rescue_tar.py @@ -2,18 +2,19 @@ # Copyright (C) 2013 Intra2net AG # -# 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 +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU Lesser 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. +# GNU Lesser 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 . +# along with this program. If not, see +# import argparse diff --git a/runtests.py b/runtests.py index 7808b2f..90945e7 100644 --- a/runtests.py +++ b/runtests.py @@ -2,18 +2,19 @@ # Copyright (C) 2013 Intra2net AG # -# 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 +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU Lesser 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. +# GNU Lesser 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 . +# along with this program. If not, see +# import unittest diff --git a/testing/__init__.py b/testing/__init__.py index ba9fe83..cd86323 100644 --- a/testing/__init__.py +++ b/testing/__init__.py @@ -1,17 +1,18 @@ # Copyright (C) 2013 Intra2net AG # -# 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 +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU Lesser 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. +# GNU Lesser 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 . +# along with this program. If not, see +# import os, unittest, hashlib, string diff --git a/testing/test_concat_compress.py b/testing/test_concat_compress.py index f292574..0096ef8 100644 --- a/testing/test_concat_compress.py +++ b/testing/test_concat_compress.py @@ -1,17 +1,18 @@ # Copyright (C) 2013 Intra2net AG # -# 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 +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU Lesser 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. +# GNU Lesser 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 . +# along with this program. If not, see +# import os, unittest, hashlib, string diff --git a/testing/test_encryption.py b/testing/test_encryption.py index 260786b..2af0732 100644 --- a/testing/test_encryption.py +++ b/testing/test_encryption.py @@ -1,17 +1,18 @@ # Copyright (C) 2013 Intra2net AG # -# 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 +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU Lesser 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. +# GNU Lesser 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 . +# along with this program. If not, see +# import os diff --git a/testing/test_multivol.py b/testing/test_multivol.py index b8d4557..b08656d 100644 --- a/testing/test_multivol.py +++ b/testing/test_multivol.py @@ -1,17 +1,18 @@ # Copyright (C) 2013 Intra2net AG # -# 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 +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU Lesser 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. +# GNU Lesser 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 . +# along with this program. If not, see +# import os, unittest, hashlib, string diff --git a/testing/test_rescue_tar.py b/testing/test_rescue_tar.py index 83d8c00..e9c48eb 100644 --- a/testing/test_rescue_tar.py +++ b/testing/test_rescue_tar.py @@ -1,17 +1,18 @@ # Copyright (C) 2013 Intra2net AG # -# 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 +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU Lesser 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. +# GNU Lesser 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 . +# along with this program. If not, see +# import os, unittest, hashlib, string -- 1.7.1