unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#48822] [PATCH 1/3] gnu: lmdbxx: Update to 1.0.0.
@ 2021-06-03 23:17 Ron Nazarov via Guix-patches via
  2021-06-03 23:22 ` [bug#48822] [PATCH 2/3] gnu: mtxclient: Update to 0.5.1 Ron Nazarov via Guix-patches via
  2021-06-03 23:23 ` [bug#48822] [PATCH 3/3] gnu: nheko: Update to 0.8.2 Ron Nazarov via Guix-patches via
  0 siblings, 2 replies; 5+ messages in thread
From: Ron Nazarov via Guix-patches via @ 2021-06-03 23:17 UTC (permalink / raw)
  To: 48822; +Cc: Ron Nazarov

* gnu/packages/databases.scm (lmdbxx): Update to 1.0.0.
---
 gnu/packages/databases.scm | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index cd760ee5ef..355225d56e 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -52,6 +52,7 @@
 ;;; Copyright © 2021 Pjotr Prins <pjotr.guix@thebird.nl>
 ;;; Copyright © 2021 Bonface Munyoki Kilyungi <me@bonfacemunyoki.com>
 ;;; Copyright © 2021 Simon Streit <simon@netpanic.org>
+;;; Copyright © 2021 Noisytoot <noisytoot@disroot.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -2441,16 +2442,16 @@ virtual address space — not physical RAM.")
 (define-public lmdbxx
   (package
     (name "lmdbxx")
-    (version "0.9.14.0")
+    (version "1.0.0")
     (source
      (origin
        (method git-fetch)
        (uri (git-reference
-             (url "https://github.com/drycpp/lmdbxx")
+             (url "https://github.com/hoytech/lmdbxx")
              (commit version)))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "1jmb9wg2iqag6ps3z71bh72ymbcjrb6clwlkgrqf1sy80qwvlsn6"))))
+        (base32 "12k5rz74d1l0skcks9apry1svkl96g9lf5dcgylgjmh7v1jm0b7c"))))
     (arguments
      `(#:make-flags
        (list (string-append "PREFIX=" (assoc-ref %outputs "out")))
@@ -2459,7 +2460,7 @@ virtual address space — not physical RAM.")
          (delete 'configure))))
     (build-system gnu-build-system)
     (inputs `(("lmdb" ,lmdb)))
-    (home-page "http://lmdbxx.sourceforge.net")
+    (home-page "https://github.com/hoytech/lmdbxx")
     (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
-- 
2.31.1





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

* [bug#48822] [PATCH 2/3] gnu: mtxclient: Update to 0.5.1.
  2021-06-03 23:17 [bug#48822] [PATCH 1/3] gnu: lmdbxx: Update to 1.0.0 Ron Nazarov via Guix-patches via
@ 2021-06-03 23:22 ` Ron Nazarov via Guix-patches via
  2021-06-03 23:23 ` [bug#48822] [PATCH 3/3] gnu: nheko: Update to 0.8.2 Ron Nazarov via Guix-patches via
  1 sibling, 0 replies; 5+ messages in thread
From: Ron Nazarov via Guix-patches via @ 2021-06-03 23:22 UTC (permalink / raw)
  To: 48822; +Cc: Ron Nazarov

* gnu/packages/messaging.scm (mtxclient): Update to 0.5.1.
---
 gnu/packages/messaging.scm | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index b326b68952..158ee472f5 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -28,6 +28,7 @@
 ;;; Copyright © 2020 Raghav Gururajan <raghavgururajan@disroot.org>
 ;;; Copyright © 2020, 2021 Robert Karszniewicz <avoidr@posteo.de>
 ;;; Copyright © 2020 Giacomo Leidi <goodoldpaul@autistici.org>
+;;; Copyright © 2021 Noisytoot <noisytoot@disroot.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -2241,7 +2242,7 @@ QMatrixClient project.")
 (define-public mtxclient
   (package
     (name "mtxclient")
-    (version "0.3.1")
+    (version "0.5.1")
     (source
      (origin
        (method git-fetch)
@@ -2250,7 +2251,7 @@ QMatrixClient project.")
              (commit (string-append "v" version))))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "1dg4dq20g0ah62j5s3gpsxqq4ny7lxkxdxa9q6g54hdwkrb9ms7x"))))
+        (base32 "1xznfx2bhw0ahwmkxm0rs05vz05ijk5k4190rj6qp3bvb9byiajh"))))
     (arguments
      `(#:configure-flags
        (list
-- 
2.31.1





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

* [bug#48822] [PATCH 3/3] gnu: nheko: Update to 0.8.2.
  2021-06-03 23:17 [bug#48822] [PATCH 1/3] gnu: lmdbxx: Update to 1.0.0 Ron Nazarov via Guix-patches via
  2021-06-03 23:22 ` [bug#48822] [PATCH 2/3] gnu: mtxclient: Update to 0.5.1 Ron Nazarov via Guix-patches via
@ 2021-06-03 23:23 ` Ron Nazarov via Guix-patches via
  2021-06-03 23:33   ` Nicolò Balzarotti
  1 sibling, 1 reply; 5+ messages in thread
From: Ron Nazarov via Guix-patches via @ 2021-06-03 23:23 UTC (permalink / raw)
  To: 48822; +Cc: Ron Nazarov

* gnu/packages/messaging.scm (nheko): Update to 0.8.2.
---
 gnu/packages/messaging.scm | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index 158ee472f5..24e122f9c2 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -2292,7 +2292,7 @@ for the Matrix protocol.  It is built on to of @code{Boost.Asio}.")
 (define-public nheko
   (package
     (name "nheko")
-    (version "0.7.2")
+    (version "0.8.2")
     (source
      (origin
        (method git-fetch)
@@ -2301,7 +2301,7 @@ for the Matrix protocol.  It is built on to of @code{Boost.Asio}.")
              (commit (string-append "v" version))))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "1cbhgaf9klgxdirrxj571fqwspm0byl75c1xc40l727a6qswvp7s"))))
