From debbugs-submit-bounces@debbugs.gnu.org Thu Jun 03 13:44:31 2021 Received: (at submit) by debbugs.gnu.org; 3 Jun 2021 17:44:31 +0000 Received: from localhost ([127.0.0.1]:44636 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lorOQ-0006p7-SB for submit@debbugs.gnu.org; Thu, 03 Jun 2021 13:44:31 -0400 Received: from lists.gnu.org ([209.51.188.17]:53124) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lorOP-0006oz-Ke for submit@debbugs.gnu.org; Thu, 03 Jun 2021 13:44:30 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:35986) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lorOP-0001O1-Cm for guix-patches@gnu.org; Thu, 03 Jun 2021 13:44:29 -0400 Received: from h87-96-130-155.cust.a3fiber.se ([87.96.130.155]:47394 helo=mail.yoctocell.xyz) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lorOK-0006ud-Ku for guix-patches@gnu.org; Thu, 03 Jun 2021 13:44:26 -0400 From: Xinglu Chen DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=yoctocell.xyz; s=mail; t=1622742260; bh=LtT6ar7djA7RXDTpm6r6dmvnKw345+NcRLfH7nMtmxA=; h=From:To:Subject:Date; b=Qb973EU2Lqhur+Cc5jSb4RFKniInK4+sbjd5Kv+p2Igk+kCSpOVMaKrwtYMlNJ+yS YUoXudEQR1GzCopXkery8GH7EknzLT9bh68+iho61X6jGh6rEDAZswK6oElHFAfzIb JlMLwsuQ6b2A0OayrbxjpGWldLJxhe0C5HGj3jgE= To: guix-patches@gnu.org Subject: [PATCH] licenses: Add BSD-1-Clause license. Message-Id: <6357a3644d4531267bf1e316a2af83ea27b05ab1.1622742235.git.public@yoctocell.xyz> Date: Thu, 03 Jun 2021 19:44:19 +0200 MIME-Version: 1.0 Content-Type: text/plain Received-SPF: pass client-ip=87.96.130.155; envelope-from=public@yoctocell.xyz; helo=mail.yoctocell.xyz X-Spam_score_int: 30 X-Spam_score: 3.0 X-Spam_bar: +++ X-Spam_report: (3.0 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, FROM_SUSPICIOUS_NTLD=0.499, FROM_SUSPICIOUS_NTLD_FP=1.599, PDS_OTHER_BAD_TLD=1.997, RDNS_DYNAMIC=0.982, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=no autolearn_force=no X-Spam_action: no action X-Spam-Score: 2.8 (++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: * licenses.scm (bsd-1): New variable. --- guix/licenses.scm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/guix/licenses.scm b/guix/licenses.scm index 4718ccf83f..1e07c6efcc 100644 --- a/guix/licenses.scm +++ b/guix/licenses.scm @@ -166, 6 +166, 11 @@ "https://spdx.org/licenses/0BSD.html" "https [...] Content analysis details: (2.8 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -2.3 RCVD_IN_DNSWL_MED RBL: Sender listed at https://www.dnswl.org/, medium trust [209.51.188.17 listed in list.dnswl.org] 1.0 SPF_SOFTFAIL SPF: sender does not match SPF record (softfail) 2.0 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: yoctocell.xyz (xyz)] -0.0 SPF_HELO_PASS SPF: HELO matches SPF record 0.0 RCVD_IN_MSPIKE_H4 RBL: Very Good reputation (+4) [209.51.188.17 listed in wl.mailspike.net] 0.0 RCVD_IN_MSPIKE_WL Mailspike good senders 0.5 FROM_SUSPICIOUS_NTLD From abused NTLD 1.6 FROM_SUSPICIOUS_NTLD_FP From abused NTLD X-Debbugs-Envelope-To: submit 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.2 (/) * licenses.scm (bsd-1): New variable. --- guix/licenses.scm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/guix/licenses.scm b/guix/licenses.scm index 4718ccf83f..1e07c6efcc 100644 --- a/guix/licenses.scm +++ b/guix/licenses.scm @@ -166,6 +166,11 @@ "https://spdx.org/licenses/0BSD.html" "https://opensource.org/licenses/0BSD")) +(define bsd-1 + (license "BSD 1-Clause" + "https://spdx.org/licenses/BSD-1-Clause.html" + "https://opensource.org/licenses/BSD-1-Clause")) + (define bsd-2 (license "FreeBSD" "http://directory.fsf.org/wiki/License:FreeBSD" base-commit: cf6be24529960c50706c6b4164193ed6c1dd5bc2 -- 2.31.1 From debbugs-submit-bounces@debbugs.gnu.org Thu Jun 03 13:47:57 2021 Received: (at 48814) by debbugs.gnu.org; 3 Jun 2021 17:47:57 +0000 Received: from localhost ([127.0.0.1]:44641 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lorRf-0006v1-BB for submit@debbugs.gnu.org; Thu, 03 Jun 2021 13:47:56 -0400 Received: from h87-96-130-155.cust.a3fiber.se ([87.96.130.155]:55730 helo=mail.yoctocell.xyz) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lorRd-0006un-Cj for 48814@debbugs.gnu.org; Thu, 03 Jun 2021 13:47:50 -0400 From: Xinglu Chen DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=yoctocell.xyz; s=mail; t=1622742463; bh=D7EL/mXUyKYgCKCazn03eP9XlCdvA3uahQKwz9L2hgw=; h=From:To:Subject:In-Reply-To:References:Date; b=W712I/zc4/1bwwM3wVZpjdVRaMqqTK2jxcjGIHek/mH9VB4I/I10a7WNPIyA94NAb vrVWqc/L6lnR6EfUp4z8GW0KpQ0exmsAxaaXdBagUZC8Idrb64/w5oGvp2EDCWe8Wz ady5U9tkWDZc5pdK9Xnxa021dYnYtdFnjRfY2C20= To: 48814@debbugs.gnu.org Subject: [PATCH v2] licenses: Add BSD-1-Clause license. In-Reply-To: <6357a3644d4531267bf1e316a2af83ea27b05ab1.1622742235.git.public@yoctocell.xyz> References: <6357a3644d4531267bf1e316a2af83ea27b05ab1.1622742235.git.public@yoctocell.xyz> Message-Id: <1f398cd2b03247bb5700c96ca51457e08e40f3d1.1622742423.git.public@yoctocell.xyz> Date: Thu, 03 Jun 2021 19:47:42 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: 2.9 (++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: * licenses.scm (bsd-1): New variable. --- Oops, forgot to add copyright line. guix/licenses.scm | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/guix/licenses.scm b/guix/licenses.scm index 4718ccf83f..9ad77c1ec9 100644 --- a/guix/licenses.scm +++ b/guix/licenses.scm @@ -17,6 +17,7 @@ ;;; Copyright © 2020 André Batista 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.9 (+) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: * licenses.scm (bsd-1): New variable. --- Oops, forgot to add copyright line. guix/licenses.scm | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/guix/licenses.scm b/guix/licenses.scm index 4718ccf83f..9ad77c1ec9 100644 --- a/guix/licenses.scm +++ b/guix/licenses.scm @@ -17,6 +17,7 @@ ;;; Copyright © 2020 André Batista ;;; Copyright =C2=A9 2020 Helio Machado <0x2b3bfa0+guix@googlemail.com> ;;; Copyright =C2=A9 2021 Felix Gruber +;;; Copyright =C2=A9 2021 Xinglu Chen ;;; ;;; This file is part of GNU Guix. ;;; @@ -166,6 +167,11 @@ "https://spdx.org/licenses/0BSD.html" "https://opensource.org/licenses/0BSD")) =20 +(define bsd-1 + (license "BSD 1-Clause" + "https://spdx.org/licenses/BSD-1-Clause.html" + "https://opensource.org/licenses/BSD-1-Clause")) + (define bsd-2 (license "FreeBSD" "http://directory.fsf.org/wiki/License:FreeBSD" base-commit: cf6be24529960c50706c6b4164193ed6c1dd5bc2 --=20 2.31.1 From debbugs-submit-bounces@debbugs.gnu.org Thu Jun 03 13:50:00 2021 Received: (at 48814) by debbugs.gnu.org; 3 Jun 2021 17:50:00 +0000 Received: from localhost ([127.0.0.1]:44645 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lorTf-0006y9-63 for submit@debbugs.gnu.org; Thu, 03 Jun 2021 13:50:00 -0400 Received: from h87-96-130-155.cust.a3fiber.se ([87.96.130.155]:55796 helo=mail.yoctocell.xyz) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lorTd-0006xw-0K for 48814@debbugs.gnu.org; Thu, 03 Jun 2021 13:49:54 -0400 From: Xinglu Chen DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=yoctocell.xyz; s=mail; t=1622742587; bh=NhryrJfk2Um6KezUlSkyEu2C6kjVk06CnTT3gVkIX1M=; h=From:To:Subject:In-Reply-To:References:Date; b=JaWQL0ftRhW3Xz/9oQn7Y2wzkwQQcZa11W2efNgkf4WWoUhIld2jNFKBrREwMNkjV cWakqKyZd9gLLOM/OA1tqSyeToMFHIC59Hi7mLfMTqjILplkabqlp+reszuYVAyiP5 ro936ylSv/TNfTGgDXhGOJ4aniSpLeYkCueY4b/I= To: 48814@debbugs.gnu.org Subject: [PATCH v3] licenses: Add BSD-1-Clause license. In-Reply-To: <1f398cd2b03247bb5700c96ca51457e08e40f3d1.1622742423.git.public@yoctocell.xyz> References: <1f398cd2b03247bb5700c96ca51457e08e40f3d1.1622742423.git.public@yoctocell.xyz> Message-Id: <6eed2ea4ace1f45826c6dc6d6a3c73ccb064d6f1.1622742552.git.public@yoctocell.xyz> Date: Thu, 03 Jun 2021 19:49:46 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: 2.9 (++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: * licenses.scm (bsd-1): New variable. --- And export it... Sorry for the noise. guix/licenses.scm | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) Content analysis details: (2.9 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record -0.0 SPF_PASS SPF: sender matches SPF record 2.0 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: yoctocell.xyz (xyz)] 0.4 RDNS_DYNAMIC Delivered to internal network by host with dynamic-looking rDNS 0.5 FROM_SUSPICIOUS_NTLD From abused NTLD X-Debbugs-Envelope-To: 48814 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.9 (+) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: * licenses.scm (bsd-1): New variable. --- And export it... Sorry for the noise. guix/licenses.scm | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) Content analysis details: (1.9 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record -0.0 SPF_PASS SPF: sender matches SPF record 2.0 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: yoctocell.xyz (xyz)] 0.4 RDNS_DYNAMIC Delivered to internal network by host with dynamic-looking rDNS 0.5 FROM_SUSPICIOUS_NTLD From abused NTLD -1.0 MAILING_LIST_MULTI Multiple indicators imply a widely-seen list manager * licenses.scm (bsd-1): New variable. --- And export it... Sorry for the noise. guix/licenses.scm | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/guix/licenses.scm b/guix/licenses.scm index 4718ccf83f..e7457799ce 100644 --- a/guix/licenses.scm +++ b/guix/licenses.scm @@ -17,6 +17,7 @@ ;;; Copyright =C2=A9 2020 Andr=C3=A9 Batista ;;; Copyright =C2=A9 2020 Helio Machado <0x2b3bfa0+guix@googlemail.com> ;;; Copyright =C2=A9 2021 Felix Gruber +;;; Copyright =C2=A9 2021 Xinglu Chen ;;; ;;; This file is part of GNU Guix. ;;; @@ -40,7 +41,7 @@ apsl2 asl1.1 asl2.0 boost1.0 - bsd-0 bsd-2 bsd-3 bsd-4 + bsd-0 bsd-1 bsd-2 bsd-3 bsd-4 non-copyleft cc0 cc-by2.0 cc-by3.0 cc-by4.0 @@ -166,6 +167,11 @@ "https://spdx.org/licenses/0BSD.html" "https://opensource.org/licenses/0BSD")) =20 +(define bsd-1 + (license "BSD 1-Clause" + "https://spdx.org/licenses/BSD-1-Clause.html" + "https://opensource.org/licenses/BSD-1-Clause")) + (define bsd-2 (license "FreeBSD" "http://directory.fsf.org/wiki/License:FreeBSD" base-commit: cf6be24529960c50706c6b4164193ed6c1dd5bc2 --=20 2.31.1 From debbugs-submit-bounces@debbugs.gnu.org Thu Jun 03 15:55:12 2021 Received: (at 48814-done) by debbugs.gnu.org; 3 Jun 2021 19:55:12 +0000 Received: from localhost ([127.0.0.1]:44707 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lotQu-0001aj-2u for submit@debbugs.gnu.org; Thu, 03 Jun 2021 15:55:12 -0400 Received: from mailrelay.tugraz.at ([129.27.2.202]:29850) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lotQr-0001aW-Jj for 48814-done@debbugs.gnu.org; Thu, 03 Jun 2021 15:55:10 -0400 Received: from nijino.local (62-116-34-49.adsl.highway.telekom.at [62.116.34.49]) by mailrelay.tugraz.at (Postfix) with ESMTPSA id 4FwxSp16J0z1LB20; Thu, 3 Jun 2021 21:55:05 +0200 (CEST) DKIM-Filter: OpenDKIM Filter v2.11.0 mailrelay.tugraz.at 4FwxSp16J0z1LB20 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=tugraz.at; s=mailrelay; t=1622750106; bh=gPD1v4/3WUGolVFEKuYy2z/2Aw114ECizAyMe8LLUUo=; h=Subject:From:To:Cc:Date:In-Reply-To:From; b=dlpg2T2gWUCbtGa/SWNSYsEvsxgHRpdcJ72D+HOlAcj5BTKI9q66lUqAC+4eBBvTH 4cZBZJ35E4WnhNtvDOBSvNICk0RweeNZnNSXVQWKDrVTgONwic+Bc+Vm2lJsDK4N9Q 7942jHweM+mw/4ioy1EwdkiJF9Cy9UDzHDpex2go= Message-ID: <9bdbf03184622d88b4ed5dbd8808809f0f2f3654.camel@student.tugraz.at> Subject: [bug#48814] [PATCH v3] licenses: Add BSD-1-Clause license. From: Leo Prikler To: public@yoctocell.xyz Date: Thu, 03 Jun 2021 21:55:05 +0200 In-Reply-To: 6eed2ea4ace1f45826c6dc6d6a3c73ccb064d6f1.1622742552.git.public@yoctocell.xyz Content-Type: text/plain User-Agent: Evolution 3.34.2 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-TUG-Backscatter-control: bt4lQm5Tva3SBgCuw0EnZw X-Spam-Scanner: SpamAssassin 3.003001 X-Spam-Score-relay: -1.9 X-Scanned-By: MIMEDefang 2.74 on 129.27.10.117 X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 48814-done Cc: 48814-done@debbugs.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: -3.3 (---) Pushed as 7e16321560d03d1d63df0354bb0ec1a9f21d59fa. Thanks! From unknown Tue Jun 17 01:36:33 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Fri, 02 Jul 2021 11:24:04 +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