mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-15 23:01:02 +00:00
deny: Simplify license handling
Deny all copyleft licenses except for the MPL-2.0 and add an exception for gst-plugin-threadshare to allow LGPL-2.1. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1350>
This commit is contained in:
parent
471901e4ca
commit
9bf24a715b
1 changed files with 8 additions and 9 deletions
17
deny.toml
17
deny.toml
|
@ -19,16 +19,10 @@ ignore = [
|
|||
[licenses]
|
||||
unlicensed = "deny"
|
||||
allow = [
|
||||
"Apache-2.0",
|
||||
"MPL-2.0",
|
||||
]
|
||||
deny = [
|
||||
"GPL-1.0",
|
||||
"GPL-2.0",
|
||||
"GPL-3.0",
|
||||
"AGPL-1.0",
|
||||
"AGPL-3.0",
|
||||
]
|
||||
copyleft = "allow"
|
||||
default = "deny"
|
||||
copyleft = "deny"
|
||||
allow-osi-fsf-free = "either"
|
||||
confidence-threshold = 0.8
|
||||
|
||||
|
@ -46,6 +40,11 @@ allow = ["AGPL-3.0"]
|
|||
name = "dssim-core"
|
||||
version = "3.2"
|
||||
|
||||
# Allow LGPL 2.1 for the threadshare plugin as it includes some LGPL code
|
||||
[[licenses.exceptions]]
|
||||
allow = ["LGPL-2.1"]
|
||||
name = "gst-plugin-threadshare"
|
||||
|
||||
[bans]
|
||||
multiple-versions = "deny"
|
||||
highlight = "all"
|
||||
|
|
Loading…
Reference in a new issue