forked from pool/rpmlint
Dirk Mueller
5739b595b1
OBS-URL: https://build.opensuse.org/package/show/devel:openSUSE:Factory:rpmlint/rpmlint?expand=0&rev=386
18 lines
459 B
Python
18 lines
459 B
Python
# -*- 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
|
|
https://spdx.org/licenses/ for the list of known licenses and
|
|
their exact spelling.""")
|
|
|
|
# from http://www.spdx.org/licenses/
|
|
setOption('ValidLicenses', (
|
|
# generated in spec file
|
|
#VALIDLICENSES
|
|
))
|