* [bug#72564] [PATCH 0/6] gnu: gajim: Update to 1.9.3.
@ 2024-08-10 17:16 Morgan Smith
2024-08-10 17:27 ` [bug#72564] [PATCH 1/6] gnu: python-nbxmpp: Update to 5.0.3 Morgan Smith
` (2 more replies)
0 siblings, 3 replies; 9+ messages in thread
From: Morgan Smith @ 2024-08-10 17:16 UTC (permalink / raw)
To: 72564; +Cc: lars, marius, me, sharlatanus, tanguy, jgart
[PATCH 1/6] gnu: python-nbxmpp: Update to 5.0.3.
[PATCH 2/6] gnu: Add python-protobuf-5.
[PATCH 3/6] gnu: Add python-omemo-dr.
[PATCH 4/6] gnu: gajim: Update to 1.9.3.
[PATCH 5/6] gnu: Remove gajim-omemo.
[PATCH 6/6] gnu: gajim-openpgp: Update to 1.6.1.
^ permalink raw reply [flat|nested] 9+ messages in thread
* [bug#72564] [PATCH 1/6] gnu: python-nbxmpp: Update to 5.0.3.
2024-08-10 17:16 [bug#72564] [PATCH 0/6] gnu: gajim: Update to 1.9.3 Morgan Smith
@ 2024-08-10 17:27 ` Morgan Smith
2024-11-23 15:22 ` [bug#72564] QA review for 72564 Luca Matei Pintilie via Guix-patches via
2024-11-23 16:58 ` [bug#72564] [PATCH v2 1/6] gnu: python-nbxmpp: Update to 5.0.3 Luca Matei Pintilie via Guix-patches via
2 siblings, 0 replies; 9+ messages in thread
From: Morgan Smith @ 2024-08-10 17:27 UTC (permalink / raw)
To: 72564; +Cc: Morgan Smith
* gnu/packages/messaging.scm (python-nbxmpp): Update to 5.0.3.
Change-Id: Id1c4cb770123e9ed4a7fa846107eb38df412bc10
---
gnu/packages/messaging.scm | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index da04c34636..c2089260da 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -1146,13 +1146,13 @@ (define-public znc
(define-public python-nbxmpp
(package
(name "python-nbxmpp")
- (version "4.2.2")
+ (version "5.0.3")
(source
(origin
(method url-fetch)
(uri (pypi-uri "nbxmpp" version))
(sha256
- (base32 "095nyy6vjildhrqigxk6vsh49in6mx17bvb3z5zpjmzhv9b8ix46"))))
+ (base32 "1swzbdl1zr34jynhsm1f401h5hdn9p6vw9vxa7vx0gd3ifkmiz7w"))))
(build-system pyproject-build-system)
(arguments
(list
@@ -1162,7 +1162,6 @@ (define-public python-nbxmpp
(replace 'check
(lambda* (#:key tests? #:allow-other-keys)
(when tests? (invoke "python" "-m" "unittest" "-v")))))))
- (native-inputs (list `(,glib "bin")))
(inputs
(list glib
glib-networking
--
2.45.2
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [bug#72564] QA review for 72564
2024-08-10 17:16 [bug#72564] [PATCH 0/6] gnu: gajim: Update to 1.9.3 Morgan Smith
2024-08-10 17:27 ` [bug#72564] [PATCH 1/6] gnu: python-nbxmpp: Update to 5.0.3 Morgan Smith
@ 2024-11-23 15:22 ` Luca Matei Pintilie via Guix-patches via
2024-11-23 16:58 ` [bug#72564] [PATCH v2 1/6] gnu: python-nbxmpp: Update to 5.0.3 Luca Matei Pintilie via Guix-patches via
2 siblings, 0 replies; 9+ messages in thread
From: Luca Matei Pintilie via Guix-patches via @ 2024-11-23 15:22 UTC (permalink / raw)
To: control, 72564
[-- Attachment #1: Type: text/plain, Size: 611 bytes --]
user guix
usertag 72564 + reviewed-looks-good
thanks
Guix QA review form submission:
Tested on x86_64 on voidlinux, and it works as expected. OMEMO messages
and everything
The only comment I have on the actual code is that gajim-omemo should
maybe not be removed, and maybe deprecated instead, as per the
Deprecation Policy.
https://guix.gnu.org/manual/devel/en/html_node/Deprecation-Policy.html
In any case, I am interested in this gajim and this update works for me!
Items marked as checked: Package builds, Commit messages, New package licenses, New package tests, New package synopsis and descriptions
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* [bug#72564] [PATCH v2 1/6] gnu: python-nbxmpp: Update to 5.0.3.
2024-08-10 17:16 [bug#72564] [PATCH 0/6] gnu: gajim: Update to 1.9.3 Morgan Smith
2024-08-10 17:27 ` [bug#72564] [PATCH 1/6] gnu: python-nbxmpp: Update to 5.0.3 Morgan Smith
2024-11-23 15:22 ` [bug#72564] QA review for 72564 Luca Matei Pintilie via Guix-patches via
@ 2024-11-23 16:58 ` Luca Matei Pintilie via Guix-patches via
2024-11-23 16:58 ` [bug#72564] [PATCH v2 2/6] gnu: Add python-protobuf-5 Luca Matei Pintilie via Guix-patches via
` (4 more replies)
2 siblings, 5 replies; 9+ messages in thread
From: Luca Matei Pintilie via Guix-patches via @ 2024-11-23 16:58 UTC (permalink / raw)
To: 72564
Cc: Morgan Smith, Luca Matei Pintilie, lars, marius, me, sharlatanus,
tanguy, jga
From: Morgan Smith <Morgan.J.Smith@outlook.com>
* gnu/packages/messaging.scm (python-nbxmpp): Update to 5.0.3.
Change-Id: Id1c4cb770123e9ed4a7fa846107eb38df412bc10
Signed-off-by: Luca Matei Pintilie <luca@lucamatei.com>
---
gnu/packages/messaging.scm | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index f16e61bf09..92910b8977 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -1161,13 +1161,13 @@ (define-public znc
(define-public python-nbxmpp
(package
(name "python-nbxmpp")
- (version "4.2.2")
+ (version "5.0.3")
(source
(origin
(method url-fetch)
(uri (pypi-uri "nbxmpp" version))
(sha256
- (base32 "095nyy6vjildhrqigxk6vsh49in6mx17bvb3z5zpjmzhv9b8ix46"))))
+ (base32 "1swzbdl1zr34jynhsm1f401h5hdn9p6vw9vxa7vx0gd3ifkmiz7w"))))
(build-system pyproject-build-system)
(arguments
(list
@@ -1177,7 +1177,6 @@ (define-public python-nbxmpp
(replace 'check
(lambda* (#:key tests? #:allow-other-keys)
(when tests? (invoke "python" "-m" "unittest" "-v")))))))
- (native-inputs (list `(,glib "bin")))
(inputs
(list glib
glib-networking
--
2.47.0
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [bug#72564] [PATCH v2 2/6] gnu: Add python-protobuf-5.
2024-11-23 16:58 ` [bug#72564] [PATCH v2 1/6] gnu: python-nbxmpp: Update to 5.0.3 Luca Matei Pintilie via Guix-patches via
@ 2024-11-23 16:58 ` Luca Matei Pintilie via Guix-patches via
2024-11-23 16:58 ` [bug#72564] [PATCH v2 3/6] gnu: Add python-omemo-dr Luca Matei Pintilie via Guix-patches via
` (3 subsequent siblings)
4 siblings, 0 replies; 9+ messages in thread
From: Luca Matei Pintilie via Guix-patches via @ 2024-11-23 16:58 UTC (permalink / raw)
To: 72564
Cc: Morgan Smith, Luca Matei Pintilie, lars, marius, me, sharlatanus,
tanguy, jga
From: Morgan Smith <Morgan.J.Smith@outlook.com>
* gnu/packages/protobuf.scm (python-protobuf-5): New variable.
Change-Id: Ic181a92bc0e3eb66adf535d98b192cbb006028ad
Signed-off-by: Luca Matei Pintilie <luca@lucamatei.com>
---
gnu/packages/protobuf.scm | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git a/gnu/packages/protobuf.scm b/gnu/packages/protobuf.scm
index b8679eff25..59f49c8cf4 100644
--- a/gnu/packages/protobuf.scm
+++ b/gnu/packages/protobuf.scm
@@ -436,6 +436,39 @@ (define-public python-nanopb
(propagated-inputs (list python-protobuf))
(synopsis "Small code-size Protocol Buffers implementation in Python")))
+(define-public python-protobuf-5
+ (package
+ (name "python-protobuf")
+ (version "5.27.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "protobuf" version))
+ (sha256
+ (base32
+ "0b6qxb6hnhzmiz1wnjrjdmwxx2ddv9zr86p89vivgwj0wq1hjil2"))))
+ (build-system pyproject-build-system)
+ (arguments
+ (list
+ ;; FIXME: ImportError: 'testing_refleaks' module incorrectly imported from
+ ;; '/gnu/store/...-python-protobuf-5.27.3/lib/python3.10/site-packages/google/protobuf/internal'.
+ ;; Expected '/tmp/guix-build-python-protobuf-5.27.3.drv-0/protobuf-5.27.3/google/protobuf/internal'.
+ ;; Is this module globally installed?
+ #:tests? #f
+ #:phases
+ #~(modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ (invoke "python" "-m" "unittest" )))))))
+ (inputs (list protobuf))
+ (home-page "https://github.com/protocolbuffers/protobuf")
+ (synopsis "Protocol buffers is a data interchange format")
+ (description
+ "Protocol buffers are a language-neutral, platform-neutral extensible
+mechanism for serializing structured data.")
+ (license license:bsd-3)))
+
(define-public python-protobuf
(package
(name "python-protobuf")
--
2.47.0
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [bug#72564] [PATCH v2 3/6] gnu: Add python-omemo-dr.
2024-11-23 16:58 ` [bug#72564] [PATCH v2 1/6] gnu: python-nbxmpp: Update to 5.0.3 Luca Matei Pintilie via Guix-patches via
2024-11-23 16:58 ` [bug#72564] [PATCH v2 2/6] gnu: Add python-protobuf-5 Luca Matei Pintilie via Guix-patches via
@ 2024-11-23 16:58 ` Luca Matei Pintilie via Guix-patches via
2024-11-23 16:58 ` [bug#72564] [PATCH v2 4/6] gnu: gajim: Update to 1.9.3 Luca Matei Pintilie via Guix-patches via
` (2 subsequent siblings)
4 siblings, 0 replies; 9+ messages in thread
From: Luca Matei Pintilie via Guix-patches via @ 2024-11-23 16:58 UTC (permalink / raw)
To: 72564
Cc: Morgan Smith, Luca Matei Pintilie, lars, marius, me, sharlatanus,
tanguy, jga
From: Morgan Smith <Morgan.J.Smith@outlook.com>
* gnu/packages/python-crypto.scm (python-omemo-dr): New variable.
Change-Id: I06b31e62dff1a740fee832e17200f8905810860a
Signed-off-by: Luca Matei Pintilie <luca@lucamatei.com>
---
gnu/packages/python-crypto.scm | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm
index 3a7f53abee..19df7ef3a9 100644
--- a/gnu/packages/python-crypto.scm
+++ b/gnu/packages/python-crypto.scm
@@ -751,6 +751,27 @@ (define-public python-axolotl
asynchronous messaging environments.")
(license license:gpl3)))
+(define-public python-omemo-dr
+ (package
+ (name "python-omemo-dr")
+ (version "1.0.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://dev.gajim.org/gajim/omemo-dr")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1gx0znbfvs8jg9s754hha81l8wpghswkfsqx2jzpgv6gigf3sm8z"))))
+ (build-system python-build-system)
+ (propagated-inputs
+ (list python-axolotl-curve25519 python-cryptography python-protobuf-5))
+ (home-page "https://dev.gajim.org/gajim/omemo-dr")
+ (synopsis "OMEMO cryptography library")
+ (description "OMEMO cryptography library that was forked from python-axolotl.")
+ (license license:gpl3)))
(define-public python-pyaes
(package
--
2.47.0
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [bug#72564] [PATCH v2 4/6] gnu: gajim: Update to 1.9.3.
2024-11-23 16:58 ` [bug#72564] [PATCH v2 1/6] gnu: python-nbxmpp: Update to 5.0.3 Luca Matei Pintilie via Guix-patches via
2024-11-23 16:58 ` [bug#72564] [PATCH v2 2/6] gnu: Add python-protobuf-5 Luca Matei Pintilie via Guix-patches via
2024-11-23 16:58 ` [bug#72564] [PATCH v2 3/6] gnu: Add python-omemo-dr Luca Matei Pintilie via Guix-patches via
@ 2024-11-23 16:58 ` Luca Matei Pintilie via Guix-patches via
2024-11-23 16:58 ` [bug#72564] [PATCH v2 5/6] gnu: Deprecate gajim-omemo Luca Matei Pintilie via Guix-patches via
2024-11-23 16:58 ` [bug#72564] [PATCH v2 6/6] gnu: gajim-openpgp: Update to 1.6.1 Luca Matei Pintilie via Guix-patches via
4 siblings, 0 replies; 9+ messages in thread
From: Luca Matei Pintilie via Guix-patches via @ 2024-11-23 16:58 UTC (permalink / raw)
To: 72564
Cc: Morgan Smith, Luca Matei Pintilie, lars, marius, me, sharlatanus,
tanguy, jga
From: Morgan Smith <Morgan.J.Smith@outlook.com>
* gnu/packages/messaging.scm (gajim): Update to 1.9.3.
Change-Id: I302a02e6ea9c0f974055a5f44f06c61bcf2fb93e
Signed-off-by: Luca Matei Pintilie <luca@lucamatei.com>
---
gnu/packages/messaging.scm | 30 +++++++++++++++++-------------
1 file changed, 17 insertions(+), 13 deletions(-)
diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index 92910b8977..762381fe0e 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -1195,7 +1195,7 @@ (define-public python-nbxmpp
(define-public gajim
(package
(name "gajim")
- (version "1.7.3")
+ (version "1.9.3")
(source
(origin
(method url-fetch)
@@ -1203,7 +1203,7 @@ (define-public gajim
(version-major+minor version)
"/gajim-" version ".tar.gz"))
(sha256
- (base32 "066kvkjw3qcdanr3nczy0wgcwihk9jc9zhzfr5bwlqvcyxcv7k5p"))
+ (base32 "10rz8pd43a9308kj6csixsmvdc6ccnqkw83adc5cggh1798b45ag"))
(patches
(search-patches "gajim-honour-GAJIM_PLUGIN_PATH.patch"))))
(build-system python-build-system)
@@ -1241,14 +1241,15 @@ (define-public gajim
(invoke "./pep517build/install_metadata.py" "dist/metadata"
(string-append "--prefix=" #$output))))
(replace 'check
- (lambda _
- ;; Tests require a running X server.
- (system "Xvfb :1 +extension GLX &")
- (setenv "DISPLAY" ":1")
- ;; For missing '/etc/machine-id'.
- (setenv "DBUS_FATAL_WARNINGS" "0")
- (invoke "dbus-launch" "python" "-m" "unittest"
- "discover" "-s" "test")))
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ ;; Tests require a running X server.
+ (system "Xvfb :1 +extension GLX &")
+ (setenv "DISPLAY" ":1")
+ ;; For missing '/etc/machine-id'.
+ (setenv "DBUS_FATAL_WARNINGS" "0")
+ (invoke "dbus-launch" "python" "-m" "unittest"
+ "discover" "-s" "test"))))
(add-after 'install 'glib-or-gtk-compile-schemas
(assoc-ref glib-or-gtk:%standard-phases
'glib-or-gtk-compile-schemas))
@@ -1288,9 +1289,7 @@ (define-public gajim
"/site-packages"))))))
(native-inputs
(list gettext-minimal
- `(,glib "bin")
gobject-introspection
- `(,gtk+ "bin")
python-distutils-extra
python-pypa-build
python-setuptools
@@ -1313,22 +1312,27 @@ (define-public gajim
gupnp-igd
libappindicator
libnice
+ libomemo
libsecret
libsoup
libxscrnsaver
network-manager
python-css-parser
python-dbus
+ python-emoji
python-gssapi
python-idna
python-keyring
python-nbxmpp
+ python-omemo-dr
python-packaging
python-pillow
python-precis-i18n
python-pycairo
python-pygobject
- python-pyopenssl))
+ python-pyopenssl
+ python-qrcode
+ python-sqlalchemy-2))
(propagated-inputs
(list dconf))
(synopsis "Fully-featured XMPP client")
--
2.47.0
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [bug#72564] [PATCH v2 5/6] gnu: Deprecate gajim-omemo.
2024-11-23 16:58 ` [bug#72564] [PATCH v2 1/6] gnu: python-nbxmpp: Update to 5.0.3 Luca Matei Pintilie via Guix-patches via
` (2 preceding siblings ...)
2024-11-23 16:58 ` [bug#72564] [PATCH v2 4/6] gnu: gajim: Update to 1.9.3 Luca Matei Pintilie via Guix-patches via
@ 2024-11-23 16:58 ` Luca Matei Pintilie via Guix-patches via
2024-11-23 16:58 ` [bug#72564] [PATCH v2 6/6] gnu: gajim-openpgp: Update to 1.6.1 Luca Matei Pintilie via Guix-patches via
4 siblings, 0 replies; 9+ messages in thread
From: Luca Matei Pintilie via Guix-patches via @ 2024-11-23 16:58 UTC (permalink / raw)
To: 72564
Cc: Morgan Smith, Luca Matei Pintilie, lars, marius, me, sharlatanus,
tanguy, jga
From: Morgan Smith <Morgan.J.Smith@outlook.com>
This plugin is no longer needed. The functionality is build into gajim now.
* gnu/packages/messaging.scm (gajim-omemo): Deprecate package.
Change-Id: Ib2e76eab9ace8486396f6dab590b830866693d87
Co-authored-by: Luca Matei Pintilie <luca@lucamatei.com>
Signed-off-by: Luca Matei Pintilie <luca@lucamatei.com>
---
gnu/packages/messaging.scm | 35 +----------------------------------
1 file changed, 1 insertion(+), 34 deletions(-)
diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index 762381fe0e..a70bb8152e 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -1343,40 +1343,7 @@ (define-public gajim
(license license:gpl3)))
(define-public gajim-omemo
- (package
- (name "gajim-omemo")
- (version "2.9.0")
- (source
- (origin
- (method url-fetch/zipbomb)
- (uri
- (string-append
- "https://ftp.gajim.org/plugins/master/omemo/omemo_"
- version ".zip"))
- (sha256
- (base32 "0yy9r9fsrlgdywiln8bskhi8faj9hnz7b19jcap5nkhv8jn9cqq7"))))
- (build-system trivial-build-system)
- (arguments
- `(#:modules ((guix build utils))
- #:builder
- (begin
- (use-modules (guix build utils))
- (let* ((out (assoc-ref %outputs "out"))
- (share (in-vicinity out "share/gajim/plugins/omemo"))
- (source (assoc-ref %build-inputs "source")))
- (mkdir-p share)
- (copy-recursively source share)
- #t))))
- (propagated-inputs
- (list python-axolotl python-axolotl-curve25519 python-cryptography
- python-qrcode))
- (synopsis "Gajim OMEMO plugin")
- (description "Gajim-OMEMO is a plugin that adds support for the OMEMO
-Encryption to Gajim. OMEMO is an XMPP Extension Protocol (XEP) for secure
-multi-client end-to-end encryption.")
- (home-page
- "https://dev.gajim.org/gajim/gajim-plugins/-/wikis/OmemoGajimPlugin")
- (license license:gpl3+)))
+ (deprecated-package "gajim-omemo" gajim))
(define-public gajim-openpgp
(package
--
2.47.0
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [bug#72564] [PATCH v2 6/6] gnu: gajim-openpgp: Update to 1.6.1.
2024-11-23 16:58 ` [bug#72564] [PATCH v2 1/6] gnu: python-nbxmpp: Update to 5.0.3 Luca Matei Pintilie via Guix-patches via
` (3 preceding siblings ...)
2024-11-23 16:58 ` [bug#72564] [PATCH v2 5/6] gnu: Deprecate gajim-omemo Luca Matei Pintilie via Guix-patches via
@ 2024-11-23 16:58 ` Luca Matei Pintilie via Guix-patches via
4 siblings, 0 replies; 9+ messages in thread
From: Luca Matei Pintilie via Guix-patches via @ 2024-11-23 16:58 UTC (permalink / raw)
To: 72564
Cc: Morgan Smith, Luca Matei Pintilie, lars, marius, me, sharlatanus,
tanguy, jga
From: Morgan Smith <Morgan.J.Smith@outlook.com>
* gnu/packages/messaging.scm (gajim-openpgp): Update to 1.6.1.
Change-Id: Iab263d7905b869895889a70c1a3c13d71bae1e51
Signed-off-by: Luca Matei Pintilie <luca@lucamatei.com>
---
gnu/packages/messaging.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index a70bb8152e..af7f9926a0 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -1348,7 +1348,7 @@ (define-public gajim-omemo
(define-public gajim-openpgp
(package
(name "gajim-openpgp")
- (version "1.5.0")
+ (version "1.6.1")
(source
(origin
(method url-fetch/zipbomb)
@@ -1357,7 +1357,7 @@ (define-public gajim-openpgp
"https://ftp.gajim.org/plugins/master/openpgp/openpgp_"
version ".zip"))
(sha256
- (base32 "193pbh9iri7bkamvjwp236i8g5zxxiqgsv64kll5sy76vx4q73c4"))))
+ (base32 "0m1g5wajpc3kfz5jv8y3i9xy1nqhq15ripv49lgsq7j1f0a3w3wh"))))
(build-system trivial-build-system)
(arguments
`(#:modules ((guix build utils))
--
2.47.0
^ permalink raw reply related [flat|nested] 9+ messages in thread
end of thread, other threads:[~2024-11-23 17:02 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-10 17:16 [bug#72564] [PATCH 0/6] gnu: gajim: Update to 1.9.3 Morgan Smith
2024-08-10 17:27 ` [bug#72564] [PATCH 1/6] gnu: python-nbxmpp: Update to 5.0.3 Morgan Smith
2024-11-23 15:22 ` [bug#72564] QA review for 72564 Luca Matei Pintilie via Guix-patches via
2024-11-23 16:58 ` [bug#72564] [PATCH v2 1/6] gnu: python-nbxmpp: Update to 5.0.3 Luca Matei Pintilie via Guix-patches via
2024-11-23 16:58 ` [bug#72564] [PATCH v2 2/6] gnu: Add python-protobuf-5 Luca Matei Pintilie via Guix-patches via
2024-11-23 16:58 ` [bug#72564] [PATCH v2 3/6] gnu: Add python-omemo-dr Luca Matei Pintilie via Guix-patches via
2024-11-23 16:58 ` [bug#72564] [PATCH v2 4/6] gnu: gajim: Update to 1.9.3 Luca Matei Pintilie via Guix-patches via
2024-11-23 16:58 ` [bug#72564] [PATCH v2 5/6] gnu: Deprecate gajim-omemo Luca Matei Pintilie via Guix-patches via
2024-11-23 16:58 ` [bug#72564] [PATCH v2 6/6] gnu: gajim-openpgp: Update to 1.6.1 Luca Matei Pintilie via Guix-patches via
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).