unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#43085] [PATCH] gnu: Add hdt-cpp.
@ 2020-08-28 10:22 pukkamustard
  2020-08-28 23:27 ` Leo Famulari
  0 siblings, 1 reply; 4+ messages in thread
From: pukkamustard @ 2020-08-28 10:22 UTC (permalink / raw)
  To: 43085

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

Hi Guix,

Tested by installing and running the command-line tools as well as 
using
C++ library with the example programs.

-pukkamustard


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-Add-hdt-cpp.patch --]
[-- Type: text/x-patch, Size: 1750 bytes --]

From e1033cab6f57503fdc5d08637058ca74e039a429 Mon Sep 17 00:00:00 2001
From: pukkamustard <pukkamustard@posteo.net>
Date: Fri, 28 Aug 2020 12:03:42 +0200
Subject: [PATCH] gnu: Add hdt-cpp.

* gnu/packages/rdf.scm (hdt-cpp): New variable.
---
 gnu/packages/rdf.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/rdf.scm b/gnu/packages/rdf.scm
index e68e57818d..13c0cc6011 100644
--- a/gnu/packages/rdf.scm
+++ b/gnu/packages/rdf.scm
@@ -54,6 +54,35 @@
   #:use-module (gnu packages tls)
   #:use-module (gnu packages xml))
 
+(define-public hdt-cpp
+  (package
+    (name "hdt-cpp")
+    (version "1.3.3")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                     (url "https://github.com/rdfhdt/hdt-cpp")
+                     (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "1vsq80jnix6cy78ayag7v8ajyw7h8dqyad1q6xkf2hzz3skvr34z"))))
+    (build-system gnu-build-system)
+    (inputs
+     `(("serd" ,serd)
+       ("zlib" ,zlib)))
+    (native-inputs
+     `(("autoconf" ,autoconf)
+       ("automake" ,automake)
+       ("libtool" ,libtool)
+       ("pkg-config" ,pkg-config)))
+    (home-page "https://github.com/rdfhdt/hdt-cpp")
+    (synopsis "C++ implementation of the HDT compression format")
+    (description "Header Dictionary Triples (HDT) is a compression format for
+RDF data that can also be queried for Triple Patterns.  This package provides a
+C++ library as well as various command-line tools to to work with HDT.")
+(license license:lgpl2.1+)))
+
 (define-public raptor2
   (package
     (name "raptor2")
-- 
2.28.0


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

* [bug#43085] [PATCH] gnu: Add hdt-cpp.
  2020-08-28 10:22 [bug#43085] [PATCH] gnu: Add hdt-cpp pukkamustard
@ 2020-08-28 23:27 ` Leo Famulari
  2020-08-29  6:01   ` pukkamustard
  0 siblings, 1 reply; 4+ messages in thread
From: Leo Famulari @ 2020-08-28 23:27 UTC (permalink / raw)
  To: pukkamustard; +Cc: 43085

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

On Fri, Aug 28, 2020 at 12:22:39PM +0200, pukkamustard wrote:
> Tested by installing and running the command-line tools as well as using
> C++ library with the example programs.

> From e1033cab6f57503fdc5d08637058ca74e039a429 Mon Sep 17 00:00:00 2001
> From: pukkamustard <pukkamustard@posteo.net>
> Date: Fri, 28 Aug 2020 12:03:42 +0200
> Subject: [PATCH] gnu: Add hdt-cpp.
> 
> * gnu/packages/rdf.scm (hdt-cpp): New variable.

Thanks! Looks good to me.

I'll need to add you to the list of authors of 'gnu/packages/rdf.scm'.
Should I credit you as "pukkamustard <pukkamustard@posteo.net>"?

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

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

* [bug#43085] [PATCH] gnu: Add hdt-cpp.
  2020-08-28 23:27 ` Leo Famulari
@ 2020-08-29  6:01   ` pukkamustard
  2020-08-29 18:27     ` bug#43085: " Leo Famulari
  0 siblings, 1 reply; 4+ messages in thread
From: pukkamustard @ 2020-08-29  6:01 UTC (permalink / raw)
  To: Leo Famulari; +Cc: 43085


> Thanks! Looks good to me.

Woo-hoo!

> I'll need to add you to the list of authors of 
> 'gnu/packages/rdf.scm'.
> Should I credit you as "pukkamustard <pukkamustard@posteo.net>"?

Yes, that is perfect.

Thanks!
-pukkamustard





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

* bug#43085: [PATCH] gnu: Add hdt-cpp.
  2020-08-29  6:01   ` pukkamustard
@ 2020-08-29 18:27     ` Leo Famulari
  0 siblings, 0 replies; 4+ messages in thread
From: Leo Famulari @ 2020-08-29 18:27 UTC (permalink / raw)
  To: pukkamustard; +Cc: 43085-done

On Sat, Aug 29, 2020 at 08:01:20AM +0200, pukkamustard wrote:
> > I'll need to add you to the list of authors of 'gnu/packages/rdf.scm'.
> > Should I credit you as "pukkamustard <pukkamustard@posteo.net>"?
> 
> Yes, that is perfect.

Great! Pushed as 4aaa27e4d2d9edbd919a1e87eb8e9c0feb895444




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

end of thread, other threads:[~2020-08-29 18:28 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-08-28 10:22 [bug#43085] [PATCH] gnu: Add hdt-cpp pukkamustard
2020-08-28 23:27 ` Leo Famulari
2020-08-29  6:01   ` pukkamustard
2020-08-29 18:27     ` bug#43085: " Leo Famulari

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