all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#68206] [PATCH 0/2] Update python-sqlite-utils to 3.36.
@ 2024-01-02 14:53 Felix Gruber
  2024-01-02 14:55 ` [bug#68206] [PATCH 1/2] gnu: python-click-default-group: Update to 1.2.4 Felix Gruber
  2024-01-02 14:55 ` [bug#68206] [PATCH 2/2] gnu: python-sqlite-utils: Update to 3.36 Felix Gruber
  0 siblings, 2 replies; 3+ messages in thread
From: Felix Gruber @ 2024-01-02 14:53 UTC (permalink / raw)
  To: 68206; +Cc: Felix Gruber

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





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

* [bug#68206] [PATCH 1/2] gnu: python-click-default-group: Update to 1.2.4.
  2024-01-02 14:53 [bug#68206] [PATCH 0/2] Update python-sqlite-utils to 3.36 Felix Gruber
@ 2024-01-02 14:55 ` Felix Gruber
  2024-01-02 14:55 ` [bug#68206] [PATCH 2/2] gnu: python-sqlite-utils: Update to 3.36 Felix Gruber
  1 sibling, 0 replies; 3+ messages in thread
From: Felix Gruber @ 2024-01-02 14:55 UTC (permalink / raw)
  To: 68206; +Cc: Felix Gruber

* 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(-)

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





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

* [bug#68206] [PATCH 2/2] gnu: python-sqlite-utils: Update to 3.36.
  2024-01-02 14:53 [bug#68206] [PATCH 0/2] Update python-sqlite-utils to 3.36 Felix Gruber
  2024-01-02 14:55 ` [bug#68206] [PATCH 1/2] gnu: python-click-default-group: Update to 1.2.4 Felix Gruber
@ 2024-01-02 14:55 ` Felix Gruber
  1 sibling, 0 replies; 3+ messages in thread
From: Felix Gruber @ 2024-01-02 14:55 UTC (permalink / raw)
  To: 68206; +Cc: Felix Gruber

* 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(-)

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





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

end of thread, other threads:[~2024-01-02 14:57 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-01-02 14:53 [bug#68206] [PATCH 0/2] Update python-sqlite-utils to 3.36 Felix Gruber
2024-01-02 14:55 ` [bug#68206] [PATCH 1/2] gnu: python-click-default-group: Update to 1.2.4 Felix Gruber
2024-01-02 14:55 ` [bug#68206] [PATCH 2/2] gnu: python-sqlite-utils: Update to 3.36 Felix Gruber

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.