2011-11-29 13:08:58 +01:00
|
|
|
# -*- python -*-
|
|
|
|
# vim: syntax=python sw=4 et
|
|
|
|
|
|
|
|
# This line is mandatory to access the configuration functions
|
|
|
|
from Config import *
|
|
|
|
from Filter import addDetails
|
|
|
|
|
|
|
|
addDetails('invalid-license',
|
|
|
|
"""The specified license string is not recognized. Please refer to
|
2016-05-19 21:11:53 +02:00
|
|
|
https://spdx.org/licenses/ for the list of known licenses and
|
2011-11-29 13:08:58 +01:00
|
|
|
their exact spelling.""")
|
|
|
|
|
|
|
|
# from http://www.spdx.org/licenses/
|
|
|
|
setOption('ValidLicenses', (
|
2011-12-19 10:45:15 +01:00
|
|
|
# generated in spec file
|
|
|
|
#VALIDLICENSES
|
2011-11-29 13:08:58 +01:00
|
|
|
))
|