commit:     303cb4d2e422178f4a463ba85576fe56d0a421cd
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 18 08:21:37 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Dec 18 08:30:34 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=303cb4d2

app-text/tesseract: drop 5.0.1-r1, 5.1.0-r1

Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-text/tesseract/Manifest                  |  2 -
 app-text/tesseract/tesseract-5.0.1-r1.ebuild | 92 ----------------------------
 app-text/tesseract/tesseract-5.1.0-r1.ebuild | 92 ----------------------------
 3 files changed, 186 deletions(-)

diff --git a/app-text/tesseract/Manifest b/app-text/tesseract/Manifest
index 5522c177da86..f845d02a0e34 100644
--- a/app-text/tesseract/Manifest
+++ b/app-text/tesseract/Manifest
@@ -1,4 +1,2 @@
 DIST tesseract-4.1.1.tar.gz 1974988 BLAKE2B 
f729beb017ec81704b84f5e6539706ff0cd6a51a4d1b7b730c394af58ce2ea2a659203bf239417e8d500cfbde845a73d6e6e181ca946257c2f22525820899602
 SHA512 
017723a2268be789fe98978eed02fd294968cc8050dde376dee026f56f2b99df42db935049ae5e72c4519a920e263b40af1a6a40d9942e66608145b3131a71a2
-DIST tesseract-5.0.1.tar.gz 1913596 BLAKE2B 
94098704c0a177eb1afc365036f9ff8d7648f80398f20a410e11b7884e1411432c2938e3ab176930630500793ef2e3f33b82f214461ef6677d289c56919f8d55
 SHA512 
0a4824f71eb76ab022f3b9258d12b9a059adcf2f37fac6442ae1096d0efc80404ba1bfd9c90e8263178c1af606c2aad2b277ceb93efc3b9e93c125f931ff08c1
-DIST tesseract-5.1.0.tar.gz 1910376 BLAKE2B 
e1c1c5c563e30689d66fb09ab73fdce853a469dfcf3c759571f6e6e1da71809a8fd1fb74c0be38588e97bbdac230c2ce10a35fd66faa6a4370d78efe112d3243
 SHA512 
d874fc995182c2c7ce210ebd79ad36414fa73afc53063505bc0b0aa0f090dc48db09c650c86a727778584f34a421b7d64c129cefe282ea112560cd7ca24e7f59
 DIST tesseract-5.2.0.tar.gz 1913462 BLAKE2B 
6b80e5bb71543cf971683f66b87fd45a971a6f337ca53567d134c3bdc227f1338a3340f5bb5c2f183288135acd6521031b0f6de6e96e333fed4dc10e93b7319e
 SHA512 
23ed931495e4ea793904f99a06a95a47873b923c4e5d8f3fc8f9203cac86b0e0013c416ab4d8d4a863a081eea00a196a0198c6fb17a39917a1baea2280d84794

