From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752265AbdKKW3n (ORCPT ); Sat, 11 Nov 2017 17:29:43 -0500 Received: from mail-qt0-f195.google.com ([209.85.216.195]:56043 "EHLO mail-qt0-f195.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751733AbdKKW3m (ORCPT ); Sat, 11 Nov 2017 17:29:42 -0500 X-Google-Smtp-Source: AGs4zMYwzuronymRnaHJTUBgbr1N2VvzgOjpFUFcOSvWwHGKW68PDIsHQ41965c/u3vXMVLFV+mO9JQrwTZkh2iXED4= MIME-Version: 1.0 In-Reply-To: <20171111212159.GA25689@silk.coyote.org> References: <20171111212159.GA25689@silk.coyote.org> From: Charlemagne Lasse Date: Sat, 11 Nov 2017 23:29:40 +0100 Message-ID: Subject: Re: Adding LICENSES folder for REUSE To: Jonas Oberg Cc: linux-kernel@vger.kernel.org, Greg Kroah-Hartman , carmenbianca@fsfe.org, Masahiro Yamada Content-Type: text/plain; charset="UTF-8" Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi, 2017-11-11 22:21 GMT+01:00 Jonas Oberg : > I wouldn't do that now. Adding SPDX license identifiers is in most cases > quite sufficient and something which I would encourage first. > > What you mention about the LICENSES/ folder and the License-Filename > tag (which can be repeated) is an addition which is a bit more specific, > especially for BSD licenses where the SPDX license identifier alone does > not convey information about the specific "attribution requirement" of > each licensor. > > Most often though, as you find the BSD licenses in the source code headers, > we wouldn't want the license text separated from them, and it would be > contrary to the REUSE principles to do so. Thank you for the fast reply. Just as summary: 1. SPDX license identifier first 2. Full BSD/MIT/ISC license in source files is sufficient and don't require License-Filename 3. verbatim licenses which are not in source files (GPL, LGPL, MPL, ...) should be in LICENSES/ 4. License-Filename tag can be added later and multiple are allowed per file If this understanding is correct then I would still propose that the LICENSES folder is prepared with the previously identified long licenses (which are currently not stored completely in the source files): mkdir LICENSES curl -o LICENSES/GPL-1.0.txt https://www.gnu.org/licenses/gpl-1.0.txt curl -o LICENSES/GPL-2.0.txt https://www.gnu.org/licenses/gpl-2.0.txt curl -o LICENSES/MPL-1.1.txt https://www.mozilla.org/media/MPL/1.1/index.0c5913925d40.txt curl -o LICENSES/LGPL-2.0.txt https://www.gnu.org/licenses/lgpl-2.0.txt curl -o LICENSES/LGPL-2.1.txt https://www.gnu.org/licenses/lgpl-2.1.txt $EDITOR COPYING # change file to reference LICENSES/GPL-2.0.txt ? git add LICENSES COPYING git commit Thanks, Charlemagne Lasse