From: "James Le Cuirot" <chewi@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/leptonica/
Date: Sun, 19 Oct 2025 16:16:32 +0000 (UTC) [thread overview]
Message-ID: <1760890558.07b36511a6e43c1b6d8b91c4acab76c7f6fc597c.chewi@gentoo> (raw)
commit: 07b36511a6e43c1b6d8b91c4acab76c7f6fc597c
Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 19 16:15:58 2025 +0000
Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Sun Oct 19 16:15:58 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07b36511
media-libs/leptonica: Drop old 1.84.1-r2
Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
media-libs/leptonica/Manifest | 1 -
media-libs/leptonica/leptonica-1.84.1-r2.ebuild | 81 -------------------------
2 files changed, 82 deletions(-)
diff --git a/media-libs/leptonica/Manifest b/media-libs/leptonica/Manifest
index eaf53794b0ce..e1d2904e1347 100644
--- a/media-libs/leptonica/Manifest
+++ b/media-libs/leptonica/Manifest
@@ -1,3 +1,2 @@
-DIST leptonica-1.84.1.tar.gz 14102299 BLAKE2B 1da9b5bd2b72fa82320126dd8e6e647fbc50be0dcd71a0f8e392d9617911fe4f224d51158ab230476afbf7fd0e15cae1b59d8469cbf68a43893ada09a8d93673 SHA512 949be33a09e1dfc04527f5401d3d682999bd6904dca0b4950b457d12564e3290ec5b62ab4b14ef14d6f499a0fbfa0ebc37c2e8ab2966913883127b9489f47e97
DIST leptonica-1.85.0.tar.gz 14757419 BLAKE2B db26f30121f8fa7807068d3e55c1cc3ed2f8a7a6f8bb8cc46a240257d11842000b63a4b08542c87a90bc446ccb53a1fe36823661416ec120da8e9b199ddb8def SHA512 ad097f8238bb88f044511bedb6debfb8a1492a4636348b21ce103034d3878ae1097e7ca8de9c39ef01f34589526d7e8aee68fb1b83aae5ffc0026c04360b882c
DIST leptonica-1.86.0.tar.gz 14802116 BLAKE2B f4bc4fd032e8587b953e04eeba98f0a48341edf6a07d7abf5da240ca9e4f4dbf371726ff9301884b94208d126a80019f64c1be15487a4f48af02811430471050 SHA512 0b50ecebb4bf46c665e02992248160019ca1771c6d700ba5bb8030dc3803595a491612665a1c07d1ebbe91ef8fa578ea54b4810ff7a1809f0a554c7018773333
diff --git a/media-libs/leptonica/leptonica-1.84.1-r2.ebuild b/media-libs/leptonica/leptonica-1.84.1-r2.ebuild
deleted file mode 100644
index 9bae14752ce9..000000000000
--- a/media-libs/leptonica/leptonica-1.84.1-r2.ebuild
+++ /dev/null
@@ -1,81 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit libtool multilib-minimal
-
-DESCRIPTION="C library for image processing and analysis"
-HOMEPAGE="http://www.leptonica.org/"
-SRC_URI="https://github.com/DanBloomberg/${PN}/releases/download/${PV}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0/6"
-KEYWORDS="~alpha amd64 arm arm64 ~loong ~mips ppc ppc64 ~riscv ~sparc x86 ~ppc-macos"
-IUSE="gif jpeg jpeg2k png static-libs test tiff utils webp zlib"
-# N.B. Tests need some features enabled:
-REQUIRED_USE="
- tiff? ( jpeg )
- test? ( jpeg png tiff zlib )
-"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- gif? ( >=media-libs/giflib-5.1.3:=[${MULTILIB_USEDEP}] )
- jpeg? ( media-libs/libjpeg-turbo:=[${MULTILIB_USEDEP}] )
- jpeg2k? ( media-libs/openjpeg:2=[${MULTILIB_USEDEP}] )
- png? (
- media-libs/libpng:0=[${MULTILIB_USEDEP}]
- sys-libs/zlib:=[${MULTILIB_USEDEP}]
- )
- tiff? ( media-libs/tiff:=[${MULTILIB_USEDEP}] )
- webp? ( media-libs/libwebp:=[${MULTILIB_USEDEP}] )
- zlib? ( sys-libs/zlib:=[${MULTILIB_USEDEP}] )"
-DEPEND="${RDEPEND}
- test? ( media-libs/tiff[jpeg,zlib] )"
-
-DOCS=( README version-notes )
-
-src_prepare() {
- default
- elibtoolize
-
- # unhtmlize docs
- local X
- for X in ${DOCS[@]}; do
- awk '/<\/pre>/{s--} {if (s) print $0} /<pre>/{s++}' \
- "${X}.html" > "${X}" || die 'awk failed'
- rm -f -- "${X}.html"
- done
-}
-
-multilib_src_configure() {
- ECONF_SOURCE="${S}" econf \
- --enable-shared \
- $(use_with gif giflib) \
- $(use_with jpeg) \
- $(use_with jpeg2k libopenjpeg) \
- $(use_with png libpng) \
- $(use_with tiff libtiff) \
- $(use_with webp libwebp) \
- $(use_with webp libwebpmux) \
- $(use_with zlib) \
- $(use_enable static-libs static) \
- $(multilib_native_use_enable utils programs)
-}
-
-multilib_src_test() {
- # ${TMPDIR} is not respected. It used to be but it lead to issues and there
- # have been long debates with upstream about it. :( Delete /tmp/lept before
- # and after to avoid issues.
- rm -rf /tmp/lept/ || die
- default
- rm -rf /tmp/lept/ || die
-}
-
-multilib_src_install_all() {
- einstalldocs
-
- # libtool archives covered by pkg-config
- find "${ED}" -name '*.la' -delete || die
-}
next reply other threads:[~2025-10-19 16:16 UTC|newest]
Thread overview: 73+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-10-19 16:16 James Le Cuirot [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-10-19 15:53 [gentoo-commits] repo/gentoo:master commit in: media-libs/leptonica/ Arthur Zamarin
2025-10-19 15:53 Arthur Zamarin
2025-10-19 13:20 Sam James
2025-10-19 13:20 Sam James
2025-10-19 7:50 Sam James
2025-10-19 7:50 Sam James
2025-10-18 22:01 James Le Cuirot
2025-03-15 23:48 James Le Cuirot
2025-03-14 11:14 Sam James
2024-12-24 5:00 Sam James
2024-12-04 9:15 Sam James
2024-12-03 11:14 Sam James
2024-12-01 19:02 Arthur Zamarin
2024-12-01 19:02 Arthur Zamarin
2024-10-25 21:36 James Le Cuirot
2024-01-11 22:17 James Le Cuirot
2024-01-10 22:11 James Le Cuirot
2024-01-07 14:52 James Le Cuirot
2023-08-03 20:10 James Le Cuirot
2023-08-02 18:27 Arthur Zamarin
2023-07-16 23:01 Sam James
2023-07-12 6:39 Jakov Smolić
2023-04-01 16:07 Arthur Zamarin
2023-03-17 6:47 Arthur Zamarin
2023-03-16 22:20 Sam James
2023-01-27 23:20 James Le Cuirot
2023-01-13 23:33 James Le Cuirot
2022-09-29 22:32 James Le Cuirot
2022-09-27 7:10 Agostino Sarubbo
2022-09-27 7:09 Agostino Sarubbo
2022-09-27 7:08 Agostino Sarubbo
2022-09-27 7:07 Agostino Sarubbo
2022-09-27 7:06 Agostino Sarubbo
2022-09-27 7:06 Agostino Sarubbo
2022-05-14 7:28 WANG Xuerui
2021-09-25 22:47 James Le Cuirot
2021-09-25 22:47 James Le Cuirot
2021-08-24 21:02 Marek Szuba
2021-06-14 21:47 James Le Cuirot
2021-06-08 13:26 James Le Cuirot
2021-06-08 9:23 Sam James
2021-05-22 1:32 Sam James
2021-05-16 12:45 Sam James
2021-05-16 12:45 Sam James
2021-05-16 0:13 Sam James
2021-05-16 0:13 Sam James
2020-08-18 22:48 James Le Cuirot
2020-04-04 3:38 Mike Gilbert
2019-05-16 19:30 Aaron Bauman
2019-03-30 10:12 James Le Cuirot
2018-10-19 8:51 Michał Górny
2018-05-03 22:11 James Le Cuirot
2018-03-17 13:49 James Le Cuirot
2018-03-17 13:31 Mikle Kolyada
2018-02-12 23:00 James Le Cuirot
2017-11-10 10:10 Sergei Trofimovich
2017-11-08 20:50 Tobias Klausmann
2017-11-07 18:22 Thomas Deutschmann
2017-11-07 13:16 Manuel Rüger
2017-08-26 7:56 James Le Cuirot
2017-07-11 8:41 Alexis Ballier
2017-02-24 0:13 Michael Weber
2017-02-17 10:56 Agostino Sarubbo
2017-02-15 13:49 Tobias Klausmann
2017-02-12 17:01 Agostino Sarubbo
2017-02-07 11:28 Agostino Sarubbo
2017-01-07 14:20 James Le Cuirot
2016-12-31 16:38 James Le Cuirot
2016-12-31 16:38 James Le Cuirot
2016-01-27 13:53 James Le Cuirot
2015-11-07 16:13 Fabian Groffen
2015-09-01 19:43 Tobias Klausmann
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1760890558.07b36511a6e43c1b6d8b91c4acab76c7f6fc597c.chewi@gentoo \
--to=chewi@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox