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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BFD7A158021 for ; Sat, 5 Nov 2022 15:26:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 08857E07C9; Sat, 5 Nov 2022 15:26:36 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D2F59E07C5 for ; Sat, 5 Nov 2022 15:26:35 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 267C4340931 for ; Sat, 5 Nov 2022 15:26:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7797F72B for ; Sat, 5 Nov 2022 15:26:32 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1667591023.3ddaec13abe81b0110747332fda01149daeb0081.arthurzam@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: app-text/OCRmyPDF/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-text/OCRmyPDF/OCRmyPDF-14.0.1-r1.ebuild app-text/OCRmyPDF/OCRmyPDF-14.0.1-r2.ebuild X-VCS-Directories: app-text/OCRmyPDF/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: 3ddaec13abe81b0110747332fda01149daeb0081 X-VCS-Branch: master Date: Sat, 5 Nov 2022 15:26:32 +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: 770eb534-31ac-4ff5-a6a1-21cc95ec04e1 X-Archives-Hash: c868d46e6ef0a58387f575de6e909798 commit: 3ddaec13abe81b0110747332fda01149daeb0081 Author: Anna (cybertailor) Vyalkova sysrq in> AuthorDate: Fri Nov 4 19:38:59 2022 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Fri Nov 4 19:43:43 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3ddaec13 app-text/OCRmyPDF: try to fix tests Closes: https://bugs.gentoo.org/879103 Signed-off-by: Anna (cybertailor) Vyalkova sysrq.in> .../{OCRmyPDF-14.0.1-r1.ebuild => OCRmyPDF-14.0.1-r2.ebuild} | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app-text/OCRmyPDF/OCRmyPDF-14.0.1-r1.ebuild b/app-text/OCRmyPDF/OCRmyPDF-14.0.1-r2.ebuild similarity index 92% rename from app-text/OCRmyPDF/OCRmyPDF-14.0.1-r1.ebuild rename to app-text/OCRmyPDF/OCRmyPDF-14.0.1-r2.ebuild index dadc4dfa5..c15e0a32d 100644 --- a/app-text/OCRmyPDF/OCRmyPDF-14.0.1-r1.ebuild +++ b/app-text/OCRmyPDF/OCRmyPDF-14.0.1-r2.ebuild @@ -15,11 +15,12 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="CC-BY-SA-2.5 CC-BY-SA-4.0 MIT MPL-2.0 ZLIB" SLOT="0" KEYWORDS="~amd64" +IUSE="jpeg png webp" RDEPEND=" >=app-text/ghostscript-gpl-9.50 >=app-text/pdfminer-20201018[${PYTHON_USEDEP}] - >=app-text/tesseract-4.1.1 + >=app-text/tesseract-4.1.1[jpeg?,tiff,png?,webp?] >=dev-python/coloredlogs-14.0[${PYTHON_USEDEP}] >=dev-python/deprecation-2.1.0[${PYTHON_USEDEP}] >=dev-python/packaging-20[${PYTHON_USEDEP}] @@ -64,6 +65,6 @@ src_install() { pkg_postinst() { optfeature "JBIG2 optimization support" media-libs/jbig2enc - optfeature "PNG optimization support" media-gfx/pngquant optfeature "image cleaning support" app-text/unpaper + use png && optfeature "PNG optimization support" media-gfx/pngquant }