[PATCH 1/2] gnu: Add bugroff license.

  • Done
  • quality assurance status badge
Details
3 participants
  • Guillaume Le Vaillant
  • jgart
  • Tobias Geerinckx-Rice
Owner
unassigned
Submitted by
jgart
Severity
normal
J
T
T
Tobias Geerinckx-Rice wrote on 5 Dec 2022 22:18
(name . jgart)(address . jgart@dismail.de)(address . 59844@debbugs.gnu.org)
874ju9cyhl.fsf@nckx
[Apologies for the previous half-mail sent in unforgivable error.]

Hi,

The author mentions a 'no-restrictions BSD' licence in addition to
[0]. Could they mean 0BSD? We could just use that. It's in
Guix.

jgart via Guix-patches via ???
Toggle quote (2 lines)
> Should we add it?

Bizarrely, Debian did[1][2]. Debian is not our touchstone, but
it's an excellent smoke test.

What they were smoking when they added that is not clear to me.

A quick search turned up only packages ‘dual’-licenced under
another, actual licence that explicitly grants the required
rights.

In such cases, presumably the joke licence is moot: the real one
does all the work of not getting people sued.

Kind regards,

T G-R

-----BEGIN PGP SIGNATURE-----

iIMEARYKACsWIQT12iAyS4c9C3o4dnINsP+IT1VteQUCY45nZg0cbWVAdG9iaWFz
LmdyAAoJEA2w/4hPVW15dFwBALHvT5HPhLLv4hi4Lnzb+leTjKYrM9lnzCMZ1u32
SLb/AQCLIdWJJyN4qJ0g25MQzzCMvm9yKnIprd2jB9TeSYpvBw==
=M5t0
-----END PGP SIGNATURE-----

J
J
jgart wrote on 6 Dec 2022 15:33
[PATCH v2] gnu: Add fare-csv.
(address . 59844@debbugs.gnu.org)
20221206143335.31587-1-jgart@dismail.de
* gnu/packages/lisp-xyz.scm (cl-fare-csv, ecl-fare-csv, sbcl-fare-csv):
New variables.

Hi Tobias,

Thanks for the review. v2 changes the license to bsd-2 but I'm waiting on
the author who might or might not change the license to MIT or Apache 2:



all best,

jgart

---
gnu/packages/lisp-xyz.scm | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)

Toggle diff (43 lines)
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 57becbe994..4468722740 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -6601,6 +6601,36 @@ (define-public cl-metabang-bind
(define-public ecl-metabang-bind
(sbcl-package->ecl-package sbcl-metabang-bind))
+(define-public sbcl-fare-csv
+ (let ((commit "39fcada5db2899af172454899ff13a07c62ebdb9")
+ (revision "0"))
+ (package
+ (name "sbcl-fare-csv")
+ (version (git-version "1.0.1" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/fare/fare-csv")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "09iq4mfvqlgfcj8gazdwr8y03jrh10aa2y847sz46wdnr2bkys00"))))
+ (build-system asdf-build-system/sbcl)
+ (native-inputs (list sbcl-hu.dwim.stefil))
+ (home-page "https://fare-csv.github.io/fare-csv")
+ (synopsis "Robust CSV parser and printer")
+ (description "Robust CSV parser and printer that tries to follow the
+fine print of de facto standards. It can be configured to choose which
+standard exactly.")
+ (license license:bsd-2))))
+
+(define-public cl-fare-csv
+ (sbcl-package->cl-source-package sbcl-fare-csv))
+
+(define-public ecl-fare-csv
+ (sbcl-package->ecl-package sbcl-fare-csv))
+
(define-public sbcl-fare-utils
(let ((commit "66e9c6f1499140bc00ccc22febf2aa528cbb5724")
(revision "1"))
--
2.38.1
J
J
jgart wrote on 6 Dec 2022 19:58
[PATCH v3] gnu: Add fare-csv.
(address . 59844@debbugs.gnu.org)
20221206185821.16484-1-jgart@dismail.de
* gnu/packages/lisp-xyz.scm (cl-fare-csv, ecl-fare-csv, sbcl-fare-csv):
New variables.

Hi, here is v3.

I updated to use the MIT license and I chose to use the gitlab source repo.

Let me know if all looks good to you or if I should send a v4.

all best,

jgart
---
gnu/packages/lisp-xyz.scm | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)

Toggle diff (43 lines)
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 57becbe994..a6fdbf9b3c 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -6601,6 +6601,36 @@ (define-public cl-metabang-bind
(define-public ecl-metabang-bind
(sbcl-package->ecl-package sbcl-metabang-bind))
+(define-public sbcl-fare-csv
+ (let ((commit "f877a238dcbf587a89359cccf2128919a94a348c")
+ (revision "0"))
+ (package
+ (name "sbcl-fare-csv")
+ (version (git-version "1.0.4" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://gitlab.common-lisp.net/frideau/fare-csv")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0k3mf968w94m4yff1k2jh7xlnpsm016qs4448bvklacjrr72vk8x"))))
+ (build-system asdf-build-system/sbcl)
+ (native-inputs (list sbcl-hu.dwim.stefil))
+ (home-page "https://gitlab.common-lisp.net/frideau/fare-csv/")
+ (synopsis "Robust CSV parser and printer")
+ (description "Robust CSV parser and printer that tries to follow the
+fine print of de facto standards. It can be configured to choose which
+standard exactly.")
+ (license license:expat))))
+
+(define-public cl-fare-csv
+ (sbcl-package->cl-source-package sbcl-fare-csv))
+
+(define-public ecl-fare-csv
+ (sbcl-package->ecl-package sbcl-fare-csv))
+
(define-public sbcl-fare-utils
(let ((commit "66e9c6f1499140bc00ccc22febf2aa528cbb5724")
(revision "1"))
--
2.38.1
G
G
Guillaume Le Vaillant wrote on 12 Dec 2022 11:56
(name . jgart)(address . jgart@dismail.de)
877cywanz1.fsf@kitej
Patch pushed as 911b0a54514384195331ff6e89163a63b5c2c308.
Thanks.
-----BEGIN PGP SIGNATURE-----

iIUEAREKAC0WIQTLxZxm7Ce5cXlAaz5r6CCK3yH+PwUCY5cJIg8cZ2x2QHBvc3Rl
by5uZXQACgkQa+ggit8h/j/a/QD+PgcGOmdF3TC4YG/FNimBiTRKvS8k9Slk1G5k
AlGZuOEA/jmtOdQ6thVKrGJ3zPArsGiHoGPwcRvbVgwWCBglhUjq
=8wQM
-----END PGP SIGNATURE-----

Closed
?