From debbugs-submit-bounces@debbugs.gnu.org Mon Jun 17 23:29:17 2019 Received: (at submit) by debbugs.gnu.org; 18 Jun 2019 03:29:17 +0000 Received: from localhost ([127.0.0.1]:43586 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hd4o4-0002Ud-Li for submit@debbugs.gnu.org; Mon, 17 Jun 2019 23:29:16 -0400 Received: from lists.gnu.org ([209.51.188.17]:58083) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hd4o3-0002UV-6p for submit@debbugs.gnu.org; Mon, 17 Jun 2019 23:29:11 -0400 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 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.1 required=5.0 tests=BAYES_50,RCVD_IN_DNSWL_LOW, UNPARSEABLE_RELAY,URIBL_BLOCKED autolearn=disabled version=3.3.2 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 Received: from capuchin.riseup.net (capuchin-pn.riseup.net [10.0.1.176]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client CN "*.riseup.net", Issuer "COMODO RSA Domain Validation Secure Server CA" (verified OK)) by mx1.riseup.net (Postfix) with ESMTPS id E86AB1A1F0F; Mon, 17 Jun 2019 20:29:04 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=riseup.net; s=squak; t=1560828545; bh=71VguvejVvE+gYTj+7y0869RvDPxUyBAiVSL7gTQRPA=; h=From:To:Cc:Subject:Date:From; b=C/MQUlMjqe4IsubfzYPc2Wr39iothkyi30/AEqHXqlBYUu5xAnZGqxjalJpB7I03b bphc/h51WIefiFTy9cFlWhD7YvWZCbPE/UZICfzz70suyfvR9Wgxnzpa7mxeTSvDc+ 4m9PNV0bQLxBsm8JEmQR9IkP0nBtq2RFPO1dZ4yU= X-Riseup-User-ID: 86CCB75BD3FF3D56354D7BB8B936E13441E01D69BBFBF5DC0AB7FB9FD7070CFC Received: from [127.0.0.1] (localhost [127.0.0.1]) by capuchin.riseup.net (Postfix) with ESMTPSA id EB971120961; Mon, 17 Jun 2019 20:29:03 -0700 (PDT) Received: from localhost (localhost [local]) by localhost (OpenSMTPD) with ESMTPA id 86c48572; Tue, 18 Jun 2019 03:28:59 +0000 (UTC) From: Meiyo Peng To: guix-patches@gnu.org Subject: Clarify spdlog's license Date: Tue, 18 Jun 2019 11:28:59 +0800 Message-ID: <87y31zpo5g.fsf@riseup.net> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 198.252.153.129 X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit Cc: =?utf-8?Q?G=C3=A1bor?= Boskovits X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.1 (/) --=-=-= 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 --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Wed Jun 19 04:06:09 2019 Received: (at submit) by debbugs.gnu.org; 19 Jun 2019 08:06:09 +0000 Received: from localhost ([127.0.0.1]:45972 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hdVbc-0001Ia-Sm for submit@debbugs.gnu.org; Wed, 19 Jun 2019 04:06:09 -0400 Received: from lists.gnu.org ([209.51.188.17]:56215) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hdVbb-0001IQ-8D for submit@debbugs.gnu.org; Wed, 19 Jun 2019 04:06:07 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:39574) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hdVbZ-0002L0-Lw for guix-patches@gnu.org; Wed, 19 Jun 2019 04:06:07 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50,FREEMAIL_FROM, HTML_MESSAGE,URIBL_BLOCKED autolearn=disabled version=3.3.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hdVbX-0006jp-UG for guix-patches@gnu.org; Wed, 19 Jun 2019 04:06:05 -0400 Received: from mail-ed1-x52b.google.com ([2a00:1450:4864:20::52b]:41719) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hdVbX-0006hM-JL for guix-patches@gnu.org; Wed, 19 Jun 2019 04:06:03 -0400 Received: by mail-ed1-x52b.google.com with SMTP id p15so25795252eds.8 for ; Wed, 19 Jun 2019 01:06:03 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=b6jxAnbbLf65RbM2PutdeCcNhDTkuk7RPGtmO7a5p0U=; b=TIAvai3asyP+ghHRWIIUE1udCKGS/fP3i3BXWIlvHNuUnIVDUQB5J77TqsMIwSHFmW VSys7nI7T8YZokwIvMMZgNm1jYtUMo1V6IJqCSZDiKk1cGDAbjaNfJ3t3tkg+VYpq1T/ YhA8sVNbTJnUJRcrZmAr/h+C9jGv7MZ2dy47glcC8xTX0wy0DMeUI6/qxr/vQnVeQLnV aTXeXgZgkhYbGboh5ZBQbdT2wfzkZt5z0YjpfBisCtMeDD/c72WB+9iFvBi8bKED1kbw 3V53g77s8eZPALUZy53+E7Ond6O2y78LPOMQK78QUsSxmKzzXRdYImNKTxYXP5ThDwtv SsUQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=b6jxAnbbLf65RbM2PutdeCcNhDTkuk7RPGtmO7a5p0U=; b=e4tX7u81n/ojJWplEO3cIUOKnf8fp8W2F4gin6bPQAalIHXlDgt/2JIR3OU/9wQ99w ZGH7qK79oSiropAuit9Kg64+YszkTK4jBBa3mFSRa8EMiytkHgeD9uJVScxbp66zjDwS nhly79O/TUfTmovF1XRAurt8KjFOscznYuZWXnamPXiAOoI7bxju9Y31FNlLN9xs+shU phpQRipMq4eVciDdwzaznmWhmLAvHSfsVgeTW3qoWDknHRAc+y88idNwFD8NPXHOUD5X Dfm425dOoI8fOdnVi0o5ki9XfW+obx522NVYnlJbleNhXJvs4sy9oaQ7o5OQ1nWYu1pS KJPA== X-Gm-Message-State: APjAAAX+hbLxMs/kkblyRNQdPQscmEaYrQQyTPXVcmdQ1FpgPKlFKMvz aeDliYMOoJK0uoYUvhIa4J6+aeIO5rxYEAuL6Q== X-Google-Smtp-Source: APXvYqw3mVeXuojp283tn0S1QvVkd19JZGj2nNs7JGIgZ7W6R9Fg/vNf3IzRIRIUfH7A5DAr3njwUmz5qsYEyDKSF+A= X-Received: by 2002:a17:906:d052:: with SMTP id bo18mr23918370ejb.311.1560931561943; Wed, 19 Jun 2019 01:06:01 -0700 (PDT) MIME-Version: 1.0 References: <87y31zpo5g.fsf@riseup.net> In-Reply-To: <87y31zpo5g.fsf@riseup.net> From: =?UTF-8?Q?G=C3=A1bor_Boskovits?= Date: Wed, 19 Jun 2019 10:05:47 +0200 Message-ID: Subject: Re: Clarify spdlog's license To: Meiyo Peng Content-Type: multipart/alternative; boundary="00000000000044b711058ba8b3a6" X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 2a00:1450:4864:20::52b X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: submit Cc: guix-patches@gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) --00000000000044b711058ba8b3a6 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Hello Meiyo! Meiyo Peng ezt =C3=ADrta (id=C5=91pont: 2019. j=C3=BAn. = 18., Ke 5:29): > 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? > Yes, of course. I just read on the hacking file that adding a package can go directly to master, therefore the confusion. > > 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. > Sorry about nor being aware. I should have been more careful. > > -- > Meiyo Peng > https://www.pengmeiyu.com/ Best regard, g_bor > > --00000000000044b711058ba8b3a6 Content-Type: text/html; charset="UTF-8" Content-Transfer-Encoding: quoted-printable
Hello Meiyo!

