From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9B5181382C5 for ; Wed, 23 Jun 2021 07:56:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BEC92E0837; Wed, 23 Jun 2021 07:56:41 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A2AE2E0837 for ; Wed, 23 Jun 2021 07:56:41 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0E9CF335C5D for ; Wed, 23 Jun 2021 07:56:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 498E37A0 for ; Wed, 23 Jun 2021 07:56:38 +0000 (UTC) From: "Sergei Trofimovich" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergei Trofimovich" Message-ID: <1624434995.4f68a8ddea4485cea2d1cd54a04ab211f5babd49.slyfox@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/diffoscope/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/diffoscope/diffoscope-177.ebuild X-VCS-Directories: dev-util/diffoscope/ X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: 4f68a8ddea4485cea2d1cd54a04ab211f5babd49 X-VCS-Branch: master Date: Wed, 23 Jun 2021 07:56:38 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 49bdd0d7-1b7b-4b4c-95b1-0bb895fe78ce X-Archives-Hash: da9d8e18ada23ab1c7384b7c59688e1c commit: 4f68a8ddea4485cea2d1cd54a04ab211f5babd49 Author: Sergei Trofimovich gentoo org> AuthorDate: Wed Jun 23 07:56:28 2021 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Wed Jun 23 07:56:35 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f68a8dd dev-util/diffoscope: disable docx2txt tests Reported-by: Jonathan Lovelace Closes: https://bugs.gentoo.org/797688 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Sergei Trofimovich gentoo.org> dev-util/diffoscope/diffoscope-177.ebuild | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/dev-util/diffoscope/diffoscope-177.ebuild b/dev-util/diffoscope/diffoscope-177.ebuild index a77716a3fd7..6b1e9ecce52 100644 --- a/dev-util/diffoscope/diffoscope-177.ebuild +++ b/dev-util/diffoscope/diffoscope-177.ebuild @@ -25,9 +25,13 @@ RESTRICT="!test? ( test )" # pull in optional tools for tests: # img2txt: bug #797688 +# docx2txt: bug #797688 DEPEND=" dev-python/setuptools[${PYTHON_USEDEP}] - test? ( media-libs/libcaca ) + test? ( + app-text/docx2txt + media-libs/libcaca + ) " RDEPEND="dev-python/python-magic[${PYTHON_USEDEP}] dev-python/libarchive-c[${PYTHON_USEDEP}] @@ -101,6 +105,9 @@ python_test() { tests/comparators/test_jpeg_image.py::test_compare_non_existing tests/comparators/test_jpeg_image.py::test_diff_meta tests/comparators/test_jpeg_image.py::test_has_visuals + + # docx2txt based falures, bug #797688 + tests/comparators/test_docx.py::test_diff ) epytest ${exclude[@]/#/--deselect } }