unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#71141] (gnu packages guile-xyz): + srfi-126
@ 2024-05-23  9:04 Grigory Shepelev
  2024-05-24 15:58 ` Grigory Shepelev
  0 siblings, 1 reply; 4+ messages in thread
From: Grigory Shepelev @ 2024-05-23  9:04 UTC (permalink / raw)
  To: 71141


[-- Attachment #1.1: Type: text/plain, Size: 1 bytes --]



[-- Attachment #1.2: Type: text/html, Size: 26 bytes --]

[-- Attachment #2: 0001-gnu-packages-guile-xyz-guile-srfi-126.patch --]
[-- Type: text/x-patch, Size: 2621 bytes --]

From 3e08f2df8839f995d70203a58f093fc42f4141f4 Mon Sep 17 00:00:00 2001
From: Grigory Shepelev <shegeley@gmail.com>
Date: Thu, 23 May 2024 06:25:53 +0300
Subject: [PATCH] (gnu packages guile-xyz): + guile-srfi-126

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

diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm
index ffb0684167..0fc84bb2c1 100644
--- a/gnu/packages/guile-xyz.scm
+++ b/gnu/packages/guile-xyz.scm
@@ -3791,6 +3791,50 @@ (define-public guile-srfi-133
 comprehensive library of vector operations.")
     (license license:expat)))
 
+(define-public guile-srfi-126
+ (let ((commit "f480cf2d1a33c1f3d0fab3baf321c0ed5b5eb248")
+       (revision "0"))
+  (package
+   (name "guile-srfi-126")
+   (version revision)
+   (source
+    (origin
+     (method git-fetch)
+     (uri (git-reference
+           (url "https://github.com/scheme-requests-for-implementation/srfi-126")
+           (commit commit)))
+     (file-name (git-file-name name version))
+     (modules '((guix build utils)))
+     (snippet
+      '(begin
+        (delete-file-recursively "r6rs")
+
+        (delete-file "srfi/126.sld")
+        (delete-file "srfi/126.sld.in")
+        (delete-file "srfi/:126.sls")
+        (delete-file "srfi/:126.sls.in")
+
+        (delete-file "test-suite.body.scm")
+        (delete-file "test-suite.r6rs.sps")
+        (delete-file "test-suite.r6rs.sps.in")
+        (delete-file "test-suite.r7rs.scm")
+        (delete-file "test-suite.r7rs.scm.in")
+        #t))
+     (sha256
+      (base32 "18psw8l798xmbv2h90cz41r51q1mydzg7yr71krfprx5kdfqn32q"))))
+   (build-system guile-build-system)
+   (native-inputs (list guile-3.0))
+   (home-page "https://github.com/scheme-requests-for-implementation/srfi-126")
+   (synopsis "SRFI 126: R6RS-based hashtables")
+   (description "The utility procedures provided by this SRFI in addition to the R6RS API may be categorized as follows:
+    - Constructors: alist->eq-hashtable, alist->eqv-hashtable, alist->hashtable
+    - Access and mutation: hashtable-lookup, hashtable-intern!
+    - Copying: hashtable-empty-copy
+    - Key/value collections: hashtable-values, hashtable-key-list, hashtable-value-list, hashtable-entry-lists
+    - Iteration: hashtable-walk, hashtable-update-all!, hashtable-prune!, hashtable-merge!, hashtable-sum, hashtable-map->lset, hashtable-find
+    - Miscellaneous: hashtable-empty?, hashtable-pop!, hashtable-inc!, hashtable-dec!")
+   (license license:gpl3+))))
+
 (define-public guile-srfi-145
   (package
     (name "guile-srfi-145")
-- 
2.41.0


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [bug#71141] (gnu packages guile-xyz): + srfi-126
  2024-05-23  9:04 [bug#71141] (gnu packages guile-xyz): + srfi-126 Grigory Shepelev
@ 2024-05-24 15:58 ` Grigory Shepelev
  2024-05-24 17:38   ` Leo Famulari
  2024-05-24 17:47   ` Grigory Shepelev
  0 siblings, 2 replies; 4+ messages in thread
