From: "Mike Frysinger" <vapier@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/imlib2/
Date: Mon, 2 Nov 2015 20:07:34 +0000 (UTC) [thread overview]
Message-ID: <1446494840.9eb6138ec87df568c54f392db8f32bc7f9b8cdc1.vapier@gentoo> (raw)
commit: 9eb6138ec87df568c54f392db8f32bc7f9b8cdc1
Author: Mike Frysinger <vapier <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 2 20:07:20 2015 +0000
Commit: Mike Frysinger <vapier <AT> gentoo <DOT> org>
CommitDate: Mon Nov 2 20:07:20 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9eb6138e
media-libs/imlib2: drop versions older than current stable
media-libs/imlib2/Manifest | 1 -
media-libs/imlib2/imlib2-1.4.5-r1.ebuild | 75 --------------------------------
media-libs/imlib2/imlib2-1.4.6-r1.ebuild | 75 --------------------------------
3 files changed, 151 deletions(-)
diff --git a/media-libs/imlib2/Manifest b/media-libs/imlib2/Manifest
index 90cf5f2..e33eadb 100644
--- a/media-libs/imlib2/Manifest
+++ b/media-libs/imlib2/Manifest
@@ -1,3 +1,2 @@
-DIST imlib2-1.4.5.tar.gz 986785 SHA256 6e809413a571f82b9e67aeaf5577a1245a034c866ae5fa83c191a227f60cc7a0 SHA512 6c3bceec39ffcb7515925c3eb4199834295732a1cc9cfa307aa8610e2565e770edfc5464ca983d1d95570bd9bac09c989e0751fa39b07cf794c0c5dce4262edf WHIRLPOOL 53c003601ca6f89927794af0f0ba48f31cce31504061b71f68f0d67b0c4266d2617a24df467af2a03d485d129ad6de745382338addf39f70810ec71db6b0833c
DIST imlib2-1.4.6.tar.gz 971792 SHA256 17cc128c0e61974d59c423b59d0fb5cb85c97169adf5b05184cc58f7c87b4f4e SHA512 8c49f2c9a4b997b536ab7553ffd80b764eccf95c6926a90c10390463e353df27c0e52345bdea9ac8fbefae3e29274022e6a8c0944f406a449293a06192a95fe5 WHIRLPOOL 98ff99fb216a867f60287b369a0b05bf5eea2da23ee8bec14f105f1805f12b035f3ff03ede0bc5909eec178b09e285b5bb0ab0c394487502aa893a94a34da90c
DIST imlib2-1.4.7.tar.gz 1027716 SHA256 48e98337a560d8904f685447f41c43914fec1f8cd3745a9fd86cba9fd24a6563 SHA512 24728586bf0d2a289fdaa7d05385a059b10092f3f777691881f01d6c9e4aa8f893ebb7bc04933644a9f62163cc649272851f1189f72aee83035816caca3a73a2 WHIRLPOOL 662c671b723f4df8267d84607b74bc76b6790d2a694a2e7b3bef084403ae8f41761813455a404c4886dbf3b7b7782534c17677b1ac81bdccf24120a3d07714e1
diff --git a/media-libs/imlib2/imlib2-1.4.5-r1.ebuild b/media-libs/imlib2/imlib2-1.4.5-r1.ebuild
deleted file mode 100644
index 38aa8de..0000000
--- a/media-libs/imlib2/imlib2-1.4.5-r1.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="4"
-
-EGIT_SUB_PROJECT="legacy"
-EGIT_URI_APPEND=${PN}
-
-if [[ ${PV} != "9999" ]] ; then
- EKEY_STATE="release"
-fi
-
-inherit enlightenment toolchain-funcs
-
-DESCRIPTION="Version 2 of an advanced replacement library for libraries like libXpm"
-HOMEPAGE="https://www.enlightenment.org/"
-
-IUSE="bzip2 gif jpeg cpu_flags_x86_mmx mp3 png static-libs tiff X zlib"
-
-RDEPEND="=media-libs/freetype-2*
- bzip2? ( app-arch/bzip2 )
- zlib? ( sys-libs/zlib )
- gif? ( >=media-libs/giflib-4.1.0 )
- png? ( media-libs/libpng:0 )
- jpeg? ( virtual/jpeg:0 )
- tiff? ( media-libs/tiff:0 )
- X? (
- x11-libs/libX11
- x11-libs/libXext
- )
- mp3? ( media-libs/libid3tag )"
-DEPEND="${RDEPEND}
- png? ( virtual/pkgconfig )
- X? (
- x11-proto/xextproto
- x11-proto/xproto
- )"
-
-src_prepare() {
- epatch "${FILESDIR}"/${PN}-1.4.5-no-my-libs.patch #497894
- epatch "${FILESDIR}"/${PN}-1.4.5-giflib-5.patch #457634
-}
-
-src_configure() {
- # imlib2 has diff configure options for x86/amd64 mmx
- if [[ $(tc-arch) == amd64 ]]; then
- E_ECONF+=( $(use_enable cpu_flags_x86_mmx amd64) --disable-mmx )
- else
- E_ECONF+=( --disable-amd64 $(use_enable cpu_flags_x86_mmx mmx) )
- fi
-
- [[ $(gcc-major-version) -ge 4 ]] && E_ECONF+=( --enable-visibility-hiding )
-
- E_ECONF+=(
- $(use_enable static-libs static)
- $(use_with X x)
- $(use_with jpeg)
- $(use_with png)
- $(use_with tiff)
- $(use_with gif)
- $(use_with zlib)
- $(use_with bzip2)
- $(use_with mp3 id3)
- )
-
- enlightenment_src_configure
-}
-
-src_install() {
- enlightenment_src_install
-
- # enlightenment_src_install should take care of this for us, but it doesn't
- find "${ED}" -name '*.la' -delete
-}
diff --git a/media-libs/imlib2/imlib2-1.4.6-r1.ebuild b/media-libs/imlib2/imlib2-1.4.6-r1.ebuild
deleted file mode 100644
index 9cedb2f..0000000
--- a/media-libs/imlib2/imlib2-1.4.6-r1.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="4"
-
-EGIT_SUB_PROJECT="legacy"
-EGIT_URI_APPEND=${PN}
-
-if [[ ${PV} != "9999" ]] ; then
- EKEY_STATE="snap"
-fi
-
-inherit enlightenment toolchain-funcs
-
-DESCRIPTION="Version 2 of an advanced replacement library for libraries like libXpm"
-HOMEPAGE="https://www.enlightenment.org/"
-
-IUSE="bzip2 gif jpeg cpu_flags_x86_mmx mp3 png static-libs tiff X zlib"
-
-RDEPEND="=media-libs/freetype-2*
- bzip2? ( app-arch/bzip2 )
- zlib? ( sys-libs/zlib )
- gif? ( >=media-libs/giflib-4.1.0 )
- png? ( media-libs/libpng:0 )
- jpeg? ( virtual/jpeg:0 )
- tiff? ( media-libs/tiff:0 )
- X? (
- x11-libs/libX11
- x11-libs/libXext
- )
- mp3? ( media-libs/libid3tag )"
-DEPEND="${RDEPEND}
- png? ( virtual/pkgconfig )
- X? (
- x11-proto/xextproto
- x11-proto/xproto
- )"
-
-src_prepare() {
- epatch "${FILESDIR}"/${PN}-1.4.5-no-my-libs.patch #497894
- epatch "${FILESDIR}"/${PN}-1.4.5-giflib-5.patch #457634
-}
-
-src_configure() {
- # imlib2 has diff configure options for x86/amd64 mmx
- if [[ $(tc-arch) == amd64 ]]; then
- E_ECONF+=( $(use_enable cpu_flags_x86_mmx amd64) --disable-mmx )
- else
- E_ECONF+=( --disable-amd64 $(use_enable cpu_flags_x86_mmx mmx) )
- fi
-
- [[ $(gcc-major-version) -ge 4 ]] && E_ECONF+=( --enable-visibility-hiding )
-
- E_ECONF+=(
- $(use_enable static-libs static)
- $(use_with X x)
- $(use_with jpeg)
- $(use_with png)
- $(use_with tiff)
- $(use_with gif)
- $(use_with zlib)
- $(use_with bzip2)
- $(use_with mp3 id3)
- )
-
- enlightenment_src_configure
-}
-
-src_install() {
- enlightenment_src_install
-
- # enlightenment_src_install should take care of this for us, but it doesn't
- find "${ED}" -name '*.la' -delete
-}
next reply other threads:[~2015-11-02 20:07 UTC|newest]
Thread overview: 131+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-11-02 20:07 Mike Frysinger [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-03-19 6:31 [gentoo-commits] repo/gentoo:master commit in: media-libs/imlib2/ Yixun Lan
2025-03-04 23:54 Yixun Lan
2024-09-19 3:09 Sam James
2024-09-19 3:09 Sam James
2024-09-19 3:09 Sam James
2024-09-19 3:09 Sam James
2024-09-19 3:09 Sam James
2024-07-14 11:01 Yixun Lan
2024-07-14 11:01 Yixun Lan
2024-05-12 11:21 Yixun Lan
2024-04-13 18:57 Arthur Zamarin
2024-04-13 18:53 Arthur Zamarin
2024-04-13 16:01 Arthur Zamarin
2024-04-13 16:01 Arthur Zamarin
2024-04-13 16:01 Arthur Zamarin
2024-04-13 13:59 Sam James
2024-04-13 13:59 Sam James
2024-04-10 23:34 Yixun Lan
2023-03-17 19:40 Andrew Savchenko
2023-01-13 16:32 Arthur Zamarin
2022-12-22 7:27 Arthur Zamarin
2022-12-21 23:09 Sam James
2022-12-21 23:09 Sam James
2022-12-21 22:54 Sam James
2022-12-21 22:48 Sam James
2022-12-21 22:48 Sam James
2022-12-21 22:47 Sam James
2022-12-18 8:32 Sam James
2022-12-11 17:52 Arthur Zamarin
2022-10-20 19:06 Arthur Zamarin
2022-10-20 18:59 Jakov Smolić
2022-10-15 7:06 Jakov Smolić
2022-10-13 23:01 Sam James
2022-10-13 22:46 Sam James
2022-08-01 3:24 Sam James
2022-07-31 14:24 Andrew Savchenko
2022-05-14 3:42 WANG Xuerui
2022-04-29 4:42 Sam James
2021-12-12 10:10 Andrew Savchenko
2021-12-12 1:53 Sam James
2021-12-12 1:53 Sam James
2021-12-12 1:53 Sam James
2021-12-12 1:52 Sam James
2021-12-12 1:51 Sam James
2021-12-11 14:42 Jakov Smolić
2021-12-11 14:42 Jakov Smolić
2021-12-10 21:08 Andrew Savchenko
2021-10-02 22:52 James Le Cuirot
2021-08-16 21:28 Sam James
2021-08-16 8:52 David Seifert
2021-05-27 14:34 Yixun Lan
2021-01-16 13:00 Andrew Savchenko
2021-01-16 13:00 Andrew Savchenko
2020-05-16 7:09 Joonas Niilola
2020-03-15 17:38 Mart Raudsepp
2020-03-10 8:35 Agostino Sarubbo
2020-02-08 7:58 Joonas Niilola
2020-01-27 11:38 Mikle Kolyada
2020-01-17 8:09 Sergei Trofimovich
2020-01-17 8:07 Sergei Trofimovich
2020-01-16 18:14 Sergei Trofimovich
2020-01-15 23:52 Sergei Trofimovich
2020-01-15 5:43 Joonas Niilola
2020-01-15 5:43 Joonas Niilola
2019-12-14 7:42 Joonas Niilola
2019-12-14 7:42 Joonas Niilola
2019-11-26 14:59 Joonas Niilola
2019-11-24 13:36 Joonas Niilola
2019-11-24 13:16 Joonas Niilola
2019-11-24 13:16 Joonas Niilola
2019-07-31 3:41 Joonas Niilola
2019-05-15 1:04 Aaron Bauman
2018-12-27 18:48 Fabian Groffen
2018-12-12 14:55 Mikle Kolyada
2018-11-28 16:19 Michał Górny
2018-11-28 12:15 Tobias Klausmann
2018-11-18 12:05 Mikle Kolyada
2018-11-06 23:56 Sergei Trofimovich
2018-11-05 7:51 Sergei Trofimovich
2018-11-05 7:51 Sergei Trofimovich
2018-11-03 18:34 Mikle Kolyada
2018-11-01 19:07 Sergei Trofimovich
2018-10-31 23:35 Sergei Trofimovich
2018-10-31 1:04 Thomas Deutschmann
2018-08-25 6:14 Michał Górny
2018-08-23 12:32 Michał Górny
2018-07-31 11:04 Michał Górny
2018-07-29 10:35 Sergei Trofimovich
2018-07-22 23:22 Andreas Sturmlechner
2018-07-22 23:22 Andreas Sturmlechner
2018-07-22 23:22 Andreas Sturmlechner
2018-07-22 1:27 Mikle Kolyada
2018-07-09 14:17 Mikle Kolyada
2018-07-02 0:49 Thomas Deutschmann
2018-06-28 21:32 Pacho Ramos
2018-06-27 22:22 Sergei Trofimovich
2018-06-27 21:54 Sergei Trofimovich
2018-06-27 17:23 Tobias Klausmann
2018-06-27 6:25 Sergei Trofimovich
2018-06-17 21:53 Mart Raudsepp
2018-06-13 10:41 Michał Górny
2018-06-12 20:48 Sergei Trofimovich
2018-06-12 10:23 Sergei Trofimovich
2018-04-27 18:22 Michał Górny
2018-04-16 15:35 Michał Górny
2017-06-16 10:37 Alexis Ballier
2017-04-21 7:59 Lars Wendler
2016-11-20 7:28 Michael Palimaka
2016-10-24 9:34 Pacho Ramos
2016-08-11 13:28 Mike Frysinger
2016-07-08 12:02 Agostino Sarubbo
2016-07-08 10:02 Agostino Sarubbo
2016-07-08 7:53 Agostino Sarubbo
2016-05-20 15:27 Tobias Klausmann
2016-05-17 18:33 Markus Meier
2016-05-14 22:23 Agostino Sarubbo
2016-05-14 22:22 Agostino Sarubbo
2016-05-14 8:13 Jeroen Roovers
2016-05-13 13:52 Jeroen Roovers
2016-05-11 7:29 Lars Wendler
2016-04-05 17:28 Mike Frysinger
2016-04-02 4:11 Mike Frysinger
2016-03-19 11:35 Agostino Sarubbo
2016-03-15 16:39 Agostino Sarubbo
2016-02-03 20:50 Markus Meier
2016-01-30 16:55 Tobias Klausmann
2016-01-27 17:41 Jeroen Roovers
2016-01-26 16:42 Agostino Sarubbo
2016-01-26 7:52 Mike Frysinger
2015-08-14 6:36 Mike Frysinger
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=1446494840.9eb6138ec87df568c54f392db8f32bc7f9b8cdc1.vapier@gentoo \
--to=vapier@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