Arrange licensing info in repo according to REUSE 3.2 convention.
Chris Pressey
8 months ago
|
0 |
# SPDX-FileCopyrightText: Chris Pressey, the original author of this work, has dedicated it to the public domain.
|
|
1 |
# For more information, please refer to <https://unlicense.org/>
|
|
2 |
# SPDX-License-Identifier: Unlicense
|
|
3 |
|
0 | 4 |
*.pyc
|
1 | 5 |
*.exe
|
2 | 6 |
*.hi
|
0 | |
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
1 | |
|
2 | |
Files:
|
3 | |
.gitignore
|
4 | |
bin/equipage
|
5 | |
eg/*
|
6 | |
build.sh
|
7 | |
clean.sh
|
8 | |
test.sh
|
9 | |
Copyright: Chris Pressey, the original author of this work, has dedicated it to the public domain.
|
10 | |
License: Unlicense
|
11 | |
|
12 | |
Files:
|
13 | |
impl/equipage.purs/*
|
14 | |
impl/equipage.py/*
|
15 | |
Copyright: Xavier Pinho, the original author of this work, has dedicated it to the public domain.
|
16 | |
License: Unlicense
|
|
0 |
# SPDX-FileCopyrightText: Chris Pressey, the original author of this work, has dedicated it to the public domain.
|
|
1 |
# For more information, please refer to <https://unlicense.org/>
|
|
2 |
# SPDX-License-Identifier: Unlicense
|
|
3 |
|
|
4 |
version = 1
|
|
5 |
|
|
6 |
[[annotations]]
|
|
7 |
path = "eg/**"
|
|
8 |
precedence = "aggregate"
|
|
9 |
SPDX-FileCopyrightText = "Chris Pressey, the original author of this work, has dedicated it to the public domain."
|
|
10 |
SPDX-License-Identifier = "Unlicense"
|
|
11 |
|
|
12 |
[[annotations]]
|
|
13 |
path = ["impl/equipage.purs/**", "impl/equipage.py/**"]
|
|
14 |
precedence = "aggregate"
|
|
15 |
SPDX-FileCopyrightText = "Xavier Pinho, the original author of this work, has dedicated it to the public domain."
|
|
16 |
SPDX-License-Identifier = "Unlicense"
|
0 | 0 |
#!/bin/sh
|
|
1 |
|
|
2 |
# SPDX-FileCopyrightText: Chris Pressey, the original author of this work, has dedicated it to the public domain.
|
|
3 |
# For more information, please refer to <https://unlicense.org/>
|
|
4 |
# SPDX-License-Identifier: Unlicense
|
1 | 5 |
|
2 | 6 |
THIS=`realpath $0`
|
3 | 7 |
DIR=`dirname $THIS`
|
0 | 0 |
#!/bin/sh
|
|
1 |
|
|
2 |
# SPDX-FileCopyrightText: Chris Pressey, the original author of this work, has dedicated it to the public domain.
|
|
3 |
# For more information, please refer to <https://unlicense.org/>
|
|
4 |
# SPDX-License-Identifier: Unlicense
|
1 | 5 |
|
2 | 6 |
PROG=equipage
|
3 | 7 |
|
0 | 0 |
#!/bin/sh
|
1 | 1 |
|
|
2 |
# SPDX-FileCopyrightText: Chris Pressey, the original author of this work, has dedicated it to the public domain.
|
|
3 |
# For more information, please refer to <https://unlicense.org/>
|
|
4 |
# SPDX-License-Identifier: Unlicense
|
|
5 |
|
2 | 6 |
falderal README.md || exit 1
|