From patchwork Tue Jan 7 16:11:21 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: a-christidis@ti.com X-Patchwork-Id: 55139 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id 97F67E77197 for ; Tue, 7 Jan 2025 16:11:29 +0000 (UTC) Received: from fllv0015.ext.ti.com (fllv0015.ext.ti.com [198.47.19.141]) by mx.groups.io with SMTP id smtpd.web10.24515.1736266283358387228 for ; Tue, 07 Jan 2025 08:11:23 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@ti.com header.s=ti-com-17Q1 header.b=cGhDHygU; spf=pass (domain: ti.com, ip: 198.47.19.141, mailfrom: a-christidis@ti.com) Received: from lelv0265.itg.ti.com ([10.180.67.224]) by fllv0015.ext.ti.com (8.15.2/8.15.2) with ESMTP id 507GBLLf007633; Tue, 7 Jan 2025 10:11:21 -0600 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ti.com; s=ti-com-17Q1; t=1736266281; bh=UEZhjn5hIvPvyHKopguv/NN8Xkc9YOOBFVreHsc9JhE=; h=From:To:Subject:Date; b=cGhDHygUHnr1sKCSK3pQ5iuc7+EkTEwgzh0saCdmarWrgc6RTJzslGdaQ7QyRD6uH ieSANQ7OPoOCPrJJOdm+5bKQ1yBAv5OLV9SZOIpqRLjwLZSUbcnsq8//gYNTE5o7FT c4mWstuLAiaJHrvzRrehd9D6NVj/nXowSYB7NS4Q= Received: from DLEE109.ent.ti.com (dlee109.ent.ti.com [157.170.170.41]) by lelv0265.itg.ti.com (8.15.2/8.15.2) with ESMTPS id 507GBLWD025355 (version=TLSv1.2 cipher=AES256-GCM-SHA384 bits=256 verify=FAIL); Tue, 7 Jan 2025 10:11:21 -0600 Received: from DLEE103.ent.ti.com (157.170.170.33) by DLEE109.ent.ti.com (157.170.170.41) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2507.23; Tue, 7 Jan 2025 10:11:21 -0600 Received: from lelvsmtp5.itg.ti.com (10.180.75.250) by DLEE103.ent.ti.com (157.170.170.33) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2507.23 via Frontend Transport; Tue, 7 Jan 2025 10:11:21 -0600 Received: from antonios-ThinkStation-P3-Tower.dhcp.ti.com (antonios-thinkstation-p3-tower.dhcp.ti.com [128.247.81.112]) by lelvsmtp5.itg.ti.com (8.15.2/8.15.2) with ESMTP id 507GBLT1092933; Tue, 7 Jan 2025 10:11:21 -0600 From: To: , Subject: [meta-python][scarthgap][PATCH v1] pytesseract: add recipe to scarthgap Date: Tue, 7 Jan 2025 10:11:21 -0600 Message-ID: <20250107161121.2046968-1-a-christidis@ti.com> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 X-C2ProcessedOrg: 333ef613-75bf-4e12-a4b1-8e3623f5dcea List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Tue, 07 Jan 2025 16:11:29 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/114712 From: Antonios Christidis Recipe builds the python module pytessereact, version 0.3.13. The module is a wrapper for Google's Tesseract-OCR engine. Signed-off-by: Antonios Christidis --- .../python-pytesseract/pytesseract_0.3.13.bb | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 meta-python/recipes-extended/python-pytesseract/pytesseract_0.3.13.bb diff --git a/meta-python/recipes-extended/python-pytesseract/pytesseract_0.3.13.bb b/meta-python/recipes-extended/python-pytesseract/pytesseract_0.3.13.bb new file mode 100644 index 000000000..ff2814f8c --- /dev/null +++ b/meta-python/recipes-extended/python-pytesseract/pytesseract_0.3.13.bb @@ -0,0 +1,14 @@ +SUMMARY = "Python-tesseract is an optical character recognition (OCR) tool for python. That is, it will recognize and "read" the text embedded in images." + +HOMEPAGE = "https://github.com/madmaze/pytesseract" + +LICENSE = "Apache-2.0" +LIC_FILES_CHKSUM = "file://LICENSE;md5=86d3f3a95c324c9479bd8986968f4327" + +SRC_URI[md5sum] = "73f9645e59b437f064d05882b95832ce" + +PYPI_PACKAGE = "pytesseract" + +inherit pypi setuptools3 + +BBCLASSEXTEND = "native"