[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/09: gnu: mariadb: Disable plugin that fails on armhf.
From: |
Marius Bakke |
Subject: |
02/09: gnu: mariadb: Disable plugin that fails on armhf. |
Date: |
Sat, 28 Jul 2018 08:56:43 -0400 (EDT) |
mbakke pushed a commit to branch staging
in repository guix.
commit 5b4d2e40f1b2097c1f1ea6d1a0e701a1908011d4
Author: Marius Bakke <address@hidden>
Date: Fri Jul 20 00:50:20 2018 +0200
gnu: mariadb: Disable plugin that fails on armhf.
* gnu/packages/databases.scm (mariadb)[arguments]: Add 'disable-plugins'
phase.
---
gnu/packages/databases.scm | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index 0e30815..61b4268 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -665,6 +665,19 @@ Language.")
"-DINSTALL_SHAREDIR=share")
#:phases
(modify-phases %standard-phases
+ (add-before 'configure 'disable-plugins
+ (lambda _
+ (let ((disable-plugin (lambda (name)
+ (call-with-output-file
+ (string-append "plugin/" name
+ "/CMakeLists.txt")
+ (lambda (port)
+ (format port "\n")))))
+ (disabled-plugins '(;; FIXME: On armhf-linux, this plugin
+ ;; triggers a GCC ICE. Disable for now.
+ "semisync")))
+ (for-each disable-plugin disabled-plugins)
+ #t)))
(add-before
'configure 'pre-configure
(lambda _
- branch staging updated (9d21601 -> 3b6f8a4), Marius Bakke, 2018/07/28
- 01/09: gnu: mariadb: Install pkg-config file to a standard location., Marius Bakke, 2018/07/28
- 02/09: gnu: mariadb: Disable plugin that fails on armhf.,
Marius Bakke <=
- 06/09: gnu: mariadb: Delete test files and static libraries., Marius Bakke, 2018/07/28
- 05/09: gnu: mariadb: Remove some bundled libraries., Marius Bakke, 2018/07/28
- 09/09: gnu: libinput: Update to 1.11.3., Marius Bakke, 2018/07/28
- 03/09: gnu: mariadb: Run the full test suite., Marius Bakke, 2018/07/28
- 04/09: gnu: mariadb: Update to 10.1.34., Marius Bakke, 2018/07/28
- 07/09: build-system/meson: Remove RUNPATH workarounds., Marius Bakke, 2018/07/28
- 08/09: gnu: meson: Update to 0.47.1., Marius Bakke, 2018/07/28