diff options
| author | kshithijiyer <kshithij.ki@gmail.com> | 2019-12-09 14:11:24 +0530 | 
|---|---|---|
| committer | Kshithij Iyer <kiyer@redhat.com> | 2019-12-10 05:44:48 +0000 | 
| commit | 6addb8d4c74d54f3243cc38f955e8d9e20a9ae5b (patch) | |
| tree | 60bcca1fa44c4096b45800e3871084962be5bca4 | |
| parent | 37155292140a9ad4e19ab87cd026274893df8872 (diff) | |
[Fix] Changing license to GPLv3+ in setup.py files.
The license details of the project needs to
be updated for all the files in the project.
Fixing all setup.py files in the project
and submitting a patch.
Change-Id: I7b53330a65891969403c6267e934606ea9b76352
Signed-off-by: kshithijiyer <kshithij.ki@gmail.com>
| -rw-r--r-- | glustolibs-gluster/setup.py | 8 | ||||
| -rw-r--r-- | glustolibs-io/setup.py | 8 | ||||
| -rw-r--r-- | glustolibs-misc/setup.py | 6 | 
3 files changed, 11 insertions, 11 deletions
diff --git a/glustolibs-gluster/setup.py b/glustolibs-gluster/setup.py index b4b1cf170..b3f9cb09c 100644 --- a/glustolibs-gluster/setup.py +++ b/glustolibs-gluster/setup.py @@ -1,5 +1,5 @@ -#!/usr/bin/python -# Copyright (c) 2016 Red Hat, Inc. +#!/usr/bin/env python +# Copyright (c) 2016-2019 Red Hat, Inc.  #  # 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 @@ -26,7 +26,7 @@ setup(      name=name,      version=version,      description='Glusto - Red Hat Gluster Libraries', -    license='GPLv2+', +    license='GPLv3+',      author='Red Hat, Inc.',      author_email='gluster-devel@gluster.org',      url='http://www.gluster.org', @@ -35,7 +35,7 @@ setup(          'Development Status :: 4 - Beta'          'Environment :: Console'          'Intended Audience :: Developers' -        'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)' +        'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)'          'Operating System :: POSIX :: Linux'          'Programming Language :: Python'          'Programming Language :: Python :: 2' diff --git a/glustolibs-io/setup.py b/glustolibs-io/setup.py index 4e3b16e89..9ee90b15b 100644 --- a/glustolibs-io/setup.py +++ b/glustolibs-io/setup.py @@ -1,5 +1,5 @@  #!/usr/bin/env python -# Copyright (c) 2016 Red Hat, Inc. +# Copyright (c) 2016-2019 Red Hat, Inc.  #  # 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 @@ -28,7 +28,7 @@ setup(      name=name,      version=version,      description='Glusto - Red Hat I/O Libraries', -    license='GPLv2+', +    license='GPLv3+',      author='Red Hat, Inc.',      author_email='gluster-devel@gluster.org',      url='http://www.gluster.org', @@ -37,8 +37,8 @@ setup(          'Development Status :: 4 - Beta',          'Environment :: Console',          'Intended Audience :: Developers', -        'License :: OSI Approved :: GNU General Public License v2 or ' -        'later (GPLv2+)', +        'License :: OSI Approved :: GNU General Public License v3 or ' +        'later (GPLv3+)',          'Operating System :: POSIX :: Linux',          'Programming Language :: Python',          'Programming Language :: Python :: 2', diff --git a/glustolibs-misc/setup.py b/glustolibs-misc/setup.py index b72b47df0..5f65d5184 100644 --- a/glustolibs-misc/setup.py +++ b/glustolibs-misc/setup.py @@ -25,7 +25,7 @@ setup(      name=name,      version=version,      description='Glusto - Red Hat Gluster Libraries', -    license='GPLv2+', +    license='GPLv3+',      author='Red Hat, Inc.',      author_email='gluster-devel@gluster.org',      url='http://www.gluster.org', @@ -34,8 +34,8 @@ setup(          'Development Status :: 4 - Beta',          'Environment :: Console',          'Intended Audience :: Developers', -        'License :: OSI Approved :: GNU General Public License v2 or ' -        'later (GPLv2+)', +        'License :: OSI Approved :: GNU General Public License v3 or ' +        'later (GPLv3+)',          'Operating System :: POSIX :: Linux',          'Programming Language :: Python',          'Programming Language :: Python :: 2',  | 
