From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 128F9139360 for ; Tue, 3 Aug 2021 04:58:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5FB48E0920; Tue, 3 Aug 2021 04:58:25 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 112F2E0922 for ; Tue, 3 Aug 2021 04:58:25 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EAFD7343AEB for ; Tue, 3 Aug 2021 04:58:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 84BF983B for ; Tue, 3 Aug 2021 04:58:22 +0000 (UTC) From: "Georgy Yakovlev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Georgy Yakovlev" Message-ID: <1627966668.b4314edc5bb672f5e94dcbc996f443e98fdb4dba.gyakovlev@gentoo> Subject: [gentoo-commits] proj/cargo-ebuild:master commit in: src/ X-VCS-Repository: proj/cargo-ebuild X-VCS-Files: src/license.rs X-VCS-Directories: src/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: b4314edc5bb672f5e94dcbc996f443e98fdb4dba X-VCS-Branch: master Date: Tue, 3 Aug 2021 04:58:22 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b66ac21e-61c0-49f8-8bf8-182a0d6d8825 X-Archives-Hash: 67ebc16059e1d8ba76f060876ed27441 commit: b4314edc5bb672f5e94dcbc996f443e98fdb4dba Author: Georgy Yakovlev gentoo org> AuthorDate: Tue Aug 3 04:56:53 2021 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Tue Aug 3 04:57:48 2021 +0000 URL: https://gitweb.gentoo.org/proj/cargo-ebuild.git/commit/?id=b4314edc src/license.rs: add Apache-2.0-with-LLVM-exceptions Signed-off-by: Georgy Yakovlev gentoo.org> src/license.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/license.rs b/src/license.rs index 0789829..f4a397f 100644 --- a/src/license.rs +++ b/src/license.rs @@ -12,6 +12,7 @@ static SPDX_TO_LICENSE: phf::Map<&'static str, &'static str> = phf_map! { "Apache-1.0" => "Apache-1.0", "Apache-1.1" => "Apache-1.1", "Apache-2.0" => "Apache-2.0", + "Apache-2.0 WITH LLVM-exception" => "Apache-2.0-with-LLVM-exceptions", "APL-1.0" => "APL-1.0", "APSL-2.0" => "APSL-2", "Artistic-1.0" => "Artistic",