Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move Covered Files to its own section #71

Merged
merged 1 commit into from
Jun 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 24 additions & 17 deletions site/content/en/spec-3.2.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,23 +37,8 @@ These are the definitions for some of the terms used in this specification:
- Copyright Notice --- a line of text that conveys copyright of a copyright
holder. Its format is defined in the [Format of Copyright
Notices](#format-of-copyright-notices) section.
- Covered File --- any file in a Project, except for
- The License Files stored in the `LICENSES/` directory.
- `COPYING` and `LICENSE`, with or without file extensions.
- The files belonging to the Project's version control system (example:
`.git/`).
- The files ignored by the version control system (example: files listed in
`.gitignore`).
- Submodules of the Project's version control system and Meson subprojects.
Each submodule and Meson subproject is understood as a separate Project.
- The files in the `.reuse/` directory in the root of the Project. This
directory MUST contain only files relevant for the operation of the REUSE
Tool.
- Symlinks and files with no data (zero-byte).
- SPDX documents in their various formats as defined in the [SPDX
Specification, Clause
4.4](https://spdx.github.io/spdx-spec/v2.3/conformance/#44-standard-data-format-requirements)
(example: `sbom.spdx.json`).
- Covered File --- a file which must contain Licensing Information, as defined
in [Covered and ignored Files](#covered-and-ignored-files).
- Commentable File --- a plain text file that can contain comments.
- Snippet --- a portion of text in a Commentable File to which different
Licensing Information applies.
Expand All @@ -76,6 +61,28 @@ These are the definitions for some of the terms used in this specification:
- TOML --- A configuration file format as available at
<https://toml.io/en/v1.0.0>.

## Covered and ignored Files

Covered Files are any file which must contain Licensing Information. This is
equal to all files in a project, with the exception of:

- The License Files stored in the `LICENSES/` directory.
- `COPYING` and `LICENSE`, with or without file extensions.
- The files belonging to the Project's version control system (example:
`.git/`).
- The files ignored by the version control system (example: files listed in
`.gitignore`).
- Submodules of the Project's version control system and Meson subprojects. Each
submodule and Meson subproject is understood as a separate Project.
- The files in the `.reuse/` directory in the root of the Project. This
directory MUST contain only files relevant for the operation of the REUSE
Tool.
- Symlinks and files with no data (zero-byte).
- SPDX documents in their various formats as defined in the [SPDX Specification,
Clause
4.4](https://spdx.github.io/spdx-spec/v2.3/conformance/#44-standard-data-format-requirements)
(example: `sbom.spdx.json`).

## License Files

A Project MUST include a License File for every license under which Covered
Expand Down
Loading