From 695d84397b68cc003186e22f395caa378b06bc75 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Wed, 1 May 2019 11:47:13 +0100 Subject: bitbake: Drop duplicate license boilerplace text With the introduction of SPDX-License-Identifier headers, we don't need a ton of header boilerplate in every file. Simplify the files and rely on the top level for the full licence text. Signed-off-by: Richard Purdie --- lib/hashserv/__init__.py | 12 ------------ lib/hashserv/tests.py | 12 ------------ 2 files changed, 24 deletions(-) (limited to 'lib/hashserv') diff --git a/lib/hashserv/__init__.py b/lib/hashserv/__init__.py index 6f4a04696..fdc9ced9f 100644 --- a/lib/hashserv/__init__.py +++ b/lib/hashserv/__init__.py @@ -2,18 +2,6 @@ # # SPDX-License-Identifier: GPL-2.0-only # -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License version 2 as -# published by the Free Software Foundation. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License along -# with this program; if not, write to the Free Software Foundation, Inc., -# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. from http.server import BaseHTTPRequestHandler, HTTPServer import contextlib diff --git a/lib/hashserv/tests.py b/lib/hashserv/tests.py index b02219518..8300a2559 100644 --- a/lib/hashserv/tests.py +++ b/lib/hashserv/tests.py @@ -4,18 +4,6 @@ # # SPDX-License-Identifier: GPL-2.0-only # -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License version 2 as -# published by the Free Software Foundation. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License along -# with this program; if not, write to the Free Software Foundation, Inc., -# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. import unittest import threading -- cgit 1.2.3-korg