From patchwork Sun Nov 19 14:06:01 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sven Eckelmann X-Patchwork-Id: 17131 X-Patchwork-Delegate: sven@narfation.org Return-Path: X-Original-To: patchwork@open-mesh.org Delivered-To: patchwork@open-mesh.org Received: from open-mesh.org (localhost [IPv6:::1]) by open-mesh.org (Postfix) with ESMTP id 8A0C582C99; Sun, 19 Nov 2017 15:09:32 +0100 (CET) Authentication-Results: open-mesh.org; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=narfation.org header.i=@narfation.org header.b="UW2oLTn3"; dkim-atps=neutral Received-SPF: Pass (mailfrom) identity=mailfrom; client-ip=79.140.41.39; helo=v3-1039.vlinux.de; envelope-from=sven@narfation.org; receiver= Received: from v3-1039.vlinux.de (narfation.org [79.140.41.39]) by open-mesh.org (Postfix) with ESMTPS id 4C60A82ABD for ; Sun, 19 Nov 2017 15:06:15 +0100 (CET) Received: from sven-desktop.home.narfation.org (p200300C593EBC3FD792CD3ECD963554B.dip0.t-ipconnect.de [IPv6:2003:c5:93eb:c3fd:792c:d3ec:d963:554b]) by v3-1039.vlinux.de (Postfix) with ESMTPSA id D563F110119; Sun, 19 Nov 2017 15:06:07 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=narfation.org; s=20121; t=1511100368; bh=wjYH5bLJVpzAfnFQnyiVlBY44YkrXvqOulc3M7kkB+8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=UW2oLTn3lvkRvNY4KF8hA+8di2iNMyi6PB17JzweU+ki7gBCp99wlo+fWk7Wwfx62 vKDF9clC0dlod4Wxgo+rK/gxOgorOj+rRN9q1Sc4Z6o4OZfS0tOiE4ITTL9g9kyvLA iy8+oD+dtxJV13Gl3MKy7Xd2xu49EjP9KFzbqJb0= From: Sven Eckelmann To: b.a.t.m.a.n@lists.open-mesh.org Date: Sun, 19 Nov 2017 15:06:01 +0100 Message-Id: <20171119140602.24504-6-sven@narfation.org> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20171119140602.24504-1-sven@narfation.org> References: <20171119140602.24504-1-sven@narfation.org> Subject: [B.A.T.M.A.N.] [PATCH 5/6] alfred: Mark remaining files as GPL-2.0 X-BeenThere: b.a.t.m.a.n@lists.open-mesh.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: The list for a Better Approach To Mobile Ad-hoc Networking List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: The list for a Better Approach To Mobile Ad-hoc Networking Cc: Jonathan Haws , Anatoliy Lapitskiy Errors-To: b.a.t.m.a.n-bounces@lists.open-mesh.org Sender: "B.A.T.M.A.N" Some files were not explicitly marked with any license. It is therefore assumed that these are licensed under the GPL-2.0. Make this unambiguous by adding this information direct to the file using the SPDX license identifier. The FSFE REUSE *.license annotation file is used for files which don't allow comments. Signed-off-by: Sven Eckelmann --- Cc: Simon Wunderlich Cc: Jonathan Haws Cc: Andrew Lunn Cc: Anatoliy Lapitskiy Feel free to request a different license for these files. --- .gitattributes | 3 +++ CHANGELOG.license | 2 ++ README.license | 2 ++ gpsd/man/alfred-gpsd.8 | 2 ++ man/alfred.8 | 2 ++ vis/man/batadv-vis.8 | 2 ++ 6 files changed, 13 insertions(+) create mode 100644 CHANGELOG.license create mode 100644 README.license diff --git a/.gitattributes b/.gitattributes index eeef3e0..3a9a74f 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,2 +1,5 @@ +# SPDX-License-Identifier: GPL-2.0 +# License-Filename: LICENSES/preferred/GPL-2.0 + /.gitignore export-ignore /.gitattributes export-ignore diff --git a/CHANGELOG.license b/CHANGELOG.license new file mode 100644 index 0000000..a55d70e --- /dev/null +++ b/CHANGELOG.license @@ -0,0 +1,2 @@ +SPDX-License-Identifier: GPL-2.0 +License-Filename: LICENSES/preferred/GPL-2.0 diff --git a/README.license b/README.license new file mode 100644 index 0000000..a55d70e --- /dev/null +++ b/README.license @@ -0,0 +1,2 @@ +SPDX-License-Identifier: GPL-2.0 +License-Filename: LICENSES/preferred/GPL-2.0 diff --git a/gpsd/man/alfred-gpsd.8 b/gpsd/man/alfred-gpsd.8 index 3799293..87879ee 100644 --- a/gpsd/man/alfred-gpsd.8 +++ b/gpsd/man/alfred-gpsd.8 @@ -1,3 +1,5 @@ +.\" SPDX-License-Identifier: GPL-2.0 +.\" License-Filename: LICENSES/preferred/GPL-2.0 .\" Hey, EMACS: -*- nroff -*- .\" First parameter, NAME, should be all caps .\" Second parameter, SECTION, should be 1-8, maybe w/ subsection diff --git a/man/alfred.8 b/man/alfred.8 index a2c3d4c..7e31e12 100644 --- a/man/alfred.8 +++ b/man/alfred.8 @@ -1,3 +1,5 @@ +.\" SPDX-License-Identifier: GPL-2.0 +.\" License-Filename: LICENSES/preferred/GPL-2.0 .\" Hey, EMACS: -*- nroff -*- .\" First parameter, NAME, should be all caps .\" Second parameter, SECTION, should be 1-8, maybe w/ subsection diff --git a/vis/man/batadv-vis.8 b/vis/man/batadv-vis.8 index 20dead7..94be0e9 100644 --- a/vis/man/batadv-vis.8 +++ b/vis/man/batadv-vis.8 @@ -1,3 +1,5 @@ +.\" SPDX-License-Identifier: GPL-2.0 +.\" License-Filename: LICENSES/preferred/GPL-2.0 .\" Hey, EMACS: -*- nroff -*- .\" First parameter, NAME, should be all caps .\" Second parameter, SECTION, should be 1-8, maybe w/ subsection