Arrange licensing info in repo according to REUSE 3.2 convention.
Chris Pressey
9 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 |
*.hi
|
1 | 5 |
*.o
|
2 | 6 |
*.jsmod
|
0 | |
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
1 | |
|
2 | |
Files:
|
3 | |
.gitignore
|
4 | |
bin/pail
|
5 | |
build.sh
|
6 | |
clean.sh
|
7 | |
test.sh
|
8 | |
eg/*
|
9 | |
Copyright: Chris Pressey, the original author of this work, has dedicated it to the public domain.
|
10 | |
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/**", "tests/appliances/**"]
|
|
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"
|
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=pail
|
3 | 7 |
|
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 |
find . -name "*.o" -exec rm {} \;
|
3 | 7 |
find . -name "*.hi" -exec rm {} \;
|
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 |
APPLIANCES="tests/appliances/pail.md"
|
3 | 7 |
falderal $APPLIANCES tests/Pail.md
|
0 | |
<!--
|
1 | |
SPDX-FileCopyrightText: Chris Pressey, the original author of this work, has dedicated it to the public domain.
|
2 | |
For more information, please refer to <https://unlicense.org/>
|
3 | |
SPDX-License-Identifier: Unlicense
|
4 | |
-->
|
5 | |
|
6 | 0 |
-> Functionality "Evaluate Pail Expression" is implemented by
|
7 | 1 |
-> shell command
|
8 | 2 |
-> "bin/pail %(test-body-file)"
|