emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#39622: closed ([PATCH 3/4] gnu: Add lmdbxx.)


From: GNU bug Tracking System
Subject: bug#39622: closed ([PATCH 3/4] gnu: Add lmdbxx.)
Date: Sat, 15 Feb 2020 21:35:03 +0000

Your message dated Sat, 15 Feb 2020 22:34:16 +0100
with message-id 
<87lfp3fsbr.fsf@guixSD.i-did-not-set--mail-host-address--so-tickle-me>
and subject line Re: bug#39622: Acknowledgement ([PATCH 3/4] gnu: Add lmdbxx.)
has caused the debbugs.gnu.org bug report #39622,
regarding [PATCH 3/4] gnu: Add lmdbxx.
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden.)


-- 
39622: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=39622
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH 3/4] gnu: Add lmdbxx. Date: Sat, 15 Feb 2020 22:30:29 +0100
* gnu/packages/databases.scm (lmdbxx): New variable.
---
 gnu/packages/databases.scm | 31 ++++++++++++++++++++++++++++++-
 1 file changed, 30 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index 587d993918..58ad64418e 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -2105,6 +2105,35 @@ multiple cores.  The size of each database is limited 
only by the size of the
 virtual address space — not physical RAM.")
     (license license:openldap2.8)))
 
+(define-public lmdbxx
+  (package
+    (name "lmdbxx")
+    (version "0.9.14.0")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/drycpp/lmdbxx.git";)
+                    (commit (string-append version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "1jmb9wg2iqag6ps3z71bh72ymbcjrb6clwlkgrqf1sy80qwvlsn6"))))
+    (arguments
+     `(#:make-flags (list
+                     (string-append "PREFIX=" (assoc-ref %outputs "out")))
+       #:phases
+       (modify-phases %standard-phases
+         (delete 'configure))))
+    (inputs `(("lmdb" ,lmdb)))
+    (build-system gnu-build-system)
+    (home-page "http://lmdbxx.sourceforge.net";)
+    (synopsis "C++11 wrapper for the LMDB embedded B+ tree database library")
+    (description "@code{lmdbxx} is a comprehensive @code{C++} wrapper for the
+@code{LMDB} embedded database library, offering both an error-checked
+procedural interface and an object-oriented resource interface with RAII
+semantics.")
+    (license license:unlicense)))
+
 (define-public libpqxx
   (package
     (name "libpqxx")
@@ -2122,7 +2151,7 @@ virtual address space — not physical RAM.")
      `(("python" ,python-2)))
     (inputs `(("postgresql" ,postgresql)))
     (arguments
-     `(#:tests? #f   ; # FAIL:  1
+     `(#:tests? #f                      ; # FAIL:  1
        #:phases
        (modify-phases %standard-phases
          (add-before 'configure 'fix-sed-command
-- 
2.25.0




--- End Message ---
--- Begin Message --- Subject: Re: bug#39622: Acknowledgement ([PATCH 3/4] gnu: Add lmdbxx.) Date: Sat, 15 Feb 2020 22:34:16 +0100
address@hidden (GNU bug Tracking System) writes:

> Thank you for filing a new bug report with debbugs.gnu.org.
>
> This is an automatically generated reply to let you know your message
> has been received.
>
> Your message is being forwarded to the package maintainers and other
> interested parties for their attention; they will reply in due course.
>
> Your message has been sent to the package maintainer(s):
>  address@hidden
>
> If you wish to submit further information on this problem, please
> send it to address@hidden.
>
> Please do not send mail to address@hidden unless you wish
> to report a problem with the Bug-tracking system.
>
> -- 
> 39622: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=39622
> GNU Bug Tracking System
> Contact address@hidden with problems


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]