unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#72932] [PATCH 0/2] gnu: picard: Update to 2.12.2.
@ 2024-09-01 15:33 Hilton Chain via Guix-patches via
  2024-09-01 15:39 ` [bug#72932] [PATCH 1/2] gnu: Add python-charset-normalizer-3 Hilton Chain via Guix-patches via
  2024-09-01 15:39 ` [bug#72932] [PATCH 2/2] gnu: picard: Update to 2.12.2 Hilton Chain via Guix-patches via
  0 siblings, 2 replies; 3+ messages in thread
From: Hilton Chain via Guix-patches via @ 2024-09-01 15:33 UTC (permalink / raw)
  To: 72932; +Cc: Hilton Chain

This series updates package picard to 2.12.2, as its new dependency, a newer
version of python-charset-normalizer is also added.

Hilton Chain (2):
  gnu: Add python-charset-normalizer-3.
  gnu: picard: Update to 2.12.2.

 gnu/packages/music.scm      |  5 +++--
 gnu/packages/python-xyz.scm | 12 ++++++++++++
 2 files changed, 15 insertions(+), 2 deletions(-)


base-commit: e1c92c98f7afff13fb7060199ba0dd4d9c5c2c53
prerequisite-patch-id: 4e3ff0c99afaf274248ac18b899c3870f99a846c
prerequisite-patch-id: bdc76f30658e98588f74bd956d4859e6353672f7
prerequisite-patch-id: 4b4ad9449dc4ae9786c42193fb1237f63968f396
prerequisite-patch-id: 395fdfde8b9e7da90cf440016074ae32ce0d4069
prerequisite-patch-id: 479a14424e4531c453ed3c7ce735c6b8f77b26db
prerequisite-patch-id: cb2e326e8ae032c3dcc8e3bc9f7b4483eff0359d
prerequisite-patch-id: b30c933d7fbe30aebe660eb2cb97b85316b294e9
prerequisite-patch-id: 7af5407ecb71d89f0888f57aba956ffd8aadc7c8
prerequisite-patch-id: 553a7a0e54e809774d1c33e5847d4183052e027f
prerequisite-patch-id: 66a1f2daea0a365dd623eb501e8e5d64f95cf0d8
prerequisite-patch-id: 1f4f1e03d0a14d69f0b7bd38c45352d3da740112
prerequisite-patch-id: ed25ee0edfa1a953f15906a619a31d753abcc68a
prerequisite-patch-id: 39af2084d478edc408b86dc17b1974290af484da
prerequisite-patch-id: 9d07fea48cb08d20b43062940f573c94359d3651
prerequisite-patch-id: 347c60236ecb3d8f3e3e37dd560372fdd22b25eb
--
2.45.2




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

* [bug#72932] [PATCH 1/2] gnu: Add python-charset-normalizer-3.
  2024-09-01 15:33 [bug#72932] [PATCH 0/2] gnu: picard: Update to 2.12.2 Hilton Chain via Guix-patches via
@ 2024-09-01 15:39 ` Hilton Chain via Guix-patches via
  2024-09-01 15:39 ` [bug#72932] [PATCH 2/2] gnu: picard: Update to 2.12.2 Hilton Chain via Guix-patches via
  1 sibling, 0 replies; 3+ messages in thread
From: Hilton Chain via Guix-patches via @ 2024-09-01 15:39 UTC (permalink / raw)
  To: 72932
  Cc: Hilton Chain, Lars-Dominik Braun, Marius Bakke, Munyoki Kilyungi,
	Sharlatan Hellseher, Tanguy Le Carrour, jgart

* gnu/packages/python-xyz.scm (python-charset-normalizer-3): New variable.

Change-Id: I173ba9daa74882f021586b90f3ec3c63f2b62962
---
 gnu/packages/python-xyz.scm | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index a7688050e1..4f7b721e55 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -17914,6 +17914,18 @@ (define-public python-charset-normalizer
 library provides codecs are supported.")
     (license license:expat)))
 
+(define-public python-charset-normalizer-3
+  (package
+    (inherit python-charset-normalizer)
+    (name "python-charset-normalizer")
+    (version "3.3.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "charset-normalizer" version))
+       (sha256
+        (base32 "1m9g0f513ng4dp2vd3smi4g2nmhqkjqh3bzcza14li947frkq37k"))))))
+
 (define-public python-docopt
   (package
     (name "python-docopt")
-- 
2.45.2





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

* [bug#72932] [PATCH 2/2] gnu: picard: Update to 2.12.2.
  2024-09-01 15:33 [bug#72932] [PATCH 0/2] gnu: picard: Update to 2.12.2 Hilton Chain via Guix-patches via
  2024-09-01 15:39 ` [bug#72932] [PATCH 1/2] gnu: Add python-charset-normalizer-3 Hilton Chain via Guix-patches via
@ 2024-09-01 15:39 ` Hilton Chain via Guix-patches via
  1 sibling, 0 replies; 3+ messages in thread
From: Hilton Chain via Guix-patches via @ 2024-09-01 15:39 UTC (permalink / raw)
  To: 72932; +Cc: Hilton Chain

* gnu/packages/music.scm (picard): Update to 2.12.2.
[inputs]: Add python-charset-normalizer-3.

Change-Id: I4dd177118e7f5a13ff8b6da941d62d52777e32c4
---
 gnu/packages/music.scm | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index bc2d7f62f1..5067027f86 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -3983,7 +3983,7 @@ (define-public pianobar
 (define-public picard
   (package
     (name "picard")
-    (version "2.11")
+    (version "2.12.2")
     (source (origin
               (method url-fetch)
               (uri (string-append
@@ -3991,7 +3991,7 @@ (define-public picard
                     "picard/picard-" version ".tar.gz"))
               (sha256
                (base32
-                "0ppq2n9jf8c8r8p9dkpcyipd2psr9hg0zbd5hcdsicili25336j4"))))
+                "01244105zy1f1g22ivhx9pjd1acqbkycfr9r44h70jyml5abc7z5"))))
     (build-system python-build-system)
     (arguments
      (list
@@ -4017,6 +4017,7 @@ (define-public picard
      (list gettext-minimal python-dateutil))
     (inputs
      (list chromaprint
+           python-charset-normalizer-3
            python-discid
            python-pyqt
            python-mutagen
-- 
2.45.2





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

end of thread, other threads:[~2024-09-01 15:40 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-01 15:33 [bug#72932] [PATCH 0/2] gnu: picard: Update to 2.12.2 Hilton Chain via Guix-patches via
2024-09-01 15:39 ` [bug#72932] [PATCH 1/2] gnu: Add python-charset-normalizer-3 Hilton Chain via Guix-patches via
2024-09-01 15:39 ` [bug#72932] [PATCH 2/2] gnu: picard: Update to 2.12.2 Hilton Chain via Guix-patches via

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).