3
3
4
4
excludes :
5
5
paths :
6
- - pattern : " lib/elixir/pages/**/*"
7
- reason : " DOCUMENTATION_OF"
8
- comment : " Documentation"
9
- - pattern : " lib/elixir/scripts/**/*"
10
- reason : " BUILD_TOOL_OF"
11
- comment : " Build Tool"
12
- - pattern : " lib/ex_unit/examples/**/*"
13
- reason : " EXAMPLE_OF"
14
- comment : " Example"
15
- - pattern : " lib/*/test/**/*"
16
- reason : " TEST_OF"
17
- comment : " Tests"
18
6
- pattern : " man/*"
19
7
reason : " DOCUMENTATION_OF"
20
8
comment : " Documentation"
@@ -25,8 +13,64 @@ excludes:
25
13
reason : " BUILD_TOOL_OF"
26
14
comment : " Documentation"
27
15
16
+ # Unfortunately we'll have to repeat all package level excludes here
17
+ # Make sure to keep them in sync with the package configuration in
18
+ # .ort/package-configurations
19
+ - pattern : " lib/*/pages/**/*"
20
+ reason : " DOCUMENTATION_OF"
21
+ comment : " Documentation"
22
+ - pattern : " lib/*/test/**/*"
23
+ reason : " TEST_OF"
24
+ comment : " Tests"
25
+ - pattern : " lib/*/scripts/**/*"
26
+ reason : " BUILD_TOOL_OF"
27
+ comment : " Build Tool"
28
+ - pattern : " lib/*/examples/**/*"
29
+ reason : " EXAMPLE_OF"
30
+ comment : " Example"
31
+
28
32
curations :
29
33
license_findings :
34
+ # Version File
35
+ - path : " VERSION"
36
+ reason : " NOT_DETECTED"
37
+ comment : " Apply Trademark Policy to VERSION file"
38
+ detected_license : " NONE"
39
+ concluded_license : " Apache-2.0"
40
+
41
+ # Wrongly Identified
42
+ - path : " .gitignore"
43
+ reason : " INCORRECT"
44
+ comment : " Ignored by ScanCode"
45
+ detected_license : " NONE"
46
+ concluded_license : " Apache-2.0"
47
+ - path : " .gitattributes"
48
+ reason : " INCORRECT"
49
+ comment : " Ignored by ScanCode"
50
+ detected_license : " NONE"
51
+ concluded_license : " Apache-2.0"
52
+ - path : " CONTRIBUTING.md"
53
+ reason : " INCORRECT"
54
+ comment : " Wrongly identified TSL license"
55
+ detected_license : " Apache-2.0 OR NOASSERTION OR LicenseRef-scancode-tsl-2020"
56
+ concluded_license : " Apache-2.0"
57
+ - path : " OPEN_SOURCE_POLICY.md"
58
+ reason : " INCORRECT"
59
+ comment : " Wrongly identified NOASSERTION"
60
+ detected_license : " NOASSERTION"
61
+ concluded_license : " Apache-2.0"
62
+
63
+ # Unfortunately we'll have to repeat all package level license curations here
64
+ # Make sure to keep them in sync with the package configuration in
65
+ # .ort/package-configurations
66
+
67
+ # Test Fixtures
68
+ - path : " lib/*/test/fixtures/**/*"
69
+ reason : " NOT_DETECTED"
70
+ comment : " Apply default license to test fixtures"
71
+ detected_license : " NONE"
72
+ concluded_license : " Apache-2.0"
73
+
30
74
# Logos
31
75
- path : " lib/elixir/pages/images/logo.png"
32
76
reason : " NOT_DETECTED"
@@ -39,13 +83,6 @@ curations:
39
83
detected_license : " NONE"
40
84
concluded_license : " LicenseRef-elixir-trademark-policy"
41
85
42
- # Version File
43
- - path : " VERSION"
44
- reason : " NOT_DETECTED"
45
- comment : " Apply Trademark Policy to VERSION file"
46
- detected_license : " NONE"
47
- concluded_license : " Apache-2.0"
48
-
49
86
# Documentation Images
50
87
- path : " lib/elixir/pages/images/**/*.png"
51
88
reason : " NOT_DETECTED"
@@ -54,26 +91,11 @@ curations:
54
91
concluded_license : " Apache-2.0"
55
92
56
93
# Test Fixtures
57
- - path : " lib/eex/test/fixtures/**/*"
58
- reason : " NOT_DETECTED"
59
- comment : " Apply default license to test fixtures"
60
- detected_license : " NONE"
61
- concluded_license : " Apache-2.0"
62
94
- path : " lib/elixir/test/elixir/fixtures/**/*"
63
95
reason : " NOT_DETECTED"
64
96
comment : " Apply default license to test fixtures"
65
97
detected_license : " NONE"
66
98
concluded_license : " Apache-2.0"
67
- - path : " lib/ex_unit/test/fixtures/**/*"
68
- reason : " NOT_DETECTED"
69
- comment : " Apply default license to test fixtures"
70
- detected_license : " NONE"
71
- concluded_license : " Apache-2.0"
72
- - path : " lib/mix/test/fixtures/**/*"
73
- reason : " NOT_DETECTED"
74
- comment : " Apply default license to test fixtures"
75
- detected_license : " NONE"
76
- concluded_license : " Apache-2.0"
77
99
78
100
# Unicode
79
101
- path : " lib/elixir/unicode/*.txt"
@@ -89,57 +111,8 @@ curations:
89
111
The guide mentions multiple licenses for users to choose from.
90
112
It however is not licensed itself by the mentioned licenses.
91
113
concluded_license : " Apache-2.0"
92
- - path : " .gitignore"
93
- reason : " INCORRECT"
94
- comment : " Ignored by ScanCode"
95
- detected_license : " NONE"
96
- concluded_license : " Apache-2.0"
97
- - path : " .gitattributes"
98
- reason : " INCORRECT"
99
- comment : " Ignored by ScanCode"
100
- detected_license : " NONE"
101
- concluded_license : " Apache-2.0"
102
114
- path : " lib/elixir/scripts/windows_installer/.gitignore"
103
115
reason : " INCORRECT"
104
116
comment : " Ignored by ScanCode"
105
117
detected_license : " NONE"
106
118
concluded_license : " Apache-2.0"
107
- - path : " CONTRIBUTING.md"
108
- reason : " INCORRECT"
109
- comment : " Wrongly identified TSL license"
110
- detected_license : " Apache-2.0 OR NOASSERTION OR LicenseRef-scancode-tsl-2020"
111
- concluded_license : " Apache-2.0"
112
- - path : " OPEN_SOURCE_POLICY.md"
113
- reason : " INCORRECT"
114
- comment : " Wrongly identified NOASSERTION"
115
- detected_license : " NOASSERTION"
116
- concluded_license : " Apache-2.0"
117
-
118
- packages :
119
- - id : " SpdxDocumentFile:The Elixir Team:elixir-lang:"
120
- curations :
121
- concluded_license : " Apache-2.0 AND LicenseRef-scancode-unicode"
122
- - id : " SpdxDocumentFile:The Elixir Team:eex:"
123
- curations :
124
- concluded_license : " Apache-2.0"
125
- is_metadata_only : true
126
- - id : " SpdxDocumentFile:The Elixir Team:elixir:"
127
- curations :
128
- concluded_license : " Apache-2.0 AND LicenseRef-scancode-unicode"
129
- is_metadata_only : true
130
- - id : " SpdxDocumentFile:The Elixir Team:exunit:"
131
- curations :
132
- concluded_license : " Apache-2.0"
133
- is_metadata_only : true
134
- - id : " SpdxDocumentFile:The Elixir Team:iex:"
135
- curations :
136
- concluded_license : " Apache-2.0"
137
- is_metadata_only : true
138
- - id : " SpdxDocumentFile:The Elixir Team:logger:"
139
- curations :
140
- concluded_license : " Apache-2.0"
141
- is_metadata_only : true
142
- - id : " SpdxDocumentFile:The Elixir Team:mix:"
143
- curations :
144
- concluded_license : " Apache-2.0"
145
- is_metadata_only : true
0 commit comments