From: Grigory Shepelev @ 2024-05-24 15:58 UTC (permalink / raw)
  To: 71141

[-- Attachment #1: Type: text/plain, Size: 1340 bytes --]

Caught a mistake. Not sure about the license. Not GPL probably. From
https://srfi.schemers.org/srfi-126/srfi-126.html:

«Copyright (C) Taylan Ulrich Bayırlı/Kammer (2015, 2016). All Rights
Reserved.

Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.»


чт, 23 мая 2024 г. в 12:04, Grigory Shepelev <shegeley@gmail.com>:

>
>

[-- Attachment #2: Type: text/html, Size: 1818 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [bug#71141] (gnu packages guile-xyz): + srfi-126
  2024-05-24 15:58 ` Grigory Shepelev
@ 2024-05-24 17:38   ` Leo Famulari
  2024-05-24 17:47   ` Grigory Shepelev
  1 sibling, 0 replies; 4+ messages in thread
From: Leo Famulari @ 2024-05-24 17:38 UTC (permalink / raw)
  To: Grigory Shepelev, 71141

[-- Attachment #1: Type: text/plain, Size: 1488 bytes --]

That's the MIT / "Expat" license.

https://directory.fsf.org/wiki/License:Expat

On Fri, May 24, 2024, at 11:58, Grigory Shepelev wrote:
> Caught a mistake. Not sure about the license. Not GPL probably. From  https://srfi.schemers.org/srfi-126/srfi-126.html:
> «Copyright (C) Taylan Ulrich Bayırlı/Kammer (2015, 2016). All Rights Reserved.
> 
> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
> 
> The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
> 
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.»
> 
> 
> 
> чт, 23 мая 2024 г. в 12:04, Grigory Shepelev <shegeley@gmail.com>:
>> 

[-- Attachment #2: Type: text/html, Size: 2302 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [bug#71141] (gnu packages guile-xyz): + srfi-126
  2024-05-24 15:58 ` Grigory Shepelev
  2024-05-24 17:38   ` Leo Famulari
@ 2024-05-24 17:47   ` Grigory Shepelev
  1 sibling, 0 replies; 4+ messages in thread
From: Grigory Shepelev @ 2024-05-24 17:47 UTC (permalink / raw)
  To: 71141


[-- Attachment #1.1: Type: text/plain, Size: 1504 bytes --]

Fixed the license. It's "expat".

пт, 24 мая 2024 г. в 18:58, Grigory Shepelev <shegeley@gmail.com>:

> Caught a mistake. Not sure about the license. Not GPL probably. From
> https://srfi.schemers.org/srfi-126/srfi-126.html:
>
> «Copyright (C) Taylan Ulrich Bayırlı/Kammer (2015, 2016). All Rights
> Reserved.
>
> Permission is hereby granted, free of charge, to any person obtaining a
> copy of this software and associated documentation files (the "Software"),
> to deal in the Software without restriction, including without limitation
> the rights to use, copy, modify, merge, publish, distribute, sublicense,
> and/or sell copies of the Software, and to permit persons to whom the
> Software is furnished to do so, subject to the following conditions:
>
> The above copyright notice and this permission notice shall be included in
> all copies or substantial portions of the Software.
>
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
> FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
> DEALINGS IN THE SOFTWARE.»
>
>
> чт, 23 мая 2024 г. в 12:04, Grigory Shepelev <shegeley@gmail.com>:
>
>>
>>

[-- Attachment #1.2: Type: text/html, Size: 2252 bytes --]

[-- Attachment #2: 0001-gnu-packages-guile-xyz-guile-srfi-126.patch --]
[-- Type: application/x-patch, Size: 2621 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2024-05-24 17:49 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-23  9:04 [bug#71141] (gnu packages guile-xyz): + srfi-126 Grigory Shepelev
2024-05-24 15:58 ` Grigory Shepelev
2024-05-24 17:38   ` Leo Famulari
2024-05-24 17:47   ` Grigory Shepelev

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).