From b6ee7b2379929ec66c5bb0b385b95b201e578c9f Mon Sep 17 00:00:00 2001 From: Helmut Grohne Date: Sun, 17 Mar 2019 22:00:59 +0100 Subject: license the beast as gpl-2+ --- build.py | 1 + common.py | 2 ++ depcheck.py | 1 + schema.sql | 2 ++ webapp.py | 1 + 5 files changed, 7 insertions(+) diff --git a/build.py b/build.py index 86791fe..876e21b 100755 --- a/build.py +++ b/build.py @@ -1,4 +1,5 @@ #!/usr/bin/python3 +# SPDX-License-Identifier: GPL-2.0+ import argparse import collections diff --git a/common.py b/common.py index ef146c0..3b106b6 100644 --- a/common.py +++ b/common.py @@ -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 diff --git a/schema.sql b/schema.sql index a17d1f7..e76dde0 100644 --- a/schema.sql +++ b/schema.sql @@ -1,3 +1,5 @@ +-- SPDX-License-Identifier: GPL-2.0+ + CREATE TABLE depstate ( source TEXT NOT NULL, version TEXT NOT NULL, diff --git a/webapp.py b/webapp.py index e32a8af..b402186 100644 --- a/webapp.py +++ b/webapp.py @@ -1,4 +1,5 @@ #!/usr/bin/python3 +# SPDX-License-Identifier: GPL-2.0+ import datetime import lzma -- cgit v1.2.3