mirror of
https://github.com/BinomialLLC/basis_universal.git
synced 2026-06-08 08:33:53 +00:00
This PR simply wildcards files in the repository in the metainformation .reuse/dep5 to express copyright and licensing information for files that can't easily be parsed by REUSE. If any of the assertions made in .reuse/dep5 are incorrect, we should fix that before this PR is accepted. This approach works OK, though a more intrusive, but superior version of this PR would simplify copyright / license statements as follows, and make sure they're present in every file: // Copyright 2019-2020 Binomial LLC // SPDX-License-Identifier: Apache-2.0 (or whatever the appropriate copyright owner and license are for each file). If that were done, the wildcarding in .reuse/dep5 would not be required to pass REUSE.
21 lines
882 B
Plaintext
21 lines
882 B
Plaintext
Copyright (c) <year> <copyright holders>
|
|
|
|
This software is provided 'as-is', without any express or implied
|
|
warranty. In no event will the authors be held liable for any damages
|
|
arising from the use of this software.
|
|
|
|
Permission is granted to anyone to use this software for any purpose,
|
|
including commercial applications, and to alter it and redistribute it
|
|
freely, subject to the following restrictions:
|
|
|
|
1. The origin of this software must not be misrepresented; you must not
|
|
claim that you wrote the original software. If you use this software
|
|
in a product, an acknowledgment in the product documentation would be
|
|
appreciated but is not required.
|
|
|
|
2. Altered source versions must be plainly marked as such, and must not be
|
|
misrepresented as being the original software.
|
|
|
|
3. This notice may not be removed or altered from any source
|
|
distribution.
|