From: "Andreas Hüttel" <dilfridge@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/GD/
Date: Mon, 18 Jan 2016 23:00:19 +0000 (UTC) [thread overview]
Message-ID: <1453157556.51b5d40268c1ae3d08ab6d0c435ffe301d18dfa2.dilfridge@gentoo> (raw)
commit: 51b5d40268c1ae3d08ab6d0c435ffe301d18dfa2
Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 18 22:52:36 2016 +0000
Commit: Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Mon Jan 18 22:52:36 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51b5d402
dev-perl/GD: Remove old
Package-Manager: portage-2.2.26
dev-perl/GD/GD-2.500.0-r1.ebuild | 75 --------------------------------------
dev-perl/GD/GD-2.560.0.ebuild | 78 ----------------------------------------
dev-perl/GD/Manifest | 1 -
3 files changed, 154 deletions(-)
diff --git a/dev-perl/GD/GD-2.500.0-r1.ebuild b/dev-perl/GD/GD-2.500.0-r1.ebuild
deleted file mode 100644
index 72490cf..0000000
--- a/dev-perl/GD/GD-2.500.0-r1.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-MODULE_AUTHOR=LDS
-MODULE_VERSION=2.50
-inherit perl-module
-
-DESCRIPTION="interface to Thomas Boutell's gd library"
-
-LICENSE="|| ( Artistic-2 GPL-1 GPL-2 GPL-3 )" # Artistic-2 or GPL1+
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
-IUSE="animgif gif jpeg png truetype xpm"
-
-RDEPEND=">=media-libs/gd-2.0.33
- png? (
- media-libs/gd[png]
- media-libs/libpng
- sys-libs/zlib
- )
- jpeg? (
- media-libs/gd[jpeg]
- virtual/jpeg
- )
- truetype? (
- media-libs/gd[truetype]
- media-libs/freetype:2
- )
- xpm? (
- media-libs/gd[xpm]
- x11-libs/libXpm
- )
- gif? ( media-libs/giflib )"
-DEPEND="${RDEPEND}
- dev-perl/Module-Build
-"
-
-SRC_TEST=do
-
-src_prepare(){
- perl-module_src_prepare
- sed -i "s/use Getopt::Long;/use Getopt::Long qw(:config pass_through);/" \
- "${S}"/Makefile.PL || die
-}
-
-src_configure() {
- local myconf
- use gif && use animgif && myconf+=",ANIMGIF"
- use jpeg && myconf+=",JPEG"
- use truetype && myconf+=",FREETYPE"
- use png && myconf+=",PNG"
- use xpm && myconf+=",XPM"
- use gif && myconf+=",GIF"
- myconf="-options '${myconf:1}'"
- perl-module_src_configure
-}
-
-src_test() {
- if use png || use jpeg || use gif ; then
- if has_version ">=media-libs/jpeg-7" || \
- has_version "media-libs/libjpeg-turbo" ; then
- # https://rt.cpan.org/Public/Bug/Display.html?id=49053
- ewarn "Tests fail with >=media-libs/jpeg-7 or media-libs/libjpeg-turbo. Skipping tests..."
- return
- fi
- perl-module_src_test
- else
- ewarn "The test fails if neither of png, jpeg, gif is in USE!"
- ewarn "Skipping tests..."
- fi
-}
-mydoc="GD.html"
diff --git a/dev-perl/GD/GD-2.560.0.ebuild b/dev-perl/GD/GD-2.560.0.ebuild
deleted file mode 100644
index f412f88..0000000
--- a/dev-perl/GD/GD-2.560.0.ebuild
+++ /dev/null
@@ -1,78 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-DIST_AUTHOR=LDS
-DIST_VERSION=2.56
-inherit perl-module
-
-DESCRIPTION="Interface to Thomas Boutell's gd library"
-
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
-IUSE="animgif gif jpeg png truetype xpm"
-
-RDEPEND="
- virtual/perl-Math-Complex
- >=media-libs/gd-2.0.33
- png? (
- media-libs/gd[png]
- media-libs/libpng:0
- sys-libs/zlib
- )
- jpeg? (
- media-libs/gd[jpeg]
- virtual/jpeg:0
- )
- truetype? (
- media-libs/gd[truetype]
- media-libs/freetype:2
- )
- xpm? (
- media-libs/gd[xpm]
- x11-libs/libXpm
- )
- gif? ( media-libs/giflib )
-"
-DEPEND="${RDEPEND}
- virtual/perl-ExtUtils-CBuilder
- virtual/perl-ExtUtils-MakeMaker
-"
-
-PREFER_BUILDPL="no"
-
-src_prepare(){
- perl-module_src_prepare
- sed -i "s/use Getopt::Long;/use Getopt::Long qw(:config pass_through);/" \
- "${S}"/Makefile.PL || die
-}
-
-src_configure() {
- local myconf
- use gif && use animgif && myconf+=",ANIMGIF"
- use jpeg && myconf+=",JPEG"
- use truetype && myconf+=",FT"
- use png && myconf+=",PNG"
- use xpm && myconf+=",XPM"
- use gif && myconf+=",GIF"
- myconf="-options '${myconf:1}'"
- perl-module_src_configure
-}
-
-src_test() {
- if use png || use jpeg || use gif ; then
- if has_version ">=media-libs/jpeg-7" || \
- has_version "media-libs/libjpeg-turbo" ; then
- # https://rt.cpan.org/Public/Bug/Display.html?id=49053
- ewarn "Tests fail with >=media-libs/jpeg-7 or media-libs/libjpeg-turbo. Skipping tests..."
- return
- fi
- perl-module_src_test
- else
- ewarn "The test fails if neither of png, jpeg, gif is in USE!"
- ewarn "Skipping tests..."
- fi
-}
-mydoc="GD.html"
diff --git a/dev-perl/GD/Manifest b/dev-perl/GD/Manifest
index 66d23e7..9ca91ce 100644
--- a/dev-perl/GD/Manifest
+++ b/dev-perl/GD/Manifest
@@ -1,3 +1,2 @@
DIST GD-2.46.tar.gz 260989 SHA256 0de778c8ea63bb3eb0d99d0ef090464ef594107addfa71750fd3a88216081735 SHA512 804f7c7b7d6ba517a18be13d9d51d382e3770b965512a337281335a2f9985320e194e57dcd82b94b690f9438249a5cc9830bff4cdb0c2aad0c99153ad3d92e34 WHIRLPOOL 035d8b3486ea44b991912f42a6eb9228a76619fca2da6b15ea3221eead5aa30205ae5ca156aeff674a5564c5f9181b516499e2462771e5cd3953adc1d8e0ac70
-DIST GD-2.50.tar.gz 262887 SHA256 6d5392d067a48dd66d67e65b1bfab7a8e6e149490eabfa09f70b99223ea0a8e2 SHA512 d32074d6d988ab8b1dd0283bdec2baf3dfc61141d8c23f300592990fd3b42ce98b545dc3339f7df582750231023b02c98fe0271de37f05e5b64ad2d4da00b096 WHIRLPOOL 63d41e8df861967f13f42964eff6481a053630613a9bbe2d4365913b68f61eeefc220469556063e985fddb7d6c680af7321cef97717e15ab3ea55db87723e25d
DIST GD-2.56.tar.gz 273441 SHA256 1f103d1c98de8621504642ed7fb79f1b40f5f6a63c2abe9390a8ab78617248f9 SHA512 51c4b46b199625a12ae1ad1003cafe4e66913d1e0c0b51d9bccbc7c14a86dfe29144caefbeca2927a66a44d4ba8b134550ee4a63eb86aceaa13513c46a4e71f4 WHIRLPOOL 5c59b6361bdfbbe5294739bf49f398d9483994353422b3839c068b651bf91195027c8d44bf348fd135674479ad333c77949ec28526c985e3dab12efc554585f7
next reply other threads:[~2016-01-18 23:00 UTC|newest]
Thread overview: 47+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-01-18 23:00 Andreas Hüttel [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-02-28 12:26 [gentoo-commits] repo/gentoo:master commit in: dev-perl/GD/ Andreas K. Hüttel
2024-10-15 8:45 Sam James
2024-10-15 8:45 Sam James
2024-07-27 12:35 Sam James
2024-07-27 12:35 Sam James
2024-07-27 12:35 Sam James
2024-07-27 12:01 Sam James
2024-07-07 11:02 Sam James
2024-05-03 11:39 Sam James
2024-05-01 9:12 Sam James
2024-04-19 11:26 Sam James
2024-04-17 23:35 Sam James
2024-04-17 22:10 Sam James
2023-07-05 0:38 Sam James
2022-12-18 18:50 Arthur Zamarin
2022-10-31 16:38 Agostino Sarubbo
2022-05-25 9:10 WANG Xuerui
2021-09-28 20:26 James Le Cuirot
2021-09-06 0:15 Sam James
2021-08-15 17:01 Andreas K. Hüttel
2021-07-28 1:08 Sam James
2021-07-24 20:23 Matt Turner
2021-06-14 6:37 Sergei Trofimovich
2021-06-07 6:26 Sergei Trofimovich
2021-06-04 9:28 Andreas K. Hüttel
2021-06-03 19:14 Andreas K. Hüttel
2021-06-03 19:13 Andreas K. Hüttel
2021-06-01 7:55 Sergei Trofimovich
2021-05-25 10:47 Sam James
2021-05-25 10:47 Sam James
2021-05-25 0:54 Sam James
2021-05-23 22:23 Joshua Kinard
2021-05-23 12:13 Sergei Trofimovich
2021-05-22 14:40 Andreas K. Hüttel
2021-05-22 14:40 Andreas K. Hüttel
2019-05-22 4:03 Aaron Bauman
2018-04-18 7:01 Mart Raudsepp
2017-09-18 16:50 Kent Fredric
2017-05-28 0:19 Kent Fredric
2017-05-26 7:25 Kent Fredric
2016-12-26 21:00 Andreas Hüttel
2016-12-26 21:00 Andreas Hüttel
2016-11-10 5:28 Mike Frysinger
2016-01-18 22:50 Andreas Hüttel
2015-12-19 23:01 Andreas Hüttel
2015-12-19 23:01 Andreas Hüttel
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=1453157556.51b5d40268c1ae3d08ab6d0c435ffe301d18dfa2.dilfridge@gentoo \
--to=dilfridge@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