From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:59894) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fK3K7-00066d-2k for guix-patches@gnu.org; Sat, 19 May 2018 10:59:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fK3K2-00035y-P7 for guix-patches@gnu.org; Sat, 19 May 2018 10:59:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:33271) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fK3K2-00035n-KB for guix-patches@gnu.org; Sat, 19 May 2018 10:59:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fK3K2-0001PV-DM for guix-patches@gnu.org; Sat, 19 May 2018 10:59:02 -0400 Subject: [bug#31527] [PATCH] gnu: Add guile-sparql. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:59768) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fK3JF-00063l-Mg for guix-patches@gnu.org; Sat, 19 May 2018 10:58:14 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fK3JB-0002rv-6X for guix-patches@gnu.org; Sat, 19 May 2018 10:58:13 -0400 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:46757) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fK3JB-0002rp-2P for guix-patches@gnu.org; Sat, 19 May 2018 10:58:09 -0400 Received: from ip112-245-209-87.adsl2.static.versatel.nl ([87.209.245.112]:60688 helo=yellowstone) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1fK3JA-0005HW-FM for guix-patches@gnu.org; Sat, 19 May 2018 10:58:08 -0400 From: Roel Janssen Date: Sat, 19 May 2018 16:58:01 +0200 Message-ID: <87a7sv3d6u.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 31527@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Dear Guix, I'd like to add ‘guile-sparql’. Kind regards, Roel Janssen --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-gnu-Add-guile-sparql.patch >From a0d6909eb6ddfaa0c0fefc3f17ded13e2f86aeee Mon Sep 17 00:00:00 2001 From: Roel Janssen Date: Sat, 19 May 2018 16:46:34 +0200 Subject: [PATCH] gnu: Add guile-sparql. * gnu/packages/guile.scm (guile-sparql): New variable. --- gnu/packages/guile.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm index 84f46d1cc..8c704bebc 100644 --- a/gnu/packages/guile.scm +++ b/gnu/packages/guile.scm @@ -2336,4 +2336,28 @@ allows users to interact with the Guile REPL through Jupyter.") (home-page "https://github.com/jerry40/guile-kernel") (license license:gpl3+)))) +(define-public guile-sparql + (package + (name "guile-sparql") + (version "0.0.7") + (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")))) + (build-system gnu-build-system) + (arguments `(#:tests? #f)) ; There are no tests. + (native-inputs + `(("pkg-config" ,pkg-config))) + (inputs + `(("guile" ,guile-2.2))) + (home-page "https://github.com/roelj/guile-sparql") + (synopsis "SPARQL module for Guile") + (description "This package provides the functionality to query a SPARQL +endpoint. Additionally, it provides an interface to write SPARQL queries +using S-expressions.") + (license license:gpl3+))) + ;;; guile.scm ends here -- 2.17.0 --=-=-=--