summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorJanneke Nieuwenhuizen <janneke@gnu.org>2024-12-31 10:36:25 +0100
committerAndreas Enge <andreas@enge.fr>2025-07-18 20:17:17 +0200
commitc7e570ca293b4ddb9ff7a6e15d4151b2de60c0b4 (patch)
tree8c08a99cb6a0210ee2b8085004e6769bc038ac24 /gnu
parentd621ae8865fe7647c222d0f109622d5f87a63bf0 (diff)
gnu: mariadb: Update to 10.11.10 and fix build.
* gnu/packages/databases.scm (mariadb): Update to 10.11.10. [arguments]: In phase "ajdust-tests", disable failing "main.mysqldump-header" test, and unstable "main.log_low" and "main.mysqld--help-aria" tests. Change-Id: Ic44c76b34d278ffebeebb2ae65b9f2b40bf43dd3
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/databases.scm11
1 files changed, 8 insertions, 3 deletions
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index 7f0caae5b41..04a6a44cf6c 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -1070,7 +1070,7 @@ Language.")
(define-public mariadb
(package
(name "mariadb")
- (version "10.10.2")
+ (version "10.11.10")
(source (origin
(method url-fetch)
(uri (string-append "https://downloads.mariadb.com/MariaDB"
@@ -1078,7 +1078,7 @@ Language.")
version ".tar.gz"))
(sha256
(base32
- "1ciw7y08wms9g3hzhyria49r1b9n5wpbhkndazv95d925c8x1jsp"))
+ "08phlqcwcwl753zi2jv702q7b3h25d489289mflnm8c31djp8smh"))
(modules '((guix build utils)))
(snippet
'(begin
@@ -1188,11 +1188,16 @@ Language.")
;; <https://jira.mariadb.org/browse/MDEV-26320>.
"main.selectivity_no_engine"
- ;; FIXME: This test checks various table encodings and
+ ;; FIXME: These tests check various table encodings and
;; fails because Guix defaults to UTF8 instead of the
;; upstream default latin1_swedish_ci. It's not easily
;; substitutable because several encodings are tested.
"main.system_mysql_db"
+ "main.mysqldump-header"
+
+ ;; These test sometimes fail.
+ "main.log_slow"
+ "main.mysqld--help-aria"
;; XXX: This test occasionally fails on i686-linux:
;; <https://jira.mariadb.org/browse/MDEV-24458>