GNU bug report logs - #73691
[PATCH 0/2] gnu: java-xerces: Update to 2.12.2. [security fixes]

Previous Next

Package: guix-patches;

Reported by: Nicolas Graves <ngraves <at> ngraves.fr>

Date: Tue, 8 Oct 2024 06:27: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 73691 in the body.
You can then email your comments to 73691 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#73691; Package guix-patches. (Tue, 08 Oct 2024 06:27:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Nicolas Graves <ngraves <at> ngraves.fr>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Tue, 08 Oct 2024 06:27:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Nicolas Graves <ngraves <at> ngraves.fr>
To: guix-patches <at> gnu.org
Cc: Nicolas Graves <ngraves <at> ngraves.fr>
Subject: [PATCH 0/2] gnu: java-xerces: Update to 2.12.2. [security fixes]
Date: Tue,  8 Oct 2024 08:24:55 +0200
kodi wasn't building, I had to fix it to test refresh dependencies.

Nicolas Graves (2):
  gnu: java-xerces: Update to 2.12.2. [security fixes]
  gnu: kodi: Fix build.

 gnu/packages/java.scm |  4 ++--
 gnu/packages/kodi.scm | 10 +++++++++-
 2 files changed, 11 insertions(+), 3 deletions(-)

-- 
2.46.0





Information forwarded to guix-patches <at> gnu.org:
bug#73691; Package guix-patches. (Tue, 08 Oct 2024 06:33:02 GMT) Full text and rfc822 format available.

Message #8 received at 73691 <at> debbugs.gnu.org (full text, mbox):

From: Nicolas Graves <ngraves <at> ngraves.fr>
To: 73691 <at> debbugs.gnu.org
Cc: Nicolas Graves <ngraves <at> ngraves.fr>
Subject: [PATCH 1/2] gnu: java-xerces: Update to 2.12.2. [security fixes]
Date: Tue,  8 Oct 2024 08:32:13 +0200
This fixes CVE-2022-23437.

* gnu/packages/java.scm (java-xerces): Update to 2.12.2.
---
 gnu/packages/java.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm
index b43b57754b..fec741f5f2 100644
--- a/gnu/packages/java.scm
+++ b/gnu/packages/java.scm
@@ -12599,14 +12599,14 @@ (define-public java-joda-time
 (define-public java-xerces
   (package
     (name "java-xerces")
-    (version "2.12.1")
+    (version "2.12.2")
     (source
      (origin
        (method url-fetch)
        (uri (string-append "mirror://apache/xerces/j/source/"
                            "Xerces-J-src." version ".tar.gz"))
        (sha256
-        (base32 "0494kq36gw3nah19ifb720vwxbpg4ww0k6m3zq6wyanw6a083p6s"))
+        (base32 "1s2fnfx5flmhs3q30bxdsa6vs52m6vbnqd3m4cc5r4wfr3afplbd"))
        (patches (search-patches
                  "java-xerces-xjavac_taskdef.patch"
                  "java-xerces-build_dont_unzip.patch"
-- 
2.46.0





Information forwarded to guix-patches <at> gnu.org:
bug#73691; Package guix-patches. (Tue, 08 Oct 2024 06:33:02 GMT) Full text and rfc822 format available.

Message #11 received at 73691 <at> debbugs.gnu.org (full text, mbox):

From: Nicolas Graves <ngraves <at> ngraves.fr>
To: 73691 <at> debbugs.gnu.org
Cc: Nicolas Graves <ngraves <at> ngraves.fr>
Subject: [PATCH 2/2] gnu: kodi: Fix build.
Date: Tue,  8 Oct 2024 08:32:14 +0200
* gnu/packages/kodi.scm (kodi): Fix build.
  [inputs]: Add libxcrypt.
  [arguments]<#:phases>: Ignore failing tests in 'patch-stuff phase.
---
 gnu/packages/kodi.scm | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/kodi.scm b/gnu/packages/kodi.scm
index 655c82ad6c..432da7d3d5 100644
--- a/gnu/packages/kodi.scm
+++ b/gnu/packages/kodi.scm
@@ -7,6 +7,7 @@
 ;;; Copyright © 2020 Michael Rohleder <mike <at> rohleder.de>
 ;;; Copyright © 2021 Greg Hogan <code <at> greghogan.com>
 ;;; Copyright © 2022 Ricardo Wurmus <rekado <at> elephly.net>
+;;; Copyright © 2024 Nicolas Graves <ngraves <at> ngraves.fr>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -43,6 +44,7 @@ (define-module (gnu packages kodi)
   #:use-module (gnu packages check)
   #:use-module (gnu packages cmake)
   #:use-module (gnu packages compression)
+  #:use-module (gnu packages crypto)
   #:use-module (gnu packages curl)
   #:use-module (gnu packages databases)
   #:use-module (gnu packages documentation)
@@ -376,7 +378,12 @@ (define-public kodi
                 "TEST_F(TestSystemInfo, DISABLED_GetOsVersion)"))
              (substitute* "xbmc/utils/test/TestCPUInfo.cpp"
                (("TEST_F\\(TestCPUInfo, GetCPUFrequency\\)")
-                "TEST_F(TestCPUInfo, DISABLED_GetCPUFrequency)"))))
+                "TEST_F(TestCPUInfo, DISABLED_GetCPUFrequency)"))
+             (substitute* "xbmc/test/TestDateTime.cpp"
+               (("TEST_F\\(TestDateTime, TmOperators\\)")
+                "TEST_F(TestDateTime, DISABLED_TmOperators)")
+               (("TEST_F\\(TestDateTime, GetAsTm\\)")
+                "TEST_F(TestDateTime, DISABLED_GetAsTm)"))))
          (add-before 'build 'set-build-environment
            (lambda _
              ;; Some bundled build scripts fall back to /bin/sh
@@ -444,6 +451,7 @@ (define-public kodi
            libtiff
            libva
            libvorbis
+           libxcrypt
            libxml2
            libxrandr
            libxrender
-- 
2.46.0





Reply sent to Sharlatan Hellseher <sharlatanus <at> gmail.com>:
You have taken responsibility. (Fri, 11 Oct 2024 13:27:03 GMT) Full text and rfc822 format available.

Notification sent to Nicolas Graves <ngraves <at> ngraves.fr>:
bug acknowledged by developer. (Fri, 11 Oct 2024 13:27:04 GMT) Full text and rfc822 format available.

Message #16 received at 73691-done <at> debbugs.gnu.org (full text, mbox):

From: Sharlatan Hellseher <sharlatanus <at> gmail.com>
To: 73691-done <at> debbugs.gnu.org 
Subject: gnu: java-xerces: Update to 2.12.2. [security fixes]
Date: Fri, 11 Oct 2024 14:24:49 +0100
[Message part 1 (text/plain, inline)]
Pushed as 9b3f9090c8..053accdde3 to master.

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. (Sat, 09 Nov 2024 12:24:13 GMT) Full text and rfc822 format available.

This bug report was last modified 300 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.