From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:34060) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hd4ou-0005T3-4i for guix-patches@gnu.org; Mon, 17 Jun 2019 23:30:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hd4ot-0008Kh-0B for guix-patches@gnu.org; Mon, 17 Jun 2019 23:30:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:58275) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hd4os-0008KI-Su for guix-patches@gnu.org; Mon, 17 Jun 2019 23:30:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hd4os-0002WJ-Ma for guix-patches@gnu.org; Mon, 17 Jun 2019 23:30:02 -0400 Subject: [bug#36273] Clarify spdlog's license Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:33871) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hd4o2-0005Oi-1A for guix-patches@gnu.org; Mon, 17 Jun 2019 23:29:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hd4nz-0007ew-GE for guix-patches@gnu.org; Mon, 17 Jun 2019 23:29:09 -0400 Received: from mx1.riseup.net ([198.252.153.129]:47918) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hd4nz-0007dl-7n for guix-patches@gnu.org; Mon, 17 Jun 2019 23:29:07 -0400 From: Meiyo Peng Date: Tue, 18 Jun 2019 11:28:59 +0800 Message-ID: <87y31zpo5g.fsf@riseup.net> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 36273@debbugs.gnu.org Cc: =?UTF-8?Q?G=C3=A1bor?= Boskovits --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hi G=C3=A1bor, The spdlog package contains a bundled fmt library. I tried to unbundle fmt before, but the maintaining work does not worth it. This patch clarify it's license. I notice you pushed several Sway related packages into the master branch, but none of them has been submitted to the mailing list. Would you please send you patches to the mailing list first in the future? You also pushed mako into master, but there is already a discussion about mako here: https://lists.gnu.org/archive/html/guix-patches/2019-03/msg00567.html. We should build mako from it's git master or wait until the next point release. -- Meiyo Peng https://www.pengmeiyu.com/ --=-=-= Content-Type: text/x-patch; charset=utf-8 Content-Disposition: attachment; filename=0001-gnu-spdlog-Clarify-license.patch Content-Transfer-Encoding: quoted-printable >From 8e3714e847e62e8bec86f2f90cf6e12399280391 Mon Sep 17 00:00:00 2001 From: Meiyo Peng Date: Tue, 18 Jun 2019 11:07:50 +0800 Subject: [PATCH] gnu: spdlog: Clarify license. * gnu/packages/logging.scm (spdlog): Clarify license of the bundled fmt library. --- gnu/packages/logging.scm | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/gnu/packages/logging.scm b/gnu/packages/logging.scm index e936733136..24a47567d0 100644 --- a/gnu/packages/logging.scm +++ b/gnu/packages/logging.scm @@ -5,6 +5,7 @@ ;;; Copyright =C2=A9 2017 Eric Bavier ;;; Copyright =C2=A9 2018 Tobias Geerinckx-Rice ;;; Copyright =C2=A9 2019 G=C3=A1bor Boskovits +;;; Copyright =C2=A9 2019 Meiyo Peng ;;; ;;; This file is part of GNU Guix. ;;; @@ -205,5 +206,8 @@ windows in a terminal, colorize, filter and merge.") (list "-DSPDLOG_BUILD_BENCH=3DOFF"))) (home-page "https://github.com/gabime/spdlog") (synopsis "Fast C++ logging library") - (description "Spdlog is a very fast header-only/compiled C++ logging l= ibrary.") - (license license:expat))) ; MIT license + (description "Spdlog is a very fast header-only/compiled C++ logging +library.") + ;; spdlog is under Expat license, but the bundled fmt library in + ;; "include/spdlog/fmt/bundled" is under BSD 2 clause license. + (license (list license:expat license:bsd-2)))) --=20 2.22.0 --=-=-=--