Skip to content

Latest commit

 

History

History
75 lines (60 loc) · 3.63 KB

COPYING.md

File metadata and controls

75 lines (60 loc) · 3.63 KB

Copying Information for Jason’s Self-love Trainer

This project uses SPDX license list short identifiers and SPDX file tags to declare its copying information.

SPDX Metadata Files

Normally, SPDX license list short identifiers and SPDX file tags are put in the files they describe. For example, in a comment at the top of this file, there’s an SPDX file tag which says that “Jason Yundt” contributed to this file.

Sometimes, for technical reasons, an SPDX license list short identifier or SPDX file tag can’t be included in the file itself. For example, Pipfile.lock is a JSON file. JSON files can’t have comments, so there isn’t a good place to put an SPDX license list short identifier or SPDX file tag in a JSON file.

The solution: SPDX Metadata Files. SPDX Metadata Files are plain text files who’s names end with “.spdx-meta”. Every SPDX Metadata File has a companion file. A SPDX Metadata File must be in the same folder as its companion file in order to be valid. The SPDX Metadata File’s name must be the companion file’s name with “.spdx-meta” added to the end. For example, consider the following directory tree:

.
├── a
│   ├── foo.txt
│   └── foo.txt.spdx-meta
├── b
│   └── bar.txt.spdx-meta
├── bar.txt
└── bar.txt.spdx-meta

In this example,

  • ./a/foo.txt.spdx-meta is an SPDX Metadata File because its name ends with “.spdx-meta”. Its companion file is ./a/foo.txt.
  • ./bar.txt.spdx-meta is also an SPDX Metadata File. Its companion file is ./bar.txt.
  • ./b/bar.txt.spdx-meta is an SPDX Metadata File, but it’s an invalid one. It’s an SPDX Metadata File because its name ends with “.spdx-meta”. It’s invalid because it has no companion file.

SPDX Metadata Files describe their companion files; SPDX license list short identifiers and SPDX file tags in SPDX Metadata Files don’t describe the SPDX Metadata Files that they’re in.

Consider that previous example again. If ./a/foo.txt.spdx-meta contained “SPDX-FileType” followed by a colon, a space and “DOCUMENTATION”, that would mean that ./a/foo.txt is a documentation file. That piece of information alone tells you nothing about ./a/foo.txt.spdx-meta.

All SPDX Metadata Files in this repo are dedicated to the public domain using the CC0 1.0 Universal Public Domain Dedication.

Location of legal tools

Any licenses that this repo uses can be found in the directory named LICENSES. A copy of the CC0 1.0 Universal Public Domain Dedication can be found in the file named CC0-1.0.txt.