commit: 488d646c06ced281f58f88e2253fe6e26fbb5a6e Author: Viorel Munteanu <ceamac <AT> gentoo <DOT> org> AuthorDate: Sat Jul 5 07:38:36 2025 +0000 Commit: Viorel Munteanu <ceamac <AT> gentoo <DOT> org> CommitDate: Sat Jul 5 08:03:16 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=488d646c
media-gfx/chafa: drop 1.14.1, 1.14.5 Signed-off-by: Viorel Munteanu <ceamac <AT> gentoo.org> media-gfx/chafa/Manifest | 2 -- media-gfx/chafa/chafa-1.14.1.ebuild | 51 ------------------------------------- media-gfx/chafa/chafa-1.14.5.ebuild | 51 ------------------------------------- 3 files changed, 104 deletions(-) diff --git a/media-gfx/chafa/Manifest b/media-gfx/chafa/Manifest index 80cbce64a09b..7af3062ee787 100644 --- a/media-gfx/chafa/Manifest +++ b/media-gfx/chafa/Manifest @@ -1,4 +1,2 @@ -DIST chafa-1.14.1.tar.xz 991656 BLAKE2B 1a7ba4c7d3958396c89b7b2f2873b4c1dfcf5209ae0d53fd0b2e014c3012a316a2d197a2f593c230e02bed01ed3119d6d0659d21b5f5d02dacd7eaaa626f2cb8 SHA512 61872acc3370318ab1a363cd21839978825d722d64225f968fd12acae1b7cf4a9be0f011fa2ab69a62cf61e32f095bb47aaf9d8796b97f25844703e7dfdfea35 -DIST chafa-1.14.5.tar.xz 993572 BLAKE2B 9d3a3a6e9a4c6aa1f2cd9e71c835eda43b4b0abbeedf659e72e4cf6eda5c4b9497253937b21d7dcb622a1dfc1febc402814291f8941ce33bfa2b9d0b92fedff0 SHA512 1ed6bb475f539e4bc310ef1a32c087430584f964533e08b1c1e0eaec7376902b579cbf716a4825df4da02ae0d56ac71926ba1681cab314057b41eb93df0ea8a4 DIST chafa-1.16.1.tar.xz 1035536 BLAKE2B a140d6cfb2ef9611d0af51dad825aa03ffa6f429f1d788e0ddc8856ce3b9112d85ea649ef20d66a57f274677edc88792f1b3546d2461b6677dfcd6154f41f625 SHA512 fae0c7720888f00a253cc8f0b68f28647d55ec8d96db305ba9c02a7defe49dd29ed543715112940b71d8ec88504a03f08468e869dfed31436132163ea9fd4ed2 DIST chafa-1.16.2.tar.xz 1039788 BLAKE2B 5ea9ae36ddd637a9b6061e082f47be247fadc53e4b0fd4e2f5015e66588f464efeae608cdf1470d8a1796fc0b3842ab232a30eec67fcc071672afa0e9f1faebe SHA512 a4a398eb39a6e77306960b2f6629695f25617116ef95e440f87437de8806b7da7d8400002e32e629ede9c1ecee67920c061b5102181afa7af6673f55f9ed93a9 diff --git a/media-gfx/chafa/chafa-1.14.1.ebuild b/media-gfx/chafa/chafa-1.14.1.ebuild deleted file mode 100644 index 7b4ded23c6ce..000000000000 --- a/media-gfx/chafa/chafa-1.14.1.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit flag-o-matic libtool - -DESCRIPTION="versatile and fast Unicode/ASCII/ANSI graphics renderer" -HOMEPAGE="https://hpjansson.org/chafa/ https://github.com/hpjansson/chafa" -SRC_URI="https://hpjansson.org/chafa/releases/${P}.tar.xz" - -LICENSE="LGPL-3+" -SLOT="0" -KEYWORDS="amd64 ~arm arm64 ~loong ~mips ~ppc ppc64 ~riscv ~sparc ~x86" -IUSE="+tools webp" - -RDEPEND=" - dev-libs/glib:2 - tools? ( >=media-libs/freetype-2.0.0 ) - webp? ( media-libs/libwebp:= ) -" -DEPEND="${RDEPEND}" -BDEPEND="virtual/pkgconfig" - -QA_CONFIG_IMPL_DECL_SKIP=( - # checking for intrinsics, will fail where not supported. bug #927102 - _mm_popcnt_u64 -) - -src_prepare() { - default - elibtoolize -} - -src_configure() { - # bug 909429 - use webp && append-ldflags -lwebp - - econf \ - --disable-man \ - $(use_with tools) \ - $(use_with webp) -} - -src_install() { - default - - use tools && doman docs/chafa.1 - - find "${ED}" -name '*.la' -delete || die -} diff --git a/media-gfx/chafa/chafa-1.14.5.ebuild b/media-gfx/chafa/chafa-1.14.5.ebuild deleted file mode 100644 index 09b91294c71e..000000000000 --- a/media-gfx/chafa/chafa-1.14.5.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit flag-o-matic libtool - -DESCRIPTION="versatile and fast Unicode/ASCII/ANSI graphics renderer" -HOMEPAGE="https://hpjansson.org/chafa/ https://github.com/hpjansson/chafa" -SRC_URI="https://hpjansson.org/chafa/releases/${P}.tar.xz" - -LICENSE="LGPL-3+" -SLOT="0" -KEYWORDS="amd64 ~arm arm64 ~loong ~mips ~ppc ppc64 ~riscv ~sparc x86" -IUSE="+tools webp" - -RDEPEND=" - dev-libs/glib:2 - tools? ( >=media-libs/freetype-2.0.0 ) - webp? ( media-libs/libwebp:= ) -" -DEPEND="${RDEPEND}" -BDEPEND="virtual/pkgconfig" - -QA_CONFIG_IMPL_DECL_SKIP=( - # checking for intrinsics, will fail where not supported. bug #927102 - _mm_popcnt_u64 -) - -src_prepare() { - default - elibtoolize -} - -src_configure() { - # bug 909429 - use webp && append-ldflags -lwebp - - econf \ - --disable-man \ - $(use_with tools) \ - $(use_with webp) -} - -src_install() { - default - - use tools && doman docs/chafa.1 - - find "${ED}" -name '*.la' -delete || die -}
