diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-03-04 11:36:26 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-03-04 11:36:26 +0100 |
commit | d4235a8372ccaa54bc8322361a41003837d005a4 (patch) | |
tree | 4be2434f26647c8d5e2800a00db47d0fae176279 /package/python-enum/python-enum.mk | |
parent | 183e44fe642ce68ab5f30d1cdf5b7ebf296353aa (diff) | |
download | buildroot-d4235a8372ccaa54bc8322361a41003837d005a4.tar.gz buildroot-d4235a8372ccaa54bc8322361a41003837d005a4.zip |
python-enum: fix license information
The bump of python-enum to version 0.4.6 in commit
636df89872c7b6a6bed2c679cf65da41309ac652 forgot to update the license
information. Even though the PKG-INFO file still pretends it's GPLv2
or Python license, the only license file available is LICENSE.GPL-3
(which indicates a GPLv3 license), and the comment header in the
source code is pretty clear:
This is free software: you may copy, modify, and/or distribute
this work under the terms of the GNU General Public License as
published by the Free Software Foundation; version 3 of that
license or any later version. No warranty expressed or
implied. See the file ‘LICENSE.GPL-3’ for details.
Fixes:
http://autobuild.buildroot.net/results/7fec1c7cde710f523263e74b1849f1f4488b7d26/
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/python-enum/python-enum.mk')
-rw-r--r-- | package/python-enum/python-enum.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/python-enum/python-enum.mk b/package/python-enum/python-enum.mk index e1a55c3d82..aac9328e4d 100644 --- a/package/python-enum/python-enum.mk +++ b/package/python-enum/python-enum.mk @@ -8,7 +8,7 @@ PYTHON_ENUM_VERSION = 0.4.6 PYTHON_ENUM_SOURCE = enum-$(PYTHON_ENUM_VERSION).tar.gz PYTHON_ENUM_SITE = https://pypi.python.org/packages/0c/4e/1ea357e7783c756bb579333c1e4a026fb331371ee771f616ffedc781e531 PYTHON_ENUM_SETUP_TYPE = setuptools -PYTHON_ENUM_LICENSE = GPLv2+ or Python software foundation license v2 -PYTHON_ENUM_LICENSE_FILES = LICENSE.GPL LICENSE.PSF +PYTHON_ENUM_LICENSE = GPLv3+ +PYTHON_ENUM_LICENSE_FILES = LICENSE.GPL-3 $(eval $(python-package)) |