浏览代码

package/avocado: fix license

In commit ef321ff4a90acf2133ee29d5fd2a65fc9906c748 ("package/avocado:
new package") the license information that was introduced was
incorrect. The license is GPL-2.0, not Apache-2.0.

According to the LICENSE file:

Most files in Avocado are released under the GPLv2 with a "and any later
version" clause (GPLv2+), but some files are explicitly bound to the
version 2 of the license and therefore that's the official license of
the project itself. The header on each individual file contains
information about the GPL version that applies to it.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Thomas Petazzoni 3 年之前
父节点
当前提交
a830961a58
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      package/avocado/avocado.mk

+ 1 - 1
package/avocado/avocado.mk

@@ -7,7 +7,7 @@
 AVOCADO_VERSION = 98.0
 AVOCADO_SITE = $(call github,avocado-framework,avocado,$(AVOCADO_VERSION))
 AVOCADO_SETUP_TYPE = setuptools
-AVOCADO_LICENSE = Apache-2.0
+AVOCADO_LICENSE = GPL-2.0
 AVOCADO_LICENSE_FILES = LICENSE
 
 $(eval $(python-package))