|
1 | 1 | # SPDX-License-Identifier: Apache-2.0
|
2 | 2 | # SPDX-FileCopyrightText: 2021 The Elixir Team
|
3 | 3 |
|
| 4 | +excludes: |
| 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 | + - pattern: "man/*" |
| 19 | + reason: "DOCUMENTATION_OF" |
| 20 | + comment: "Documentation" |
| 21 | + - pattern: ".github/*" |
| 22 | + reason: "BUILD_TOOL_OF" |
| 23 | + comment: "Documentation" |
| 24 | + - pattern: ".ort/*" |
| 25 | + reason: "BUILD_TOOL_OF" |
| 26 | + comment: "Documentation" |
| 27 | + |
4 | 28 | curations:
|
5 | 29 | license_findings:
|
| 30 | + # Logos |
6 | 31 | - path: "lib/elixir/pages/images/logo.png"
|
7 |
| - reason: "INCORRECT" |
| 32 | + reason: "NOT_DETECTED" |
| 33 | + comment: "Apply Trademark Policy to Elixir Logo" |
| 34 | + detected_license: "NONE" |
| 35 | + concluded_license: "LicenseRef-elixir-trademark-policy" |
| 36 | + - path: "lib/elixir/scripts/windows_installer/assets/Elixir.ico" |
| 37 | + reason: "NOT_DETECTED" |
8 | 38 | comment: "Apply Trademark Policy to Elixir Logo"
|
9 | 39 | detected_license: "NONE"
|
10 | 40 | concluded_license: "LicenseRef-elixir-trademark-policy"
|
11 | 41 |
|
| 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 | + # Documentation Images |
| 50 | + - path: "lib/elixir/pages/images/**/*.png" |
| 51 | + reason: "NOT_DETECTED" |
| 52 | + comment: "Apply default license to all images" |
| 53 | + detected_license: "NONE" |
| 54 | + concluded_license: "Apache-2.0" |
| 55 | + |
| 56 | + # 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 | + - path: "lib/elixir/test/elixir/fixtures/**/*" |
| 63 | + reason: "NOT_DETECTED" |
| 64 | + comment: "Apply default license to test fixtures" |
| 65 | + detected_license: "NONE" |
| 66 | + 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 | + |
| 78 | + # Unicode |
| 79 | + - path: "lib/elixir/unicode/*.txt" |
| 80 | + reason: "NOT_DETECTED" |
| 81 | + comment: "Apply default license to unicode files" |
| 82 | + detected_license: "NONE" |
| 83 | + concluded_license: "LicenseRef-scancode-unicode" |
| 84 | + |
| 85 | + # Wrongly Identified |
| 86 | + - path: "LICENSES/LicenseRef-elixir-trademark-policy.txt" |
| 87 | + reason: "INCORRECT" |
| 88 | + comment: "Correct LicenseRef" |
| 89 | + detected_license: "LicenseRef-scancode-proprietary-license" |
| 90 | + concluded_license: "LicenseRef-elixir-trademark-policy" |
12 | 91 | - path: "lib/elixir/pages/references/library-guidelines.md"
|
13 | 92 | reason: "INCORRECT"
|
14 | 93 | comment: |
|
15 | 94 | The guide mentions multiple licenses for users to choose from.
|
16 | 95 | It however is not licensed itself by the mentioned licenses.
|
17 | 96 | concluded_license: "Apache-2.0"
|
18 |
| - |
19 |
| - - path: "**/*" |
| 97 | + - path: ".gitignore" |
| 98 | + reason: "INCORRECT" |
| 99 | + comment: "Ignored by ScanCode" |
| 100 | + detected_license: "NONE" |
| 101 | + concluded_license: "Apache-2.0" |
| 102 | + - path: ".gitattributes" |
| 103 | + reason: "INCORRECT" |
| 104 | + comment: "Ignored by ScanCode" |
| 105 | + detected_license: "NONE" |
| 106 | + concluded_license: "Apache-2.0" |
| 107 | + - path: "lib/elixir/scripts/windows_installer/.gitignore" |
20 | 108 | reason: "INCORRECT"
|
21 |
| - comment: "Apply default license to all unknown files" |
| 109 | + comment: "Ignored by ScanCode" |
22 | 110 | detected_license: "NONE"
|
23 | 111 | concluded_license: "Apache-2.0"
|
0 commit comments