Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/babl/
Date: Thu, 30 Apr 2020 21:28:55
Message-Id: 1588282107.248c07dc801573e42798745efb86e066ad2ae155.asturm@gentoo
1 commit: 248c07dc801573e42798745efb86e066ad2ae155
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 30 16:55:45 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 30 21:28:27 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=248c07dc
7
8 media-libs/babl: Drop 0.1.62
9
10 Package-Manager: Portage-2.3.99, Repoman-2.3.22
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 media-libs/babl/Manifest | 1 -
14 media-libs/babl/babl-0.1.62.ebuild | 54 --------------------------------------
15 2 files changed, 55 deletions(-)
16
17 diff --git a/media-libs/babl/Manifest b/media-libs/babl/Manifest
18 index 1c1bc1e4ca8..e5bd89675be 100644
19 --- a/media-libs/babl/Manifest
20 +++ b/media-libs/babl/Manifest
21 @@ -1,3 +1,2 @@
22 -DIST babl-0.1.62.tar.bz2 698161 BLAKE2B 21fdc009e56d40a8ee08509161dcad10c3f5b41c42ab7f2d64f888762a15b3dd4b6723a4caa4aea7c977179007db4b6e39b6ab9fde4c68bb24ea170ccf29dbd3 SHA512 4d2ba25e39b8dcb122913731861fa04cafd97388a1c354afb2188e8582ac78e9e32f838e2be8e9f41ee9ac582081fdee1d79accb60e824b8b2c12995f96a8293
23 DIST babl-0.1.66.tar.bz2 706100 BLAKE2B 0de443dd4ea32cd025c8b121f042c24528677f32a6c201f3abedd13fb3a2ce2636d03f4b45eefce2c9f7a86426355af9b584602ca9ebb1a2140ee88f500c2843 SHA512 41534eea6cad21eae704af3fdce4857e9dc2b0efa48a7cfd7f98b23428198e95fc9ca2f30e522abf2fa06e907eaf4f7bbafc048b356cb5890fabcb9be21001b3
24 DIST babl-0.1.74.tar.xz 294156 BLAKE2B bb5df4db706f817d9cf8674caed9b758fc1380b9dd33a26b24990eae07543f097c5e5fb68788c02cb2a2c0e68e917bb7a1c68aa0d2f9871dfd3267934291d474 SHA512 97b4a5aad76b7d6dee1835774cee48f866a9513c6454d74c3378068a60359704c1ba106a7542b9ac6a7968b3cf632ed2626b835ec9c7f3fcc6e29968c1e39396
25
26 diff --git a/media-libs/babl/babl-0.1.62.ebuild b/media-libs/babl/babl-0.1.62.ebuild
27 deleted file mode 100644
28 index 8a25c028768..00000000000
29 --- a/media-libs/babl/babl-0.1.62.ebuild
30 +++ /dev/null
31 @@ -1,54 +0,0 @@
32 -# Copyright 1999-2020 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=7
36 -
37 -if [[ ${PV} == *9999* ]]; then
38 - inherit autotools git-r3
39 - EGIT_REPO_URI="https://gitlab.gnome.org/GNOME/babl.git"
40 - SRC_URI=""
41 -else
42 - SRC_URI="http://ftp.gimp.org/pub/${PN}/${PV:0:3}/${P}.tar.bz2"
43 - KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 -sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
44 -fi
45 -
46 -DESCRIPTION="A dynamic, any to any, pixel format conversion library"
47 -HOMEPAGE="http://www.gegl.org/babl/"
48 -
49 -LICENSE="LGPL-3"
50 -SLOT="0"
51 -IUSE="altivec cpu_flags_x86_sse cpu_flags_x86_sse2 cpu_flags_x86_sse3 cpu_flags_x86_sse4_1 cpu_flags_x86_mmx cpu_flags_x86_f16c"
52 -
53 -RDEPEND=""
54 -DEPEND="${RDEPEND}
55 - >=sys-devel/libtool-2.2
56 - virtual/pkgconfig
57 -"
58 -
59 -src_prepare() {
60 - default
61 - [[ ${PV} == *9999* ]] && eautoreconf
62 -}
63 -
64 -src_configure() {
65 - # Automagic rsvg support is just for website generation we do not call,
66 - # so we don't need to fix it
67 - # w3m is used for dist target thus no issue for us that it is automagically
68 - # detected
69 - econf \
70 - --disable-docs \
71 - --disable-static \
72 - --disable-maintainer-mode \
73 - $(use_enable altivec) \
74 - $(use_enable cpu_flags_x86_f16c f16c) \
75 - $(use_enable cpu_flags_x86_mmx mmx) \
76 - $(use_enable cpu_flags_x86_sse sse) \
77 - $(use_enable cpu_flags_x86_sse2 sse2) \
78 - $(use_enable cpu_flags_x86_sse3 sse3) \
79 - $(use_enable cpu_flags_x86_sse4_1 sse4_1)
80 -}
81 -
82 -src_install() {
83 - default
84 - find "${D}" -name '*.la' -type f -delete || die
85 -}