* [bug#58211] [PATCH 0/4] gnu: pantalaimon: Update to 0.10.5
@ 2022-10-01 4:27 Michael Rohleder
2022-10-01 4:27 ` [bug#58211] [PATCH 1/4] gnu: python-socks: Update to 2.0.3 Michael Rohleder
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: Michael Rohleder @ 2022-10-01 4:27 UTC (permalink / raw)
To: 58211; +Cc: Michael Rohleder
I want to package https://github.com/8go/matrix-commander which needs a newer
matrix-nio. This needs newer version of python-aiohttp-socks which needs
newer python-socks. After testing the deps of python-socks, pantalaimon needs
a bump, electrum and weechat-matrix build.
Michael Rohleder (4):
gnu: python-socks: Update to 2.0.3.
gnu: python-aiohttp-socks: Update to 0.7.1.
gnu: python-matrix-nio: Update to 0.20.0.
gnu: pantalaimon: Update to 0.10.5.
gnu/packages/matrix.scm | 15 ++++++++-------
gnu/packages/python-web.scm | 12 ++++++------
2 files changed, 14 insertions(+), 13 deletions(-)
--
2.37.3
^ permalink raw reply [flat|nested] 6+ messages in thread
* [bug#58211] [PATCH 1/4] gnu: python-socks: Update to 2.0.3.
2022-10-01 4:27 [bug#58211] [PATCH 0/4] gnu: pantalaimon: Update to 0.10.5 Michael Rohleder
@ 2022-10-01 4:27 ` Michael Rohleder
2022-10-01 4:27 ` [bug#58211] [PATCH 2/4] gnu: python-aiohttp-socks: Update to 0.7.1 Michael Rohleder
` (3 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Michael Rohleder @ 2022-10-01 4:27 UTC (permalink / raw)
To: 58211; +Cc: Michael Rohleder
* gnu/packages/python-web.scm (python-socks): Update to 2.0.3.
[arguments]<#:phases>: Remove trailing #t.
---
gnu/packages/python-web.scm | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 94544e1e74..f1eb4fb7b5 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -6555,14 +6555,14 @@ (define-public python-socketio
(define-public python-socks
(package
(name "python-socks")
- (version "1.2.4")
+ (version "2.0.3")
(source
(origin
(method url-fetch)
(uri (pypi-uri "python-socks" version))
(sha256
(base32
- "1n6xb18jy41ybgkmamakg6psp3qididd45qknxiggngaiibz43kx"))))
+ "12msk06c0glljcrx1byd78xgv05lxw81vknqwhn8ccs7an7cmag3"))))
(build-system python-build-system)
(arguments
`(#:tests? #f ; tests not included
@@ -6571,8 +6571,7 @@ (define-public python-socks
(replace 'check
(lambda* (#:key tests? #:allow-other-keys)
(when tests?
- (invoke "pytest" "tests/" "-s"))
- #t)))))
+ (invoke "pytest" "tests/" "-s")))))))
(propagated-inputs
(list python-async-timeout python-curio python-trio))
(native-inputs
--
2.37.3
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [bug#58211] [PATCH 2/4] gnu: python-aiohttp-socks: Update to 0.7.1.
2022-10-01 4:27 [bug#58211] [PATCH 0/4] gnu: pantalaimon: Update to 0.10.5 Michael Rohleder
2022-10-01 4:27 ` [bug#58211] [PATCH 1/4] gnu: python-socks: Update to 2.0.3 Michael Rohleder
@ 2022-10-01 4:27 ` Michael Rohleder
2022-10-01 4:27 ` [bug#58211] [PATCH 3/4] gnu: python-matrix-nio: Update to 0.20.0 Michael Rohleder
` (2 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Michael Rohleder @ 2022-10-01 4:27 UTC (permalink / raw)
To: 58211; +Cc: Michael Rohleder
* gnu/packages/python-web.scm (python-aiohttp-socks): Update to 0.7.1.
---
gnu/packages/python-web.scm | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index f1eb4fb7b5..2983381cc2 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -56,6 +56,7 @@
;;; Copyright © 2022 Nicolas Graves <ngraves@ngraves.fr>
;;; Copyright © 2022 Tomasz Jeneralczyk <tj@schwi.pl>
;;; Copyright © 2022 msimonin <matthieu.simonin@inria.fr>
+;;; Copyright © 2022 Michael Rohleder <mike@rohleder.de>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -432,14 +433,14 @@ (define-public python-aiohttp
(define-public python-aiohttp-socks
(package
(name "python-aiohttp-socks")
- (version "0.6.0")
+ (version "0.7.1")
(source
(origin
(method url-fetch)
(uri (pypi-uri "aiohttp_socks" version))
(sha256
(base32
- "04w010bvi719ifpc3sshav95k10hf9nq8czn9yglkj206yxcypdr"))))
+ "06il43dv6qm858af841vq9qadw6h7qsfs06nnwagmwqyi72cl592"))))
(build-system python-build-system)
(propagated-inputs
(list python-aiohttp python-attrs python-socks))
--
2.37.3
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [bug#58211] [PATCH 3/4] gnu: python-matrix-nio: Update to 0.20.0.
2022-10-01 4:27 [bug#58211] [PATCH 0/4] gnu: pantalaimon: Update to 0.10.5 Michael Rohleder
2022-10-01 4:27 ` [bug#58211] [PATCH 1/4] gnu: python-socks: Update to 2.0.3 Michael Rohleder
2022-10-01 4:27 ` [bug#58211] [PATCH 2/4] gnu: python-aiohttp-socks: Update to 0.7.1 Michael Rohleder
@ 2022-10-01 4:27 ` Michael Rohleder
2022-10-01 4:27 ` [bug#58211] [PATCH 4/4] gnu: pantalaimon: Update to 0.10.5 Michael Rohleder
2022-10-02 18:13 ` bug#58211: [PATCH 0/4] " Efraim Flashner
4 siblings, 0 replies; 6+ messages in thread
From: Michael Rohleder @ 2022-10-01 4:27 UTC (permalink / raw)
To: 58211; +Cc: Michael Rohleder
* gnu/packages/matrix.scm (python-matrix-nio): Update to 0.20.0.
[native-inputs]: Add python-pytest-asyncio.
[propagated-inputs]: Changed python-jsonschema to python-jsonschema-next.
---
gnu/packages/matrix.scm | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/matrix.scm b/gnu/packages/matrix.scm
index 2ba6d8ba1f..8e543f0a91 100644
--- a/gnu/packages/matrix.scm
+++ b/gnu/packages/matrix.scm
@@ -1,7 +1,7 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2020 Alex ter Weele <alex.ter.weele@gmail.com>
;;; Copyright © 2020 Tobias Geerinckx-Rice <me@tobias.gr>
-;;; Copyright © 2020, 2021 Michael Rohleder <mike@rohleder.de>
+;;; Copyright © 2020, 2021, 2022 Michael Rohleder <mike@rohleder.de>
;;; Copyright © 2020 Giacomo Leidi <goodoldpaul@autistici.org>
;;; Copyright © 2022 Aleksandr Vityazev <avityazev@posteo.org>
;;; Copyright © 2022 Morgan Smith <Morgan.J.Smith@outlook.com>
@@ -158,13 +158,13 @@ (define-public synapse
(define-public python-matrix-nio
(package
(name "python-matrix-nio")
- (version "0.18.7")
+ (version "0.20.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "matrix-nio" version))
(sha256
- (base32 "0cw4y6dx8n8hynxqlzzkj8p34nfbc2xryvmkr5yhmja31y4rks4k"))))
+ (base32 "1ycrp48b15nm2d3w3qpzps21czl3gbikadl10sncbzr9wdwn44g4"))))
(build-system python-build-system)
(arguments
`(#:phases
@@ -191,6 +191,7 @@ (define-public python-matrix-nio
("python-hpack" ,python-hpack)
("python-faker" ,python-faker)
("python-pytest-aiohttp" ,python-pytest-aiohttp)
+ ("python-pytest-asyncio" ,python-pytest-asyncio)
("python-aioresponses" ,python-aioresponses)
("python-pytest-benchmark" ,python-pytest-benchmark)
("python-toml" ,python-toml)
@@ -206,7 +207,7 @@ (define-public python-matrix-nio
(file-name (git-file-name name version))
(sha256
(base32
- "152prkndk53pfxm4in4xak4hwzyaxlbp6wv2zbk2xpzgyy9bvn3s"))))))
+ "10j8g3ns3v1ghdn262dxg50ayaczdp1hj97pj4ydw02bncqhddpd"))))))
(propagated-inputs
(list python-aiofiles
python-aiohttp
@@ -216,7 +217,7 @@ (define-public python-matrix-nio
python-future
python-h11
python-h2
- python-jsonschema
+ python-jsonschema-next
python-logbook
python-olm
python-peewee
--
2.37.3
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [bug#58211] [PATCH 4/4] gnu: pantalaimon: Update to 0.10.5.
2022-10-01 4:27 [bug#58211] [PATCH 0/4] gnu: pantalaimon: Update to 0.10.5 Michael Rohleder
` (2 preceding siblings ...)
2022-10-01 4:27 ` [bug#58211] [PATCH 3/4] gnu: python-matrix-nio: Update to 0.20.0 Michael Rohleder
@ 2022-10-01 4:27 ` Michael Rohleder
2022-10-02 18:13 ` bug#58211: [PATCH 0/4] " Efraim Flashner
4 siblings, 0 replies; 6+ messages in thread
From: Michael Rohleder @ 2022-10-01 4:27 UTC (permalink / raw)
To: 58211; +Cc: Michael Rohleder
* gnu/packages/matrix.scm (pantalaimon): Update to 0.10.5.
---
gnu/packages/matrix.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/matrix.scm b/gnu/packages/matrix.scm
index 8e543f0a91..d5e0060c04 100644
--- a/gnu/packages/matrix.scm
+++ b/gnu/packages/matrix.scm
@@ -235,7 +235,7 @@ (define-public python-matrix-nio
(define-public pantalaimon
(package
(name "pantalaimon")
- (version "0.10.3")
+ (version "0.10.5")
(source
(origin
(method git-fetch)
@@ -245,7 +245,7 @@ (define-public pantalaimon
(file-name (git-file-name name version))
(sha256
(base32
- "153d8083lj3qqirbv5q1d3igzd61a5kyzfk7xmv29sd3jbs8ysm9"))))
+ "16ask8v00654q307c55q5gnm8hrj40gibpab5zl52v4i0bgl9j68"))))
(build-system python-build-system)
(arguments
`(#:phases
--
2.37.3
^ permalink raw reply related [flat|nested] 6+ messages in thread
* bug#58211: [PATCH 0/4] gnu: pantalaimon: Update to 0.10.5
2022-10-01 4:27 [bug#58211] [PATCH 0/4] gnu: pantalaimon: Update to 0.10.5 Michael Rohleder
` (3 preceding siblings ...)
2022-10-01 4:27 ` [bug#58211] [PATCH 4/4] gnu: pantalaimon: Update to 0.10.5 Michael Rohleder
@ 2022-10-02 18:13 ` Efraim Flashner
4 siblings, 0 replies; 6+ messages in thread
From: Efraim Flashner @ 2022-10-02 18:13 UTC (permalink / raw)
To: Michael Rohleder; +Cc: 58211-done
[-- Attachment #1: Type: text/plain, Size: 983 bytes --]
On Sat, Oct 01, 2022 at 06:27:22AM +0200, Michael Rohleder wrote:
> I want to package https://github.com/8go/matrix-commander which needs a newer
> matrix-nio. This needs newer version of python-aiohttp-socks which needs
> newer python-socks. After testing the deps of python-socks, pantalaimon needs
> a bump, electrum and weechat-matrix build.
>
> Michael Rohleder (4):
> gnu: python-socks: Update to 2.0.3.
> gnu: python-aiohttp-socks: Update to 0.7.1.
> gnu: python-matrix-nio: Update to 0.20.0.
> gnu: pantalaimon: Update to 0.10.5.
>
> gnu/packages/matrix.scm | 15 ++++++++-------
> gnu/packages/python-web.scm | 12 ++++++------
> 2 files changed, 14 insertions(+), 13 deletions(-)
Everything looks good to me. Patches pushed!
--
Efraim Flashner <efraim@flashner.co.il> אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2022-10-02 18:14 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-10-01 4:27 [bug#58211] [PATCH 0/4] gnu: pantalaimon: Update to 0.10.5 Michael Rohleder
2022-10-01 4:27 ` [bug#58211] [PATCH 1/4] gnu: python-socks: Update to 2.0.3 Michael Rohleder
2022-10-01 4:27 ` [bug#58211] [PATCH 2/4] gnu: python-aiohttp-socks: Update to 0.7.1 Michael Rohleder
2022-10-01 4:27 ` [bug#58211] [PATCH 3/4] gnu: python-matrix-nio: Update to 0.20.0 Michael Rohleder
2022-10-01 4:27 ` [bug#58211] [PATCH 4/4] gnu: pantalaimon: Update to 0.10.5 Michael Rohleder
2022-10-02 18:13 ` bug#58211: [PATCH 0/4] " Efraim Flashner
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.