logo

deblob

remove binary executables from a directory git clone https://hacktivis.me/git/deblob.git
commit: 959fecd84a24ea40a1f1a5fe1dbeb1f6ee868423
parent 20690cf030363e7cdae309640f97e09592e7991f
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Fri, 30 Sep 2022 01:31:21 +0200

Add missing copyright notices

Diffstat:

A.reuse/dep58++++++++
Mtest/fixtures/hello.py3+++
Mtest/python_compile.py3+++
3 files changed, 14 insertions(+), 0 deletions(-)

diff --git a/.reuse/dep5 b/.reuse/dep5 @@ -0,0 +1,8 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: deblob +Upstream-Contact: deblob Authors <https://hacktivis.me/projects/deblob> +Source: https://hacktivis.me/projects/deblob + +Files: test/fixtures/pyc/*.pyc test/fixtures/hello.luac* +Copyright: 2019-2022 deblob Authors <https://hacktivis.me/projects/deblob> +License: BSD-3-Clause diff --git a/test/fixtures/hello.py b/test/fixtures/hello.py @@ -1,2 +1,5 @@ #!/usr/bin/python +# SPDX-FileCopyrightText: 2019-2022 deblob Authors <https://hacktivis.me/projects/deblob> +# SPDX-License-Identifier: BSD-3-Clause + print("hello world") diff --git a/test/python_compile.py b/test/python_compile.py @@ -1,4 +1,7 @@ #!/usr/bin/python +# SPDX-FileCopyrightText: 2019-2022 deblob Authors <https://hacktivis.me/projects/deblob> +# SPDX-License-Identifier: BSD-3-Clause + import py_compile import sys