Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/libimagequant/
Date: Fri, 14 May 2021 21:29:55
Message-Id: 1621027785.57aeed9e9fa96b278bb34ebd0820e46e4bbca117.sam@gentoo
1 commit: 57aeed9e9fa96b278bb34ebd0820e46e4bbca117
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 14 21:29:37 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Fri May 14 21:29:45 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57aeed9e
7
8 media-gfx/libimagequant: drop 2.15.0
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 media-gfx/libimagequant/Manifest | 1 -
13 .../libimagequant/libimagequant-2.15.0.ebuild | 46 ----------------------
14 2 files changed, 47 deletions(-)
15
16 diff --git a/media-gfx/libimagequant/Manifest b/media-gfx/libimagequant/Manifest
17 index 69e34b7921c..b96a6f40dfe 100644
18 --- a/media-gfx/libimagequant/Manifest
19 +++ b/media-gfx/libimagequant/Manifest
20 @@ -1,4 +1,3 @@
21 DIST libimagequant-2.12.3.tar.gz 75866 BLAKE2B 857a0e3f0187251e37e0c7f4f5f5cbf49266e4eb9f684118705778d9469330cf95780ea11b83d19e28251f047a7e9b8e7ac32ac4d9554cb5d9e1b3230d39e796 SHA512 4818b00b6f154407f3e402d56f4891c2d7594c8056fada0402d7fa0024ae50127340dd8295da5f5dca13fe1829670a3fa8793aa528f3e74a2294c9a7e37b7257
22 DIST libimagequant-2.14.0.tar.gz 97471 BLAKE2B df6403aea0b0e3cbaf05c6c60726ac3de85195779e4829dd04acec28ba93ea8d629846fa71d765949e721f592300da1d35227ec7bb28e00c600c575ba3fdc4fe SHA512 d34aa2ac9f08eebd80fb9e3e7fe22a3f10ce840152c4192735d57ae37c223350af09eeff6870ee2634b3fc51b03d1663cd6afd17daeab923af3b5f60fbef57d4
23 -DIST libimagequant-2.15.0.tar.gz 98668 BLAKE2B 916bb32ad848c5076502be7f471bd693396e8a7bd36878ec928f294776bd3343e76c2323372e577d58f5bb5c4f4e6aa3a32d5103901b190b0a036684cbf5cf56 SHA512 b856daaf79dd748ed3bb4cdc432dcffebf6678f8dffd6b4b0e79b96ec9c64ebf19597de35cf56ed47d3202947f3f5f208745c2c2c92fadf6c5b62f17e61b3f13
24 DIST libimagequant-2.15.1.tar.gz 98668 BLAKE2B cfa223f0ce8fdaac5d55b951507c040c064759756a5595719d02c0ec6983a70b08ad9d5df0176adb03269a9a1b7d39e9f0f7da884df214bd7994f4647e08a9c1 SHA512 56bc8b73859908774ce0a218cfbec81bfb8432c02ddce83880990b5f5ac89ac253ae64ecde43a9664aab3ac69d309bb9ef8ba2201be6c93aacb731b3214ff4b8
25
26 diff --git a/media-gfx/libimagequant/libimagequant-2.15.0.ebuild b/media-gfx/libimagequant/libimagequant-2.15.0.ebuild
27 deleted file mode 100644
28 index e0d9b920c44..00000000000
29 --- a/media-gfx/libimagequant/libimagequant-2.15.0.ebuild
30 +++ /dev/null
31 @@ -1,46 +0,0 @@
32 -# Copyright 1999-2021 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=7
36 -
37 -inherit toolchain-funcs
38 -
39 -DESCRIPTION="Palette quantization library that powers pngquant and other PNG optimizers"
40 -HOMEPAGE="https://pngquant.org/lib/"
41 -SRC_URI="https://github.com/ImageOptim/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
42 -
43 -LICENSE="GPL-3"
44 -SLOT="0/0"
45 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
46 -IUSE="cpu_flags_x86_sse2 openmp"
47 -
48 -PATCHES=(
49 - "${FILESDIR}"/libimagequant-2.12.2-respect-CFLAGS.patch
50 - "${FILESDIR}"/libimagequant-2.12.2-fix-pkgconfig.patch
51 -)
52 -
53 -pkg_pretend() {
54 - [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp
55 -}
56 -
57 -src_prepare() {
58 - default
59 - sed -i '/install.*STATICLIB/d' Makefile || die
60 -}
61 -
62 -src_configure() {
63 - tc-export AR CC
64 -
65 - # Hand rolled configure script, so not all flags are supported.
66 - ./configure \
67 - --prefix="${EPREFIX}/usr" \
68 - --libdir="${EPREFIX}/usr/$(get_libdir)" \
69 - $(use_enable cpu_flags_x86_sse2 sse) \
70 - $(use_with openmp) \
71 - CFLAGS="${CFLAGS} ${CPPFLAGS}" \
72 - LDFLAGS="${LDFLAGS}" || die
73 -}
74 -
75 -src_compile() {
76 - emake shared imagequant.pc
77 -}