+        (base32 "0362hkbprc6jqlgmvzwxyvify4b1ldjakyqdz55m25xsypbpv2f3"))))
     (arguments
      `(#:tests? #f                      ;no test target
        #:configure-flags
@@ -2337,7 +2337,8 @@ for the Matrix protocol.  It is built on to of @code{Boost.Asio}.")
        ("qtquickcontrols2" ,qtquickcontrols2)
        ("qtsvg" ,qtsvg)
        ("spdlog" ,spdlog)
-       ("tweeny" ,tweeny)
+       ("qtkeychain" ,qtkeychain)
+       ("libxcb" ,libxcb)               ; for screensharing on X
        ("zlib" ,zlib)))
     (native-inputs
      `(("pkg-config" ,pkg-config)
-- 
2.31.1





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

* [bug#48822] [PATCH 3/3] gnu: nheko: Update to 0.8.2.
  2021-06-03 23:23 ` [bug#48822] [PATCH 3/3] gnu: nheko: Update to 0.8.2 Ron Nazarov via Guix-patches via
@ 2021-06-03 23:33   ` Nicolò Balzarotti
  2022-09-15  8:48     ` bug#48822: [PATCH 1/3] gnu: lmdbxx: Update to 1.0.0 Michael Rohleder
  0 siblings, 1 reply; 5+ messages in thread
From: Nicolò Balzarotti @ 2021-06-03 23:33 UTC (permalink / raw)
  To: 48822; +Cc: Ron Nazarov

Ron Nazarov via Guix-patches via <guix-patches@gnu.org> writes:

> * gnu/packages/messaging.scm (nheko): Update to 0.8.2.
Hi, please, take a look at bug#46012.

There's a long discussion there, where we unbundle few things.  It would
be nice if nheko could be finally upgraded.


Thanks, Nicolò





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

* bug#48822: [PATCH 1/3] gnu: lmdbxx: Update to 1.0.0.
  2021-06-03 23:33   ` Nicolò Balzarotti
@ 2022-09-15  8:48     ` Michael Rohleder
  0 siblings, 0 replies; 5+ messages in thread
From: Michael Rohleder @ 2022-09-15  8:48 UTC (permalink / raw)
  To: Nicolò Balzarotti; +Cc: 48822-done, Ron Nazarov

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

I think this can be closed as we have merged #46012 (and several
versions of nheko after that).

-- 
I hear and I forget. I see and I remember. I write and I understand.

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

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

end of thread, other threads:[~2022-09-15  9:08 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-03 23:17 [bug#48822] [PATCH 1/3] gnu: lmdbxx: Update to 1.0.0 Ron Nazarov via Guix-patches via
2021-06-03 23:22 ` [bug#48822] [PATCH 2/3] gnu: mtxclient: Update to 0.5.1 Ron Nazarov via Guix-patches via
2021-06-03 23:23 ` [bug#48822] [PATCH 3/3] gnu: nheko: Update to 0.8.2 Ron Nazarov via Guix-patches via
2021-06-03 23:33   ` Nicolò Balzarotti
2022-09-15  8:48     ` bug#48822: [PATCH 1/3] gnu: lmdbxx: Update to 1.0.0 Michael Rohleder

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