* [bug#59844] [PATCH 1/2] gnu: Add bugroff license.
@ 2022-12-05 20:35 jgart via Guix-patches via
2022-12-05 21:18 ` Tobias Geerinckx-Rice via Guix-patches via
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: jgart via Guix-patches via @ 2022-12-05 20:35 UTC (permalink / raw)
To: 59844
Hi Guixers,
This Common Lisp package mentions a license that we don't have:
https://github.com/fare/fare-csv/search?q=bugroff
Should we add it?
all best,
jgart
^ permalink raw reply [flat|nested] 5+ messages in thread
* [bug#59844] [PATCH 1/2] gnu: Add bugroff license.
2022-12-05 20:35 [bug#59844] [PATCH 1/2] gnu: Add bugroff license jgart via Guix-patches via
@ 2022-12-05 21:18 ` Tobias Geerinckx-Rice via Guix-patches via
2022-12-06 14:33 ` [bug#59844] [PATCH v2] gnu: Add fare-csv jgart via Guix-patches via
2022-12-06 18:58 ` [bug#59844] [PATCH v3] " jgart via Guix-patches via
2 siblings, 0 replies; 5+ messages in thread
From: Tobias Geerinckx-Rice via Guix-patches via @ 2022-12-05 21:18 UTC (permalink / raw)
To: jgart; +Cc: 59844
[-- Attachment #1: Type: text/plain, Size: 818 bytes --]
[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 写道:
> 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
[0]: http://tunes.org/legalese/bugroff.html
[1]: https://www.debian.org/legal/licenses/
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 247 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* [bug#59844] [PATCH v2] gnu: Add fare-csv.
2022-12-05 20:35 [bug#59844] [PATCH 1/2] gnu: Add bugroff license jgart via Guix-patches via
2022-12-05 21:18 ` Tobias Geerinckx-Rice via Guix-patches via
@ 2022-12-06 14:33 ` jgart via Guix-patches via
2022-12-06 18:58 ` [bug#59844] [PATCH v3] " jgart via Guix-patches via
2 siblings, 0 replies; 5+ messages in thread
From: jgart via Guix-patches via @ 2022-12-06 14:33 UTC (permalink / raw)
To: 59844; +Cc: me, jgart
* 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:
https://github.com/fare/fare-csv/issues/4
all best,
jgart
---
gnu/packages/lisp-xyz.scm | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
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
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [bug#59844] [PATCH v3] gnu: Add fare-csv.
2022-12-05 20:35 [bug#59844] [PATCH 1/2] gnu: Add bugroff license jgart via Guix-patches via
2022-12-05 21:18 ` Tobias Geerinckx-Rice via Guix-patches via
2022-12-06 14:33 ` [bug#59844] [PATCH v2] gnu: Add fare-csv jgart via Guix-patches via
@ 2022-12-06 18:58 ` jgart via Guix-patches via
2022-12-12 10:56 ` bug#59844: " Guillaume Le Vaillant
2 siblings, 1 reply; 5+ messages in thread
From: jgart via Guix-patches via @ 2022-12-06 18:58 UTC (permalink / raw)
To: 59844; +Cc: Tobias Geerinckx-Rice, jgart
* 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(+)
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
^ permalink raw reply related [flat|nested] 5+ messages in thread
* bug#59844: [PATCH v3] gnu: Add fare-csv.
2022-12-06 18:58 ` [bug#59844] [PATCH v3] " jgart via Guix-patches via
@ 2022-12-12 10:56 ` Guillaume Le Vaillant
0 siblings, 0 replies; 5+ messages in thread
From: Guillaume Le Vaillant @ 2022-12-12 10:56 UTC (permalink / raw)
To: jgart; +Cc: Tobias Geerinckx-Rice, 59844-done
[-- Attachment #1: Type: text/plain, Size: 66 bytes --]
Patch pushed as 911b0a54514384195331ff6e89163a63b5c2c308.
Thanks.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 247 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2022-12-12 10:58 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-12-05 20:35 [bug#59844] [PATCH 1/2] gnu: Add bugroff license jgart via Guix-patches via
2022-12-05 21:18 ` Tobias Geerinckx-Rice via Guix-patches via
2022-12-06 14:33 ` [bug#59844] [PATCH v2] gnu: Add fare-csv jgart via Guix-patches via
2022-12-06 18:58 ` [bug#59844] [PATCH v3] " jgart via Guix-patches via
2022-12-12 10:56 ` bug#59844: " Guillaume Le Vaillant
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).