* [bug#39895] [PATCH] import: pypi: Add more licenses
@ 2020-03-04 8:53 Lars-Dominik Braun
2020-03-04 19:57 ` bug#39895: " Leo Famulari
0 siblings, 1 reply; 2+ messages in thread
From: Lars-Dominik Braun @ 2020-03-04 8:53 UTC (permalink / raw)
To: 39895
[-- Attachment #1.1: Type: text/plain, Size: 150 bytes --]
Hi,
the following patch adds a few more string to license conversions for the pypi
importer that I’ve encountered “in the wild”.
Lars
[-- Attachment #1.2: 0001-import-pypi-Add-more-licenses.patch --]
[-- Type: text/x-diff, Size: 1248 bytes --]
From 16fce0c5e7c67b08b910740310b2e86e203bc261 Mon Sep 17 00:00:00 2001
From: Lars-Dominik Braun <ldb@leibniz-psychology.org>
Date: Wed, 4 Mar 2020 09:42:17 +0100
Subject: [PATCH] import: pypi: Add more licenses
* guix/import/pypi.scm (string->license): Add BSD 2-clause and MPL 2.0, add
more strings for BSD 3-clause and MIT license
---
guix/import/pypi.scm | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/guix/import/pypi.scm b/guix/import/pypi.scm
index 6897f42be3..5a1f570515 100644
--- a/guix/import/pypi.scm
+++ b/guix/import/pypi.scm
@@ -439,10 +439,12 @@ VERSION, SOURCE-URL, HOME-PAGE, SYNOPSIS, DESCRIPTION, and LICENSE."
(match str
("GNU LGPL" license:lgpl2.0)
("GPL" license:gpl3)
- ((or "BSD" "BSD License") license:bsd-3)
- ((or "MIT" "MIT license" "Expat license") license:expat)
+ ((or "BSD" "BSD-3" "BSD License") license:bsd-3)
+ ("BSD-2-Clause" license:bsd-2)
+ ((or "MIT" "MIT license" "MIT License" "Expat license") license:expat)
("Public domain" license:public-domain)
((or "Apache License, Version 2.0" "Apache 2.0") license:asl2.0)
+ ("MPL 2.0" license:mpl2.0)
(_ #f)))
(define (pypi-package? package)
--
2.20.1
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]
^ permalink raw reply related [flat|nested] 2+ messages in thread
* bug#39895: [PATCH] import: pypi: Add more licenses
2020-03-04 8:53 [bug#39895] [PATCH] import: pypi: Add more licenses Lars-Dominik Braun
@ 2020-03-04 19:57 ` Leo Famulari
0 siblings, 0 replies; 2+ messages in thread
From: Leo Famulari @ 2020-03-04 19:57 UTC (permalink / raw)
To: Lars-Dominik Braun; +Cc: 39895-done
[-- Attachment #1: Type: text/plain, Size: 719 bytes --]
On Wed, Mar 04, 2020 at 09:53:26AM +0100, Lars-Dominik Braun wrote:
> Hi,
>
> the following patch adds a few more string to license conversions for the pypi
> importer that I’ve encountered “in the wild”.
>
> Lars
>
> From 16fce0c5e7c67b08b910740310b2e86e203bc261 Mon Sep 17 00:00:00 2001
> From: Lars-Dominik Braun <ldb@leibniz-psychology.org>
> Date: Wed, 4 Mar 2020 09:42:17 +0100
> Subject: [PATCH] import: pypi: Add more licenses
>
> * guix/import/pypi.scm (string->license): Add BSD 2-clause and MPL 2.0, add
> more strings for BSD 3-clause and MIT license
Thanks! I rewrote the commit message, added a copyright line for you,
and pushed as c8abbe1468bc69b5f2b481aa11da62bc59168b26
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2020-03-04 19:58 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-03-04 8:53 [bug#39895] [PATCH] import: pypi: Add more licenses Lars-Dominik Braun
2020-03-04 19:57 ` bug#39895: " Leo Famulari
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.