From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mp2 ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by ms0.migadu.com with LMTPS id sBtTJ1rsjmHANAEAgWs5BA (envelope-from ) for ; Fri, 12 Nov 2021 23:36:10 +0100 Received: from aspmx1.migadu.com ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by mp2 with LMTPS id sHT0IlrsjmFFXQAAB5/wlQ (envelope-from ) for ; Fri, 12 Nov 2021 22:36:10 +0000 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by aspmx1.migadu.com (Postfix) with ESMTPS id 31B4930BB for ; Fri, 12 Nov 2021 23:36:10 +0100 (CET) Received: from localhost ([::1]:35644 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1mlf9V-0003Gx-E8 for larch@yhetil.org; Fri, 12 Nov 2021 17:36:09 -0500 Received: from eggs.gnu.org ([209.51.188.92]:34810) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mlf9O-0003GK-Ed for guix-patches@gnu.org; Fri, 12 Nov 2021 17:36:02 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:34574) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1mlf9O-0004Gx-74 for guix-patches@gnu.org; Fri, 12 Nov 2021 17:36:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1mlf9O-0008MN-4S for guix-patches@gnu.org; Fri, 12 Nov 2021 17:36:02 -0500 Subject: bug#51566: [PATCH] guix: import: Add licences and their detection. Resent-From: Ludovic =?UTF-8?Q?Court=C3=A8s?= Original-Sender: "Debbugs-submit" Resent-To: guix-patches@gnu.org Resent-Date: Fri, 12 Nov 2021 22:36:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: cc-closed 51566 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Attila Lendvai Cc: 51566-done@debbugs.gnu.org Mail-Followup-To: 51566@debbugs.gnu.org, ludo@gnu.org, attila@lendvai.name Received: via spool by 51566-done@debbugs.gnu.org id=D51566.163675653732094 (code D ref 51566); Fri, 12 Nov 2021 22:36:01 +0000 Received: (at 51566-done) by debbugs.gnu.org; 12 Nov 2021 22:35:37 +0000 Received: from localhost ([127.0.0.1]:46119 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mlf8y-0008La-PC for submit@debbugs.gnu.org; Fri, 12 Nov 2021 17:35:36 -0500 Received: from eggs.gnu.org ([209.51.188.92]:33924) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mlf8w-0008LL-9w for 51566-done@debbugs.gnu.org; Fri, 12 Nov 2021 17:35:35 -0500 Received: from [2001:470:142:3::e] (port=39650 helo=fencepost.gnu.org) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mlf8q-0004Cd-Vy; Fri, 12 Nov 2021 17:35:29 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:In-Reply-To:Date:References:Subject:To: From; bh=vVMfEKu/L2C48ENYOpeDX/aKynq8I0Qx4NZupgvuyWY=; b=Hxzi3AbteOHZ40ukMOaK dSyTbpXu4si8DkPP+cQkhB0oklkFDH0ROK2m/DIxLIXWM5iiKSSEU1Ru8t2LXRveBlzx9MyGabGyn 1ferDMCwoYQ1DaYaqtXfgfSLL2eHnVVI/lJT452U93fKyHK7B4sN/XLPv/5AXfemUl5dzthCxaIrs qSGGpJMPi6ogkLDU+ovFEJQYKVsgg4WQMGE/ggNJvmiokcwJ2HEKB+s7OejgFx5ArqTRO7OPdlGV0 ckYgZ6QSR7s6mdYgIgCI179eEBCztU2t5spNyUggs5C4CslxIJe17er5TSZJy4TvE8AJvRNUSk9mo R+J2tA805iRxzw==; Received: from 91-160-117-201.subs.proxad.net ([91.160.117.201]:63889 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mlf8q-00086m-LT; Fri, 12 Nov 2021 17:35:28 -0500 From: Ludovic =?UTF-8?Q?Court=C3=A8s?= References: <20211102100315.2730-1-attila@lendvai.name> <20211102105728.18771-1-attila@lendvai.name> Date: Fri, 12 Nov 2021 23:35:26 +0100 In-Reply-To: <20211102105728.18771-1-attila@lendvai.name> (Attila Lendvai's message of "Tue, 2 Nov 2021 11:57:29 +0100") Message-ID: <87bl2pdmtt.fsf_-_@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list X-BeenThere: guix-patches@gnu.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+larch=yhetil.org@gnu.org Sender: "Guix-patches" X-Migadu-Flow: FLOW_IN ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=yhetil.org; s=key1; t=1636756570; h=from:from:sender:sender:reply-to:subject:subject:date:date: message-id:message-id:to:to:cc:cc:mime-version:mime-version: content-type:content-type: content-transfer-encoding:content-transfer-encoding:resent-to: resent-from:resent-sender:resent-message-id:in-reply-to:in-reply-to: references:references:list-id:list-help:list-unsubscribe: list-subscribe:list-post:dkim-signature; bh=vVMfEKu/L2C48ENYOpeDX/aKynq8I0Qx4NZupgvuyWY=; b=fbOPlP8oZUNeRhmmBOVf1rlZXeyq1iiRVmdlDAOSY5YFxqjEjtPKse5fqzHChoqckuEkGw 1X1lu51BczvudzsAHbvvqJBa7mg38uUdt6UxoQ8SNOtTVT+HK1qYTGfAx9VUd4cFBMsjZs aBNyA/H01qLbcUPTIAtNMOEb9RlfnbAtYE3ksByMCmSsijUAW37IadVEr0GspW94ORv/PV s/nETVE2Q+u+K2+iYISlheg5GL8eDqlqrb0tJexrMp7QXznankP+g8f9UajQYxVD93RM62 jqjaKvYoa+4DBwtiD/EYI29lmjaq3XF1BOzIQ10Kg5IIJwnXT9xzABC0cZO51g== ARC-Seal: i=1; s=key1; d=yhetil.org; t=1636756570; a=rsa-sha256; cv=none; b=eG2ghwGoKV3DwoIz8w4iiCaWnafrqd2qByy0xDAnVBXzcyCnAylZNtTL+IGA5Cp3+TuMHP PYecBC1+k49JJdKgKoyrMpwa1keQZYJoov8YZr3Rj2rPjLBBDmi7b5VyVagqMKmsqdEdaW WqNjKN1DIO8PZr/IP21mz1A9etoTqmfM5BguY3W4qbDvjxDbrIHTFFQ1ia7SiyFhYwyL77 3b004Jq4NDT3VQxQr17jO8+d3cZRdn9xiG6DWlrstq7BNrYB3S71u+pJ+WpMVasLb11L2R INavUODo5fEvuJwCJbWWZ6mCJYnPsvu5XLN9lJcm4TcyGqADBoeMBcp45VhvDw== ARC-Authentication-Results: i=1; aspmx1.migadu.com; dkim=fail ("headers rsa verify failed") header.d=gnu.org header.s=fencepost-gnu-org header.b=Hxzi3Abt; spf=pass (aspmx1.migadu.com: domain of guix-patches-bounces@gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=guix-patches-bounces@gnu.org X-Migadu-Spam-Score: -3.53 Authentication-Results: aspmx1.migadu.com; dkim=fail ("headers rsa verify failed") header.d=gnu.org header.s=fencepost-gnu-org header.b=Hxzi3Abt; dmarc=pass (policy=none) header.from=gnu.org; spf=pass (aspmx1.migadu.com: domain of guix-patches-bounces@gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=guix-patches-bounces@gnu.org X-Migadu-Queue-Id: 31B4930BB X-Spam-Score: -3.53 X-Migadu-Scanner: scn1.migadu.com X-TUID: bLFk4S/805xN Hi, Attila Lendvai skribis: > Add a comment that mentions "MIT" so that people who grep for MIT end up = there. > > * guix/import/utils.scm (spdx-string->license): Identify more > licenses (CC-BY-4.0, Freetype, HPND). I tweaked the commit log and applied. > i have deleted the problematic JSON license. You did well! > i have also opened an issue at the problematic project: > https://issues.apache.org/jira/browse/ARROW-14550 Perfect. Thank you, Ludo=E2=80=99.