GNU bug report logs -
#68206
[PATCH 0/2] Update python-sqlite-utils to 3.36.
Previous Next
Reported by: Felix Gruber <felgru <at> posteo.net>
Date: Tue, 2 Jan 2024 14:55:02 UTC
Severity: normal
Tags: patch
Done: Sharlatan Hellseher <sharlatanus <at> gmail.com>
Bug is archived. No further changes may be made.
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 68206 in the body.
You can then email your comments to 68206 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
guix-patches <at> gnu.org
:
bug#68206
; Package
guix-patches
.
(Tue, 02 Jan 2024 14:55:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Felix Gruber <felgru <at> posteo.net>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Tue, 02 Jan 2024 14:55:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
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
Information forwarded
to
guix-patches <at> gnu.org
:
bug#68206
; Package
guix-patches
.
(Tue, 02 Jan 2024 14:57:01 GMT)
Full text and
rfc822 format available.
Message #8 received at 68206 <at> debbugs.gnu.org (full text, mbox):
* 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 <at> netpanic.org>
;;; Copyright © 2021, 2022, 2023 Daniel Meißner <daniel.meissner-i4k <at> ruhr-uni-bochum.de>
;;; Copyright © 2021, 2022 Pradana Aumars <paumars <at> courrier.dev>
-;;; Copyright © 2021, 2022, 2023 Felix Gruber <felgru <at> posteo.net>
+;;; Copyright © 2021–2024 Felix Gruber <felgru <at> posteo.net>
;;; Copyright © 2021 Sébastien Lerique <sl <at> eauchat.org>
;;; Copyright © 2021 Raphaël Mélotte <raphael.melotte <at> mind.be>
;;; Copyright © 2021 ZmnSCPxj <ZmnSCPxj <at> 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
Information forwarded
to
guix-patches <at> gnu.org
:
bug#68206
; Package
guix-patches
.
(Tue, 02 Jan 2024 14:57:02 GMT)
Full text and
rfc822 format available.
Message #11 received at 68206 <at> debbugs.gnu.org (full text, mbox):
* 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
Information forwarded
to
sharlatanus <at> gmail.com, guix-patches <at> gnu.org
:
bug#68206
; Package
guix-patches
.
(Sat, 25 Jan 2025 16:55:01 GMT)
Full text and
rfc822 format available.
Message #14 received at 68206 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/databases.scm (python-sqlite-utils): Update to 3.38.
Change-Id: I16347a6b1cb6326d5aaad03a72c3d626477f9280
---
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 a758f9924e..edcf536f7d 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -4110,7 +4110,7 @@ (define-public python-sqlite-fts4
(define-public python-sqlite-utils
(package
(name "python-sqlite-utils")
- (version "3.32.1")
+ (version "3.38")
(source (origin
(method git-fetch) ;for tests
(uri (git-reference
@@ -4119,7 +4119,7 @@ (define-public python-sqlite-utils
(file-name (git-file-name name version))
(sha256
(base32
- "1qf9zwn9gdkx8825klicwkw8zj5wpidd8csdhjxvybq56nkgnrpm"))))
+ "1rai8rbw5drxppypyl3r8j9gr12278h3snkj7l280zkskbxxh7hf"))))
(build-system pyproject-build-system)
(arguments
(list #:phases #~(modify-phases %standard-phases
base-commit: d1e3c41abdda9f8e9f1283376feb853670393793
--
2.47.1
Reply sent
to
Sharlatan Hellseher <sharlatanus <at> gmail.com>
:
You have taken responsibility.
(Sat, 25 Jan 2025 22:26:02 GMT)
Full text and
rfc822 format available.
Notification sent
to
Felix Gruber <felgru <at> posteo.net>
:
bug acknowledged by developer.
(Sat, 25 Jan 2025 22:26:02 GMT)
Full text and
rfc822 format available.
Message #19 received at 68206-done <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Hi,
--8<---------------cut here---------------start------------->8---
> ./pre-inst-env guix build -P 1 python-sqlite-utils
guix build: computing dependents of package python-sqlite-utils <at> 3.38...
/gnu/store/7iqqr8gxw8bzsrp4lj68r787mz09rc69-python-sqlite-utils-3.38
/gnu/store/y16ph7vwdicsbffhjklq1w6x8c85mh5x-datasette-1.0a16
--8<---------------cut here---------------end--------------->8---
Pushed to master:
- 65b9bf26472 * gnu: python-sqlite-utils: Update to 3.38.
--
Thanks,
Oleg
[signature.asc (application/pgp-signature, inline)]
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Sun, 23 Feb 2025 12:24:06 GMT)
Full text and
rfc822 format available.
This bug report was last modified 18 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.