diff options
author | Helmut Grohne <helmut@subdivi.de> | 2019-03-17 22:00:59 +0100 |
---|---|---|
committer | Helmut Grohne <helmut@subdivi.de> | 2019-03-17 22:00:59 +0100 |
commit | b6ee7b2379929ec66c5bb0b385b95b201e578c9f (patch) | |
tree | 8da78c34909638f865e22a1d2194178f6bb860e0 | |
parent | 62892c1d28057bfeb17e396c316bdcd34bb8a5e9 (diff) | |
download | crossqa-b6ee7b2379929ec66c5bb0b385b95b201e578c9f.tar.gz |
license the beast as gpl-2+
-rwxr-xr-x | build.py | 1 | ||||
-rw-r--r-- | common.py | 2 | ||||
-rwxr-xr-x | depcheck.py | 1 | ||||
-rw-r--r-- | schema.sql | 2 | ||||
-rw-r--r-- | webapp.py | 1 |
5 files changed, 7 insertions, 0 deletions
@@ -1,4 +1,5 @@ #!/usr/bin/python3 +# SPDX-License-Identifier: GPL-2.0+ import argparse import collections @@ -1,3 +1,5 @@ +# SPDX-License-Identifier: GPL-2.0+ + import typing ByteIterable = typing.Iterable[bytes] diff --git a/depcheck.py b/depcheck.py index 0fbc9c8..743a09d 100755 --- a/depcheck.py +++ b/depcheck.py @@ -1,4 +1,5 @@ #!/usr/bin/python3 +# SPDX-License-Identifier: GPL-2.0+ import argparse import collections @@ -1,3 +1,5 @@ +-- SPDX-License-Identifier: GPL-2.0+ + CREATE TABLE depstate ( source TEXT NOT NULL, version TEXT NOT NULL, @@ -1,4 +1,5 @@ #!/usr/bin/python3 +# SPDX-License-Identifier: GPL-2.0+ import datetime import lzma |