From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id D711D58974 for ; Mon, 18 Jan 2016 23:00:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 698F3E08AB; Mon, 18 Jan 2016 23:00:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id ED721E08AB for ; Mon, 18 Jan 2016 23:00:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id F064E3408A2 for ; Mon, 18 Jan 2016 23:00:21 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0A25BCB1 for ; Mon, 18 Jan 2016 23:00:19 +0000 (UTC) From: "Andreas Hüttel" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Hüttel" Message-ID: <1453157556.51b5d40268c1ae3d08ab6d0c435ffe301d18dfa2.dilfridge@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/GD/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-perl/GD/GD-2.500.0-r1.ebuild dev-perl/GD/GD-2.560.0.ebuild dev-perl/GD/Manifest X-VCS-Directories: dev-perl/GD/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas Hüttel X-VCS-Revision: 51b5d40268c1ae3d08ab6d0c435ffe301d18dfa2 X-VCS-Branch: master Date: Mon, 18 Jan 2016 23:00:19 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 9b640771-63dd-4a7f-bb15-2822e00b56ed X-Archives-Hash: 514c24430757e216c64694a61935a42b commit: 51b5d40268c1ae3d08ab6d0c435ffe301d18dfa2 Author: Andreas K. Hüttel gentoo org> AuthorDate: Mon Jan 18 22:52:36 2016 +0000 Commit: Andreas Hüttel gentoo 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