* [bug#48814] [PATCH] licenses: Add BSD-1-Clause license.
@ 2021-06-03 17:44 Xinglu Chen
2021-06-03 17:47 ` [bug#48814] [PATCH v2] " Xinglu Chen
2021-06-03 19:55 ` bug#48814: " Leo Prikler
0 siblings, 2 replies; 4+ messages in thread
From: Xinglu Chen @ 2021-06-03 17:44 UTC (permalink / raw)
To: 48814
* 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
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [bug#48814] [PATCH v2] licenses: Add BSD-1-Clause license.
2021-06-03 17:44 [bug#48814] [PATCH] licenses: Add BSD-1-Clause license Xinglu Chen
@ 2021-06-03 17:47 ` Xinglu Chen
2021-06-03 17:49 ` [bug#48814] [PATCH v3] " Xinglu Chen
2021-06-03 19:55 ` bug#48814: " Leo Prikler
1 sibling, 1 reply; 4+ messages in thread
From: Xinglu Chen @ 2021-06-03 17:47 UTC (permalink / raw)
To: 48814
* 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 <nandre@riseup.net>
;;; Copyright © 2020 Helio Machado <0x2b3bfa0+guix@googlemail.com>
;;; Copyright © 2021 Felix Gruber <felgru@posteo.net>
+;;; Copyright © 2021 Xinglu Chen <public@yoctocell.xyz>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -166,6 +167,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
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [bug#48814] [PATCH v3] licenses: Add BSD-1-Clause license.
2021-06-03 17:47 ` [bug#48814] [PATCH v2] " Xinglu Chen
@ 2021-06-03 17:49 ` Xinglu Chen
0 siblings, 0 replies; 4+ messages in thread
From: Xinglu Chen @ 2021-06-03 17:49 UTC (permalink / raw)
To: 48814
* 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 © 2020 André Batista <nandre@riseup.net>
;;; Copyright © 2020 Helio Machado <0x2b3bfa0+guix@googlemail.com>
;;; Copyright © 2021 Felix Gruber <felgru@posteo.net>
+;;; Copyright © 2021 Xinglu Chen <public@yoctocell.xyz>
;;;
;;; 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"))
+(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
^ permalink raw reply related [flat|nested] 4+ messages in thread
* bug#48814: [PATCH v3] licenses: Add BSD-1-Clause license.
2021-06-03 17:44 [bug#48814] [PATCH] licenses: Add BSD-1-Clause license Xinglu Chen
2021-06-03 17:47 ` [bug#48814] [PATCH v2] " Xinglu Chen
@ 2021-06-03 19:55 ` Leo Prikler
1 sibling, 0 replies; 4+ messages in thread
From: Leo Prikler @ 2021-06-03 19:55 UTC (permalink / raw)
To: public; +Cc: 48814-done
Pushed as 7e16321560d03d1d63df0354bb0ec1a9f21d59fa.
Thanks!
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2021-06-03 19:56 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-06-03 17:44 [bug#48814] [PATCH] licenses: Add BSD-1-Clause license Xinglu Chen
2021-06-03 17:47 ` [bug#48814] [PATCH v2] " Xinglu Chen
2021-06-03 17:49 ` [bug#48814] [PATCH v3] " Xinglu Chen
2021-06-03 19:55 ` bug#48814: " Leo Prikler
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).