Meiyo Peng <meiyo@riseup.net> ezt =C3=ADrta (id=C5=91pont: 2019. j=C3= =BAn. 18., Ke 5:29):
Hi G=C3=A1bor,=

The spdlog package contains a bundled fmt library.=C2=A0 I tried to unbundl= e
fmt before, but the maintaining work does not worth it.=C2=A0 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.=C2=A0 Woul= d
you please send you patches to the mailing list first in the future?
Yes, of course. I just read on the = hacking file that adding a package can go directly to master, therefore the= confusion.

You also pushed mako into master, but there is already a discussion
about mako here:
https://lists.gnu.or= g/archive/html/guix-patches/2019-03/msg00567.html.
We should build mako from it's git master or wait until the next point<= br> release.
Sorry about nor bein= g aware. I should have been more careful.

=

Best regard,
g_bor
=

=
--00000000000044b711058ba8b3a6-- From debbugs-submit-bounces@debbugs.gnu.org Wed Jun 19 23:45:01 2019 Received: (at 36273-done) by debbugs.gnu.org; 20 Jun 2019 03:45:01 +0000 Received: from localhost ([127.0.0.1]:47706 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hdo0S-0002D5-Rm for submit@debbugs.gnu.org; Wed, 19 Jun 2019 23:45:01 -0400 Received: from mail-ed1-f49.google.com ([209.85.208.49]:37862) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hdo0Q-0002Cs-LH for 36273-done@debbugs.gnu.org; Wed, 19 Jun 2019 23:44:59 -0400 Received: by mail-ed1-f49.google.com with SMTP id w13so2472244eds.4 for <36273-done@debbugs.gnu.org>; Wed, 19 Jun 2019 20:44:58 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:from:date:message-id:subject:to; bh=2PikmCFrmExLJKXk3f5UWtg94Ch9LixLtJNm+A6272U=; b=bRQ4M8QCgbVavtUbYb1zpITQZXG9gP0zWGNO5hXT1cWtZIB/tGFId55NAD5s8o33he snmSZWC9jKZkBY+l4weWLi6oNiUe/RBv+VXkCOd647nZdvW+xz1bNJ8JDwgOdW1KKLsi 7t89ogKWhXeWatXTWniSrIzIjmjQ9yMEkIWExoNVK59CRr/QTVkNLc7HGBQXs5n4vLR/ L58tj0w+DRIAkPZWaT+sM6zykZLuiz/tl0XxDirMyXaK3o8UjqPD3xZ5qaNRpiPFufZV 01sG3km8YHXcrgpK0Mt5zB/FpirzxB0bs3vFnZHmZxohjhvDWtE6N+MvOPqdZfIcvwLL W/ww== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=2PikmCFrmExLJKXk3f5UWtg94Ch9LixLtJNm+A6272U=; b=TjOnWefzxBC81sy1gVdT9Syd3l+Sv0rsFc4kdjJEfovKeEf/+IWyXET3vhx1LxbPg/ JyAQ0vnKpAag1YsRnIwySbcVZmPUjPX6dlJ16fCLEM2HTxcWstvXYBdUAG/pwKDiEYAn CieTSiEHBHL9SqsQXcBapSchdb790SMihxI2p4RUrRYWkLKdfrnjzfq+eszxKgb/b5I8 W5K/vXThtWDkd/AmGAg+gmt9flwaIKDwisErNTywZjPBRLYvYtkQhV//kE1YXDuG2uOr +XgoErECx8VLgeR05asL2IdrJ/5Rg0CsYIVmF19BH17iTcPGEvvc9xfRSAtD1RSBHfv5 7pYA== X-Gm-Message-State: APjAAAVzrKbaXsWXOWS4rmX4a5lpk1y2gqW++J8WCtXE/f2e68Y46rph oZYtzi79nMjbLyFaWUzxJHO5a1Mg1p2763J6T745Zjo= X-Google-Smtp-Source: APXvYqzOEk+jSD9gf423vfihHiZCjRrfYRhbm6iYoOT22A+9ttDl55mzkO/q4S4fn4Xa8YvIbOm0CAmBxMdx56Q8jdA= X-Received: by 2002:a50:9646:: with SMTP id y64mr64986061eda.111.1561002292586; Wed, 19 Jun 2019 20:44:52 -0700 (PDT) MIME-Version: 1.0 From: =?UTF-8?Q?G=C3=A1bor_Boskovits?= Date: Thu, 20 Jun 2019 03:44:40 +0000 Message-ID: Subject: Clarify spdlog's license To: 36273-done@debbugs.gnu.org, Meiyo Peng Content-Type: multipart/alternative; boundary="00000000000024aed0058bb92bfa" X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 36273-done X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) --00000000000024aed0058bb92bfa Content-Type: text/plain; charset="UTF-8" Fixed on master in commit 5543d3bb09e65107afe4f839c97285bb2106b70e . -- OpenPGP Key Fingerprint: 7988:3B9F:7D6A:4DBF:3719:0367:2506:A96C:CF63:0B21 --00000000000024aed0058bb92bfa Content-Type: text/html; charset="UTF-8" Content-Transfer-Encoding: quoted-printable
Fixed on master in commit 5543d3bb09e65107afe4f839c97285bb2106b70e.

--
OpenPGP Key Fingerprint: 7988:3B9F:7D6A:4DBF:3719:0367:2506:A96C:C= F63:0B21
--00000000000024aed0058bb92bfa-- From unknown Tue Jun 24 22:39:00 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Thu, 18 Jul 2019 11:24:05 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator