summaryrefslogtreecommitdiff
path: root/dev-python/pytesseract
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
commita3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-python/pytesseract
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadbaldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'dev-python/pytesseract')
-rw-r--r--dev-python/pytesseract/Manifest1
-rw-r--r--dev-python/pytesseract/metadata.xml24
-rw-r--r--dev-python/pytesseract/pytesseract-0.3.13.ebuild39
3 files changed, 0 insertions, 64 deletions
diff --git a/dev-python/pytesseract/Manifest b/dev-python/pytesseract/Manifest
deleted file mode 100644
index 0451c2b491a0..000000000000
--- a/dev-python/pytesseract/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST pytesseract-0.3.13.gh.tar.gz 1099109 BLAKE2B 72bd060c070471cd85ef467c4ba339c0e88c151d2af768212071a35e79169f718907a2dbedb53f10821ce69302253e01181bfa29b1e9b4af1847dac5453c7aba SHA512 da5edaaca8a0c796c2a47777e4b894824b16522d7d3a0e8f669a183bcbdfdf0d0412de4ca53d5bef082fd2b627356e7fd21f86e3107525a99a011fcaba5adacf
diff --git a/dev-python/pytesseract/metadata.xml b/dev-python/pytesseract/metadata.xml
deleted file mode 100644
index a59128537ce9..000000000000
--- a/dev-python/pytesseract/metadata.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>tupone@gentoo.org</email>
- <name>Tupone Alfredo</name>
- </maintainer>
- <longdescription lang="en">
- Python-tesseract is an optical character recognition (OCR) tool for
- python.
- That is, it will recognize and "read" the text embedded in images.
-
- Python-tesseract is a wrapper for Google's Tesseract-OCR Engine.
- It is also useful as a stand-alone invocation script to tesseract, as
- it can read all image types supported by the Pillow and Leptonica
- imaging libraries, including jpeg, png, gif, bmp, tiff, and others.
- Additionally, if used as a script, Python-tesseract will print the
- recognized text instead of writing it to a file.
- </longdescription>
- <upstream>
- <remote-id type="github">madmaze/pytesseract</remote-id>
- <remote-id type="pypi">pytesseract</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-python/pytesseract/pytesseract-0.3.13.ebuild b/dev-python/pytesseract/pytesseract-0.3.13.ebuild
deleted file mode 100644
index 4c47b503fbeb..000000000000
--- a/dev-python/pytesseract/pytesseract-0.3.13.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 2022-2026 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{13..14} )
-
-inherit distutils-r1
-
-DESCRIPTION="Optical character recognition (OCR) tool"
-HOMEPAGE="
- https://github.com/madmaze/pytesseract/
- https://pypi.org/project/pytesseract/
-"
-SRC_URI="
- https://github.com/madmaze/pytesseract/archive/v${PV}.tar.gz
- -> ${P}.gh.tar.gz
-"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 arm64 x86"
-
-RDEPEND="
- dev-python/pillow[${PYTHON_USEDEP}]
- app-text/tesseract
-"
-BDEPEND="
- test? (
- app-text/tesseract[jpeg,png,tiff,webp]
- media-libs/leptonica[gif,jpeg2k]
- app-text/tessdata_fast[l10n_fr]
- dev-python/pillow[jpeg,zlib]
- )
-"
-
-EPYTEST_PLUGINS=()
-distutils_enable_tests pytest