[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
15/23: gnu: calibre: Disable sqlite test.
From: |
guix-commits |
Subject: |
15/23: gnu: calibre: Disable sqlite test. |
Date: |
Sun, 5 May 2019 11:15:25 -0400 (EDT) |
dannym pushed a commit to branch master
in repository guix.
commit cbe399e7367eb2957026618689708b7d25500920
Author: Brendan Tildesley <address@hidden>
Date: Sat May 4 02:42:23 2019 +1000
gnu: calibre: Disable sqlite test.
* gnu/packages/patches/calibre-remove-test-sqlite.patch: New file.
* gnu/packages/ebook.scm (calibre)[source]: Use it.
* gnu/local.mk (dist_patch_DATA): Add it.
Signed-off-by: Danny Milosavljevic <address@hidden>
---
gnu/local.mk | 1 +
gnu/packages/ebook.scm | 1 +
.../patches/calibre-remove-test-sqlite.patch | 29 ++++++++++++++++++++++
3 files changed, 31 insertions(+)
diff --git a/gnu/local.mk b/gnu/local.mk
index 9e31868..d6f52ae 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -691,6 +691,7 @@ dist_patch_DATA =
\
%D%/packages/patches/byobu-writable-status.patch \
%D%/packages/patches/calibre-no-updates-dialog.patch \
%D%/packages/patches/calibre-remove-test-bs4.patch \
+ %D%/packages/patches/calibre-remove-test-sqlite.patch \
%D%/packages/patches/calibre-remove-test-unrar.patch \
%D%/packages/patches/casync-renameat2-declaration.patch \
%D%/packages/patches/catdoc-CVE-2017-11110.patch \
diff --git a/gnu/packages/ebook.scm b/gnu/packages/ebook.scm
index cf5a3513..242a2a2 100644
--- a/gnu/packages/ebook.scm
+++ b/gnu/packages/ebook.scm
@@ -98,6 +98,7 @@
#t))
(patches (search-patches "calibre-no-updates-dialog.patch"
"calibre-remove-test-bs4.patch" ; TODO: fix
test.
+ "calibre-remove-test-sqlite.patch" ; TODO:
fix test.
"calibre-remove-test-unrar.patch"))))
(build-system python-build-system)
(native-inputs
diff --git a/gnu/packages/patches/calibre-remove-test-sqlite.patch
b/gnu/packages/patches/calibre-remove-test-sqlite.patch
new file mode 100644
index 0000000..7bdd908
--- /dev/null
+++ b/gnu/packages/patches/calibre-remove-test-sqlite.patch
@@ -0,0 +1,29 @@
+From a92e26359bd07743ab105819ed0b619e27e14017 Mon Sep 17 00:00:00 2001
+From: Brendan Tildesley <address@hidden>
+Date: Sat, 27 Apr 2019 03:30:53 +1000
+Subject: [PATCH] Disable test_sqlite.
+
+---
+ src/calibre/test_build.py | 6 ------
+ 1 file changed, 6 deletions(-)
+
+diff --git a/src/calibre/test_build.py b/src/calibre/test_build.py
+index 07bdffd3e5..740588c95b 100644
+--- a/src/calibre/test_build.py
++++ b/src/calibre/test_build.py
+@@ -162,12 +162,6 @@ class BuildTest(unittest.TestCase):
+ au(x, 'strftime')
+ self.assertEqual(unicode_type(time.strftime(fmt.replace('%e',
'%#d'), t)), x)
+
+- def test_sqlite(self):
+- import sqlite3
+- conn = sqlite3.connect(':memory:')
+- from calibre.library.sqlite import load_c_extensions
+- self.assertTrue(load_c_extensions(conn, True), 'Failed to load sqlite
extension')
+-
+ def test_apsw(self):
+ import apsw
+ conn = apsw.Connection(':memory:')
+--
+2.21.0
+
- branch master updated (c8e214e -> ee3ce0d), guix-commits, 2019/05/05
- 03/23: gnu: calibre: Build rapydscript., guix-commits, 2019/05/05
- 04/23: gnu: calibre: Add missing dependencies as indicated by tests., guix-commits, 2019/05/05
- 06/23: gnu: Add python-html2text, python2-html2text., guix-commits, 2019/05/05
- 08/23: gnu: python-regex, python2-regex: Update to 2019.04.14., guix-commits, 2019/05/05
- 02/23: gnu: calibre: Use system mathjax., guix-commits, 2019/05/05
- 17/23: gnu: calibre: Remove some comments., guix-commits, 2019/05/05
- 16/23: gnu: calibre: Enable tests., guix-commits, 2019/05/05
- 10/23: gnu: calibre: Disable tests that require networking., guix-commits, 2019/05/05
- 20/23: gnu: calibre: Delete various junk from source., guix-commits, 2019/05/05
- 15/23: gnu: calibre: Disable sqlite test.,
guix-commits <=
- 18/23: gnu: calibre: Unbundle python2-odfpy., guix-commits, 2019/05/05
- 21/23: gnu: calibre: Install man pages., guix-commits, 2019/05/05
- 23/23: gnu: calibre: Update to 3.42.0., guix-commits, 2019/05/05
- 19/23: gnu: calibre: Remove libxrender as an input., guix-commits, 2019/05/05
- 01/23: gnu: calibre: Update to 3.41.3., guix-commits, 2019/05/05
- 05/23: gnu: calibre: Move font unbundling to after check phase., guix-commits, 2019/05/05
- 07/23: gnu: calibre: Add python2-html2text as an input., guix-commits, 2019/05/05
- 12/23: gnu: calibre: Use "linux.py" to install desktop files., guix-commits, 2019/05/05
- 14/23: gnu: calibre: Disable Qt test., guix-commits, 2019/05/05
- 13/23: gnu: calibre: Disable bs4 test., guix-commits, 2019/05/05