From: Lars-Dominik Braun <ldb@leibniz-psychology.org>
To: 40742@debbugs.gnu.org
Subject: [bug#40742] [PATCH] Update python-tortoise-orm and deps (security fix)
Date: Tue, 21 Apr 2020 10:58:13 +0200 [thread overview]
Message-ID: <20200421085813.GB3527@zpidnp36> (raw)
[-- Attachment #1.1: Type: text/plain, Size: 150 bytes --]
Hi,
the attached patch series updates python-tortoise-orm and its dependencies.
tortoise-orm has received a security fix with version 0.16.6.
Lars
[-- Attachment #1.2: 0001-gnu-python-aiosqlite-Update-to-0.12.0.patch --]
[-- Type: text/x-diff, Size: 1179 bytes --]
From 0ecef561fc88e52682c67d5112b43ac3d5c495f1 Mon Sep 17 00:00:00 2001
From: Lars-Dominik Braun <ldb@leibniz-psychology.org>
Date: Tue, 21 Apr 2020 10:34:30 +0200
Subject: [PATCH 1/4] gnu: python-aiosqlite: Update to 0.12.0
* gnu/packages/databases.scm (python-aiosqlite): Update to 0.12.0
---
gnu/packages/databases.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index 606594e005..bf5398d87b 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -2743,14 +2743,14 @@ translate the complete SQLite API into Python.")
(define-public python-aiosqlite
(package
(name "python-aiosqlite")
- (version "0.11.0")
+ (version "0.12.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "aiosqlite" version))
(sha256
(base32
- "1f3zdldp9zgrw6qz5fsp3wa5zw73cjf139pj4vf24ryv895320jg"))))
+ "1w8248yz85xyzvvh4jaxnc59fqil45aka6h82kn1rcih4rjxbnn1"))))
(build-system python-build-system)
(native-inputs
`(("python-aiounittest" ,python-aiounittest)))
--
2.20.1
[-- Attachment #1.3: 0002-gnu-python-pypika-Update-to-0.37.1.patch --]
[-- Type: text/x-diff, Size: 1580 bytes --]
From 1a50c8c5c0768f387b4f822d53e48858bf5aa403 Mon Sep 17 00:00:00 2001
From: Lars-Dominik Braun <ldb@leibniz-psychology.org>
Date: Tue, 21 Apr 2020 10:35:33 +0200
Subject: [PATCH 2/4] gnu: python-pypika: Update to 0.37.1
* gnu/packages/databases.scm (python-pypika): Update to 0.37.1
---
gnu/packages/databases.scm | 17 ++++++++++-------
1 file changed, 10 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index bf5398d87b..b629fc098b 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -3074,14 +3074,17 @@ transforms idiomatic python function calls to well-formed SQL queries.")
(define-public python-pypika
(package
(name "python-pypika")
- (version "0.36.0")
+ (version "0.37.1")
(source
- (origin
- (method url-fetch)
- (uri (pypi-uri "PyPika" version))
- (sha256
- (base32
- "0qzn5vygirg52dlizm6ayzdc5llq8p2krrx0kymr236lrz89wqp8"))))
+ (origin (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/kayak/pypika.git")
+ ;; releases are not tagged in git
+ (commit "ff97e3605448bf0ef67f2348ebdb1021f26c7416")))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "08s6limzgjm4k2pw7gzbhx8914phr673dpi66q5s0zniwq6v72rh"))))
(build-system python-build-system)
(native-inputs
`(("python-parameterized" ,python-parameterized)))
--
2.20.1
[-- Attachment #1.4: 0003-gnu-python-tortoise-orm-Update-to-0.16.7.patch --]
[-- Type: text/x-diff, Size: 1838 bytes --]
From 0f0fd13d570b35ef2eecb925eeb3285e03926322 Mon Sep 17 00:00:00 2001
From: Lars-Dominik Braun <ldb@leibniz-psychology.org>
Date: Tue, 21 Apr 2020 10:36:29 +0200
Subject: [PATCH 3/4] gnu: python-tortoise-orm: Update to 0.16.7
0.16.6, which we skipped, includes a security fix.
* gnu/packages/databases.scm (python-tortoise-orm)[source]: Update to 0.16.7
[propagated-inputs] Propagate ciso8601, which is required in setup.py
---
gnu/packages/databases.scm | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index b629fc098b..503b11e6fe 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -2197,24 +2197,24 @@ can autogenerate peewee models using @code{pwiz}, a model generator.")
(define-public python-tortoise-orm
(package
(name "python-tortoise-orm")
- (version "0.16.3")
+ (version "0.16.7")
(source
(origin
(method url-fetch)
(uri (pypi-uri "tortoise-orm" version))
(sha256
(base32
- "01hbvfyxs2qd1mjc96aipwsdxxhydw8ww686r4gsf87bl6f98dvz"))))
+ "0wr7p4v0b16ypm9fcpwpl99kf491m6w3jkd13xcsgq13fy73fbqc"))))
(build-system python-build-system)
;; Disable tests for now. They pull in a lot of dependencies.
(arguments `(#:tests? #f))
(native-inputs
- `(("python-ciso8601" ,python-ciso8601)
- ("python-asynctest" ,python-asynctest)
+ `(("python-asynctest" ,python-asynctest)
("python-nose2" ,python-nose2)))
(propagated-inputs
`(("python-aiosqlite" ,python-aiosqlite)
("python-pypika" ,python-pypika)
+ ("python-ciso8601" ,python-ciso8601)
("python-typing-extensions"
,python-typing-extensions)))
(home-page
--
2.20.1
[-- Attachment #1.5: 0004-gnu-python-pypika-Update-to-0.37.2.patch --]
[-- Type: text/x-diff, Size: 1527 bytes --]
From e625bb6dba074871af6f311fceb2322f9b8084f3 Mon Sep 17 00:00:00 2001
From: Lars-Dominik Braun <ldb@leibniz-psychology.org>
Date: Tue, 21 Apr 2020 10:48:56 +0200
Subject: [PATCH 4/4] gnu: python-pypika: Update to 0.37.2
* gnu/packages/databases.scm (python-pypika): Update to 0.37.2
---
gnu/packages/databases.scm | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index 503b11e6fe..08a1e1b4ad 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -3074,17 +3074,17 @@ transforms idiomatic python function calls to well-formed SQL queries.")
(define-public python-pypika
(package
(name "python-pypika")
- (version "0.37.1")
+ (version "0.37.2")
(source
(origin (method git-fetch)
(uri (git-reference
(url "https://github.com/kayak/pypika.git")
;; releases are not tagged in git
- (commit "ff97e3605448bf0ef67f2348ebdb1021f26c7416")))
+ (commit "baef001dd2362661311b6e2f949d2be4de5c23c8")))
(file-name (git-file-name name version))
(sha256
(base32
- "08s6limzgjm4k2pw7gzbhx8914phr673dpi66q5s0zniwq6v72rh"))))
+ "089z1c778q1fwhzsc88ws8j5gm2hgxknibabn4wpax8rz2bfs3ck"))))
(build-system python-build-system)
(native-inputs
`(("python-parameterized" ,python-parameterized)))
--
2.20.1
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]
next reply other threads:[~2020-04-21 8:59 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-04-21 8:58 Lars-Dominik Braun [this message]
2020-04-21 16:32 ` [bug#40742] [PATCH] Update python-tortoise-orm and deps (security fix) Leo Famulari
2020-04-24 6:50 ` Lars-Dominik Braun
2020-04-29 19:12 ` bug#40742: " Leo Famulari
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200421085813.GB3527@zpidnp36 \
--to=ldb@leibniz-psychology.org \
--cc=40742@debbugs.gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.