[PATCH 0/2] Update python-sqlite-utils to 3.36.

  • Open
  • quality assurance status badge
Details
One participant
  • Felix Gruber
Owner
unassigned
Submitted by
Felix Gruber
Severity
normal
F
F
Felix Gruber wrote on 2 Jan 15:53 +0100
(address . guix-patches@gnu.org)(name . Felix Gruber)(address . felgru@posteo.net)
cover.1704190925.git.felgru@posteo.net
Felix Gruber (2):
gnu: python-click-default-group: Update to 1.2.4.
gnu: python-sqlite-utils: Update to 3.36.

gnu/packages/databases.scm | 4 ++--
gnu/packages/python-xyz.scm | 25 ++++++++++++++-----------
2 files changed, 16 insertions(+), 13 deletions(-)


base-commit: 404c4a5abac34c2a645e1af9a60c8899bd790ed9
--
2.43.0
F
F
Felix Gruber wrote on 2 Jan 15:55 +0100
[PATCH 1/2] gnu: python-click-default-group: Update to 1.2.4.
(address . 68206@debbugs.gnu.org)(name . Felix Gruber)(address . felgru@posteo.net)
6a14be1f983f3a6d37831f6a7b699b41ba612091.1704190925.git.felgru@posteo.net
* gnu/packages/python-xyz.scm (python-click-default-group): Update to 1.2.4.
[source]: Download from gitlab, because pypi package does not include
tests.
[build-system]: Change to pyproject-build-system.
[arguments]: Enable tests.
[native-inputs]: Add python-flit-core and python-pytest.

Change-Id: I7f3758066d167d28de2cc1214091a8a502ab4215
---
gnu/packages/python-xyz.scm | 25 ++++++++++++++-----------
1 file changed, 14 insertions(+), 11 deletions(-)

Toggle diff (47 lines)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 2afce6c667..77751a8d53 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -108,7 +108,7 @@
;;; Copyright © 2021 Simon Streit <simon@netpanic.org>
;;; Copyright © 2021, 2022, 2023 Daniel Meißner <daniel.meissner-i4k@ruhr-uni-bochum.de>
;;; Copyright © 2021, 2022 Pradana Aumars <paumars@courrier.dev>
-;;; Copyright © 2021, 2022, 2023 Felix Gruber <felgru@posteo.net>
+;;; Copyright © 2021–2024 Felix Gruber <felgru@posteo.net>
;;; Copyright © 2021 Sébastien Lerique <sl@eauchat.org>
;;; Copyright © 2021 Raphaël Mélotte <raphael.melotte@mind.be>
;;; Copyright © 2021 ZmnSCPxj <ZmnSCPxj@protonmail.com>
@@ -16422,18 +16422,21 @@ (define-public python-click-log
(define-public python-click-default-group
(package
(name "python-click-default-group")
- (version "1.2.2")
- (source (origin
- (method url-fetch)
- (uri (pypi-uri "click-default-group" version))
- (sha256
- (base32
- "015r78jk8gznfw0dphpwaqcx5mhg5822b55w5xbb6i7sin70wmnr"))))
- (build-system python-build-system)
- (arguments
- `(#:tests? #f)) ; no target
+ (version "1.2.4")
+ (source
+ (origin
+ (method git-fetch) ; no tests in PyPI release
+ (uri (git-reference
+ (url "https://github.com/click-contrib/click-default-group")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "06h12qwg0lhvxlgfm9768afibwp8j6r3r440v630a30bv0nkhngm"))))
+ (build-system pyproject-build-system)
(propagated-inputs
(list python-click))
+ (native-inputs
+ (list python-flit-core python-pytest))
(synopsis "Extends click.Group")
(description "This package extends click.Group to invoke a command without
explicit subcommand name.")
--
2.43.0
F
F
Felix Gruber wrote on 2 Jan 15:55 +0100
[PATCH 2/2] gnu: python-sqlite-utils: Update to 3.36.
(address . 68206@debbugs.gnu.org)(name . Felix Gruber)(address . felgru@posteo.net)
30c3c6733981735880eda9351fae0de214a699c8.1704190926.git.felgru@posteo.net
* gnu/packages/databases.scm (python-sqlite-utils): Update to 3.36.

Change-Id: I4f011385ae4e3e237f2278e75e2a198c0e63e686
---
gnu/packages/databases.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

Toggle diff (24 lines)
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index 1ca534aa00..5158282de2 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -3678,7 +3678,7 @@ (define-public python-sqlite-fts4
(define-public python-sqlite-utils
(package
(name "python-sqlite-utils")
- (version "3.32.1")
+ (version "3.36")
(source (origin
(method git-fetch) ;for tests
(uri (git-reference
@@ -3687,7 +3687,7 @@ (define-public python-sqlite-utils
(file-name (git-file-name name version))
(sha256
(base32
- "1qf9zwn9gdkx8825klicwkw8zj5wpidd8csdhjxvybq56nkgnrpm"))))
+ "0g6sy7ps12nylww2h2pm8j3hizjzdnf4gpbb0v4h3wj7bj436db4"))))
(build-system pyproject-build-system)
(arguments
(list #:phases #~(modify-phases %standard-phases
--
2.43.0
?