Lines Matching refs:LicenseGroup
143 return License(LicenseType.APACHE2, LicenseGroup.NOTICE, license_file)
145 return License(LicenseType.BOOST, LicenseGroup.NOTICE, license_file)
147 return License(LicenseType.MIT, LicenseGroup.NOTICE, license_file)
149 return License(LicenseType.BSD_LIKE, LicenseGroup.NOTICE, license_file)
151 return License(LicenseType.MPL, LicenseGroup.RECIPROCAL, license_file)
153 return License(LicenseType.UNLICENSE, LicenseGroup.PERMISSIVE, license_file)
155 return License(LicenseType.ZERO_BSD, LicenseGroup.PERMISSIVE, license_file)
157 return License(LicenseType.ZLIB, LicenseGroup.NOTICE, license_file)
160 return License(LicenseType.BSD_LIKE, LicenseGroup.NOTICE, license_file)
180 class LicenseGroup(enum.Enum): class
209 licenses.append(License(LicenseType.APACHE2, LicenseGroup.NOTICE, license_file))
211 licenses.append(License(LicenseType.BOOST, LicenseGroup.NOTICE, license_file))
213 licenses.append(License(LicenseType.BSD_LIKE, LicenseGroup.NOTICE, license_file))
215 licenses.append(License(LicenseType.MIT, LicenseGroup.NOTICE, license_file))
217 licenses.append(License(LicenseType.ZERO_BSD, LicenseGroup.PERMISSIVE, license_file))
219 licenses.append(License(LicenseType.ZLIB, LicenseGroup.NOTICE, license_file))
221 licenses.append(License(LicenseType.UNLICENSE, LicenseGroup.PERMISSIVE, license_file))
230 return [License(LicenseType.APACHE2, LicenseGroup.NOTICE, license_file)]
232 return [License(LicenseType.BOOST, LicenseGroup.NOTICE, license_file)]
234 return [License(LicenseType.MIT, LicenseGroup.NOTICE, license_file)]
236 return [License(LicenseType.ZERO_BSD, LicenseGroup.PERMISSIVE, license_file)]
238 return [License(LicenseType.BSD_LIKE, LicenseGroup.NOTICE, license_file)]
240 return [License(LicenseType.ISC, LicenseGroup.NOTICE, license_file)]
242 return [License(LicenseType.MPL, LicenseGroup.RECIPROCAL, license_file)]
244 return [License(LicenseType.UNLICENSE, LicenseGroup.PERMISSIVE, license_file)]
246 return [License(LicenseType.ZLIB, LicenseGroup.NOTICE, license_file)]