diff --git a/app-text/tesseract/tesseract-5.0.1-r1.ebuild 
b/app-text/tesseract/tesseract-5.0.1-r1.ebuild
deleted file mode 100644
index 0a4c4d47b1ba..000000000000
--- a/app-text/tesseract/tesseract-5.0.1-r1.ebuild
+++ /dev/null
@@ -1,92 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools multilib-minimal toolchain-funcs
-
-DESCRIPTION="An OCR Engine, originally developed at HP, now open source"
-HOMEPAGE="https://github.com/tesseract-ocr";
-SRC_URI="https://github.com/tesseract-ocr/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0/5"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86"
-IUSE="doc float32 jpeg opencl openmp png static-libs tiff training webp"
-
-COMMON_DEPEND=">=media-libs/leptonica-1.74:=[${MULTILIB_USEDEP},zlib,tiff?,jpeg?,png?,webp?]
-       opencl? (
-               virtual/opencl[${MULTILIB_USEDEP}]
-               media-libs/tiff:=[${MULTILIB_USEDEP}]
-               media-libs/leptonica:=[tiff]
-       )
-       training? (
-               dev-libs/icu:=
-               x11-libs/pango:=
-               x11-libs/cairo:=
-       )"
-RDEPEND="${COMMON_DEPEND}
-       || (
-               >=app-text/tessdata_fast-4.0.0
-               >=app-text/tessdata_best-4.0.0
-               >=app-text/tessdata_legacy-4.0.0
-       )"
-DEPEND="${COMMON_DEPEND}
-       app-text/asciidoc
-       app-text/docbook-xsl-stylesheets
-       dev-libs/libxslt
-       doc? ( app-doc/doxygen )"
-
-pkg_pretend() {
-       [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp
-}
-
-pkg_setup() {
-       [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp
-}
-
-src_prepare() {
-       default
-       eautoreconf
-}
-
-multilib_src_configure() {
-       # scrollview disabled for now, see bug #686944
-       local myeconfargs=(
-               --enable-shared
-               --disable-graphics
-               $(use_enable float32)
-               $(use_enable opencl)
-               $(use_enable openmp)
-               $(use_enable static-libs static)
-       )
-
-       ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
-}
-
-multilib_src_compile() {
-       default
-       if multilib_is_native_abi; then
-               use doc && emake doc
-               use training && emake training
-       fi
-}
-
-multilib_src_install() {
-       if multilib_is_native_abi; then
-               DOCS=( "${S}"/AUTHORS "${S}"/ChangeLog "${S}"/README.md )
-               if use doc; then
-                       HTML_DOCS=( doc/html/. )
-               fi
-               einstalldocs
-
-               if use training; then
-                       emake DESTDIR="${D}" training-install
-               fi
-       fi
-       emake DESTDIR="${D}" install
-}
-
-multilib_src_install_all() {
-       find "${D}" -name '*.la' -type f -delete || die
-}

diff --git a/app-text/tesseract/tesseract-5.1.0-r1.ebuild 
b/app-text/tesseract/tesseract-5.1.0-r1.ebuild
deleted file mode 100644
index 0a4c4d47b1ba..000000000000
--- a/app-text/tesseract/tesseract-5.1.0-r1.ebuild
+++ /dev/null
@@ -1,92 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools multilib-minimal toolchain-funcs
-
-DESCRIPTION="An OCR Engine, originally developed at HP, now open source"
-HOMEPAGE="https://github.com/tesseract-ocr";
-SRC_URI="https://github.com/tesseract-ocr/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0/5"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86"
-IUSE="doc float32 jpeg opencl openmp png static-libs tiff training webp"
-
-COMMON_DEPEND=">=media-libs/leptonica-1.74:=[${MULTILIB_USEDEP},zlib,tiff?,jpeg?,png?,webp?]
-       opencl? (
-               virtual/opencl[${MULTILIB_USEDEP}]
-               media-libs/tiff:=[${MULTILIB_USEDEP}]
-               media-libs/leptonica:=[tiff]
-       )
-       training? (
-               dev-libs/icu:=
-               x11-libs/pango:=
-               x11-libs/cairo:=
-       )"
-RDEPEND="${COMMON_DEPEND}
-       || (
-               >=app-text/tessdata_fast-4.0.0
-               >=app-text/tessdata_best-4.0.0
-               >=app-text/tessdata_legacy-4.0.0
-       )"
-DEPEND="${COMMON_DEPEND}
-       app-text/asciidoc
-       app-text/docbook-xsl-stylesheets
-       dev-libs/libxslt
-       doc? ( app-doc/doxygen )"
-
-pkg_pretend() {
-       [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp
-}
-
-pkg_setup() {
-       [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp
-}
-
-src_prepare() {
-       default
-       eautoreconf
-}
-
-multilib_src_configure() {
-       # scrollview disabled for now, see bug #686944
-       local myeconfargs=(
-               --enable-shared
-               --disable-graphics
-               $(use_enable float32)
-               $(use_enable opencl)
-               $(use_enable openmp)
-               $(use_enable static-libs static)
-       )
-
-       ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
-}
-
-multilib_src_compile() {
-       default
-       if multilib_is_native_abi; then
-               use doc && emake doc
-               use training && emake training
-       fi
-}
-
-multilib_src_install() {
-       if multilib_is_native_abi; then
-               DOCS=( "${S}"/AUTHORS "${S}"/ChangeLog "${S}"/README.md )
-               if use doc; then
-                       HTML_DOCS=( doc/html/. )
-               fi
-               einstalldocs
-
-               if use training; then
-                       emake DESTDIR="${D}" training-install
-               fi
-       fi
-       emake DESTDIR="${D}" install
-}
-
-multilib_src_install_all() {
-       find "${D}" -name '*.la' -type f -delete || die
-}

Reply via email to