unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#44227] [PATCH]  gnu: guile-sparql: Update to 0.0.8.
@ 2020-10-26  0:39 Giacomo Leidi
  2020-10-26  7:51 ` Roel Janssen
  0 siblings, 1 reply; 3+ messages in thread
From: Giacomo Leidi @ 2020-10-26  0:39 UTC (permalink / raw)
  To: 44227; +Cc: Giacomo Leidi

* gnu/packages/guile-xyz.scm (guile-sparql): Update to 0.0.8.
[arguments]: Enable tests.
[inputs]: Switch to Guile 3.0.
---
 gnu/packages/guile-xyz.scm | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm
index 88c0586dc9..6cdf3e1604 100644
--- a/gnu/packages/guile-xyz.scm
+++ b/gnu/packages/guile-xyz.scm
@@ -1064,20 +1064,19 @@ allows users to interact with the Guile REPL through Jupyter.")
 (define-public guile-sparql
   (package
    (name "guile-sparql")
-   (version "0.0.7")
+   (version "0.0.8")
    (source (origin
             (method url-fetch)
             (uri (string-append
                   "https://github.com/roelj/guile-sparql/releases/download/"
                   version "/guile-sparql-" version ".tar.gz"))
             (sha256
-             (base32 "1drnvhsgl0gc5crmb16yyw1j98nkhwwcgssv9vgm36ng43nnzffd"))))
+             (base32 "1jf4972f9fpm0rd865xpnc9mzl3xv6vhfnp0iygadydy905z9nln"))))
    (build-system gnu-build-system)
-   (arguments `(#:tests? #f)) ; There are no tests.
    (native-inputs
     `(("pkg-config" ,pkg-config)))
    (inputs
-    `(("guile" ,guile-2.2)))
+    `(("guile" ,guile-3.0)))
    (home-page "https://github.com/roelj/guile-sparql")
    (synopsis "SPARQL module for Guile")
    (description "This package provides the functionality to query a SPARQL
-- 
2.28.0





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

* [bug#44227] [PATCH]  gnu: guile-sparql: Update to 0.0.8.
  2020-10-26  0:39 [bug#44227] [PATCH] gnu: guile-sparql: Update to 0.0.8 Giacomo Leidi
@ 2020-10-26  7:51 ` Roel Janssen
  2020-10-27  9:47   ` bug#44227: " Christopher Baines
  0 siblings, 1 reply; 3+ messages in thread
From: Roel Janssen @ 2020-10-26  7:51 UTC (permalink / raw)
  To: Giacomo Leidi, 44227

Hi Giacomo,

Thank you for your work on guile-sparql, and for this patch!

On Mon, 2020-10-26 at 01:39 +0100, Giacomo Leidi wrote:
> * gnu/packages/guile-xyz.scm (guile-sparql): Update to 0.0.8.
> [arguments]: Enable tests.
> [inputs]: Switch to Guile 3.0.
> ---
>  gnu/packages/guile-xyz.scm | 7 +++----
>  1 file changed, 3 insertions(+), 4 deletions(-)
> 
> diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm
> index 88c0586dc9..6cdf3e1604 100644
> --- a/gnu/packages/guile-xyz.scm
> +++ b/gnu/packages/guile-xyz.scm
> @@ -1064,20 +1064,19 @@ allows users to interact with the Guile REPL
> through Jupyter.")
>  (define-public guile-sparql
>    (package
>     (name "guile-sparql")
> -   (version "0.0.7")
> +   (version "0.0.8")
>     (source (origin
>              (method url-fetch)
>              (uri (string-append
>                   
> "https://github.com/roelj/guile-sparql/releases/download/"
>                    version "/guile-sparql-" version ".tar.gz"))
>              (sha256
> -             (base32
> "1drnvhsgl0gc5crmb16yyw1j98nkhwwcgssv9vgm36ng43nnzffd"))))
> +             (base32
> "1jf4972f9fpm0rd865xpnc9mzl3xv6vhfnp0iygadydy905z9nln"))))
>     (build-system gnu-build-system)
> -   (arguments `(#:tests? #f)) ; There are no tests.
>     (native-inputs
>      `(("pkg-config" ,pkg-config)))
>     (inputs
> -    `(("guile" ,guile-2.2)))
> +    `(("guile" ,guile-3.0)))
>     (home-page "https://github.com/roelj/guile-sparql")
>     (synopsis "SPARQL module for Guile")
>     (description "This package provides the functionality to query a
> SPARQL

LGTM! Pushed in 22213308f3bcc41bd2356ccbb7350a74c1426a0a.

Kind regards,
Roel Janssen






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

* bug#44227: [PATCH]  gnu: guile-sparql: Update to 0.0.8.
  2020-10-26  7:51 ` Roel Janssen
@ 2020-10-27  9:47   ` Christopher Baines
  0 siblings, 0 replies; 3+ messages in thread
From: Christopher Baines @ 2020-10-27  9:47 UTC (permalink / raw)
  To: 44227-done

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


Roel Janssen <roel@gnu.org> writes:

> Hi Giacomo,
>
> Thank you for your work on guile-sparql, and for this patch!
>
> On Mon, 2020-10-26 at 01:39 +0100, Giacomo Leidi wrote:
>> * gnu/packages/guile-xyz.scm (guile-sparql): Update to 0.0.8.
>> [arguments]: Enable tests.
>> [inputs]: Switch to Guile 3.0.
>> ---
>>  gnu/packages/guile-xyz.scm | 7 +++----
>>  1 file changed, 3 insertions(+), 4 deletions(-)
>> 
>> diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm
>> index 88c0586dc9..6cdf3e1604 100644
>> --- a/gnu/packages/guile-xyz.scm
>> +++ b/gnu/packages/guile-xyz.scm
>> @@ -1064,20 +1064,19 @@ allows users to interact with the Guile REPL
>> through Jupyter.")
>>  (define-public guile-sparql
>>    (package
>>     (name "guile-sparql")
>> -   (version "0.0.7")
>> +   (version "0.0.8")
>>     (source (origin
>>              (method url-fetch)
>>              (uri (string-append
>>                   
>> "https://github.com/roelj/guile-sparql/releases/download/"
>>                    version "/guile-sparql-" version ".tar.gz"))
>>              (sha256
>> -             (base32
>> "1drnvhsgl0gc5crmb16yyw1j98nkhwwcgssv9vgm36ng43nnzffd"))))
>> +             (base32
>> "1jf4972f9fpm0rd865xpnc9mzl3xv6vhfnp0iygadydy905z9nln"))))
>>     (build-system gnu-build-system)
>> -   (arguments `(#:tests? #f)) ; There are no tests.
>>     (native-inputs
>>      `(("pkg-config" ,pkg-config)))
>>     (inputs
>> -    `(("guile" ,guile-2.2)))
>> +    `(("guile" ,guile-3.0)))
>>     (home-page "https://github.com/roelj/guile-sparql")
>>     (synopsis "SPARQL module for Guile")
>>     (description "This package provides the functionality to query a
>> SPARQL
>
> LGTM! Pushed in 22213308f3bcc41bd2356ccbb7350a74c1426a0a.

Looks like this has been pushed, so I'm closing the bug.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 987 bytes --]

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

end of thread, other threads:[~2020-10-27  9:48 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-26  0:39 [bug#44227] [PATCH] gnu: guile-sparql: Update to 0.0.8 Giacomo Leidi
2020-10-26  7:51 ` Roel Janssen
2020-10-27  9:47   ` bug#44227: " Christopher Baines

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