* [gentoo-commits] repo/gentoo:master commit in: dev-perl/GD/
@ 2015-12-19 23:01 Andreas Hüttel
0 siblings, 0 replies; 46+ messages in thread
From: Andreas Hüttel @ 2015-12-19 23:01 UTC (permalink / raw
To: gentoo-commits
commit: 768011f10c9f9d752e0d7c5a1d877720c1194d7b
Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 19 22:36:00 2015 +0000
Commit: Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Sat Dec 19 23:01:05 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=768011f1
dev-perl/GD: Add missing dependency on Module::Build
Package-Manager: portage-2.2.26
dev-perl/GD/GD-2.460.0-r1.ebuild | 4 +++-
dev-perl/GD/GD-2.500.0-r1.ebuild | 4 +++-
2 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/dev-perl/GD/GD-2.460.0-r1.ebuild b/dev-perl/GD/GD-2.460.0-r1.ebuild
index fb99532..b600f57 100644
--- a/dev-perl/GD/GD-2.460.0-r1.ebuild
+++ b/dev-perl/GD/GD-2.460.0-r1.ebuild
@@ -34,7 +34,9 @@ RDEPEND=">=media-libs/gd-2.0.33
x11-libs/libXpm
)
gif? ( media-libs/giflib )"
-DEPEND="${RDEPEND}"
+DEPEND="${RDEPEND}
+ dev-perl/Module-Build
+"
SRC_TEST=do
diff --git a/dev-perl/GD/GD-2.500.0-r1.ebuild b/dev-perl/GD/GD-2.500.0-r1.ebuild
index 060eba3..72490cf 100644
--- a/dev-perl/GD/GD-2.500.0-r1.ebuild
+++ b/dev-perl/GD/GD-2.500.0-r1.ebuild
@@ -34,7 +34,9 @@ RDEPEND=">=media-libs/gd-2.0.33
x11-libs/libXpm
)
gif? ( media-libs/giflib )"
-DEPEND="${RDEPEND}"
+DEPEND="${RDEPEND}
+ dev-perl/Module-Build
+"
SRC_TEST=do
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/GD/
@ 2015-12-19 23:01 Andreas Hüttel
0 siblings, 0 replies; 46+ messages in thread
From: Andreas Hüttel @ 2015-12-19 23:01 UTC (permalink / raw
To: gentoo-commits
commit: 8bc7ef903dae8fe13fc640a711aeeabad25f84a1
Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 19 22:46:00 2015 +0000
Commit: Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Sat Dec 19 23:01:05 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8bc7ef90
dev-perl/GD: Version bump
Package-Manager: portage-2.2.26
dev-perl/GD/GD-2.560.0.ebuild | 78 +++++++++++++++++++++++++++++++++++++++++++
dev-perl/GD/Manifest | 1 +
2 files changed, 79 insertions(+)
diff --git a/dev-perl/GD/GD-2.560.0.ebuild b/dev-perl/GD/GD-2.560.0.ebuild
new file mode 100644
index 0000000..f412f88
--- /dev/null
+++ b/dev-perl/GD/GD-2.560.0.ebuild
@@ -0,0 +1,78 @@
+# 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 2ca2581..66d23e7 100644
--- a/dev-perl/GD/Manifest
+++ b/dev-perl/GD/Manifest
@@ -1,2 +1,3 @@
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
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/GD/
@ 2016-01-18 22:50 Andreas Hüttel
0 siblings, 0 replies; 46+ messages in thread
From: Andreas Hüttel @ 2016-01-18 22:50 UTC (permalink / raw
To: gentoo-commits
commit: f2e30693a9587b0db81ce33388f1776ac05b1b96
Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 18 22:50:20 2016 +0000
Commit: Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Mon Jan 18 22:50:38 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2e30693
dev-perl/GD: Add a workaround for bug 572000; should build correctly now
Package-Manager: portage-2.2.26
dev-perl/GD/GD-2.560.0-r1.ebuild | 68 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 68 insertions(+)
diff --git a/dev-perl/GD/GD-2.560.0-r1.ebuild b/dev-perl/GD/GD-2.560.0-r1.ebuild
new file mode 100644
index 0000000..9366bb0
--- /dev/null
+++ b/dev-perl/GD/GD-2.560.0-r1.ebuild
@@ -0,0 +1,68 @@
+# 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
+
+ # bug 572000
+ ln -s "${S}"/lib/GD.xs "${S}"/GD.xs
+
+ 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
+}
+
+mydoc="GD.html"
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/GD/
@ 2016-01-18 23:00 Andreas Hüttel
0 siblings, 0 replies; 46+ messages in thread
From: Andreas Hüttel @ 2016-01-18 23:00 UTC (permalink / raw
To: gentoo-commits
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
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/GD/
@ 2016-11-10 5:28 Mike Frysinger
0 siblings, 0 replies; 46+ messages in thread
From: Mike Frysinger @ 2016-11-10 5:28 UTC (permalink / raw
To: gentoo-commits
commit: 8e7c9a33edc81b7f2b66bdf3c7ee81511ff17865
Author: Mike Frysinger <vapier <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 10 05:27:53 2016 +0000
Commit: Mike Frysinger <vapier <AT> gentoo <DOT> org>
CommitDate: Thu Nov 10 05:27:53 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e7c9a33
dev-perl/GD: stabilize 2.560.0-r1 for all #597888
dev-perl/GD/GD-2.560.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-perl/GD/GD-2.560.0-r1.ebuild b/dev-perl/GD/GD-2.560.0-r1.ebuild
index d419bf4..96f4a3b 100644
--- a/dev-perl/GD/GD-2.560.0-r1.ebuild
+++ b/dev-perl/GD/GD-2.560.0-r1.ebuild
@@ -11,7 +11,7 @@ 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"
+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"
PATCHES=(
"${FILESDIR}/${P}-rt106594.patch"
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/GD/
@ 2016-12-26 21:00 Andreas Hüttel
0 siblings, 0 replies; 46+ messages in thread
From: Andreas Hüttel @ 2016-12-26 21:00 UTC (permalink / raw
To: gentoo-commits
commit: 1fcc2d02bbe6aa423770f89989cb9fb9ecc99b60
Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 26 20:57:38 2016 +0000
Commit: Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Mon Dec 26 20:58:46 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1fcc2d02
dev-perl/GD: Remove old
Package-Manager: portage-2.3.3
dev-perl/GD/GD-2.460.0-r1.ebuild | 75 ----------------------------------------
dev-perl/GD/Manifest | 1 -
2 files changed, 76 deletions(-)
diff --git a/dev-perl/GD/GD-2.460.0-r1.ebuild b/dev-perl/GD/GD-2.460.0-r1.ebuild
deleted file mode 100644
index b600f57..00000000
--- a/dev-perl/GD/GD-2.460.0-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=5
-
-MODULE_AUTHOR=LDS
-MODULE_VERSION=2.46
-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 ~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/Manifest b/dev-perl/GD/Manifest
index 9ca91ce..58c5a66 100644
--- a/dev-perl/GD/Manifest
+++ b/dev-perl/GD/Manifest
@@ -1,2 +1 @@
-DIST GD-2.46.tar.gz 260989 SHA256 0de778c8ea63bb3eb0d99d0ef090464ef594107addfa71750fd3a88216081735 SHA512 804f7c7b7d6ba517a18be13d9d51d382e3770b965512a337281335a2f9985320e194e57dcd82b94b690f9438249a5cc9830bff4cdb0c2aad0c99153ad3d92e34 WHIRLPOOL 035d8b3486ea44b991912f42a6eb9228a76619fca2da6b15ea3221eead5aa30205ae5ca156aeff674a5564c5f9181b516499e2462771e5cd3953adc1d8e0ac70
DIST GD-2.56.tar.gz 273441 SHA256 1f103d1c98de8621504642ed7fb79f1b40f5f6a63c2abe9390a8ab78617248f9 SHA512 51c4b46b199625a12ae1ad1003cafe4e66913d1e0c0b51d9bccbc7c14a86dfe29144caefbeca2927a66a44d4ba8b134550ee4a63eb86aceaa13513c46a4e71f4 WHIRLPOOL 5c59b6361bdfbbe5294739bf49f398d9483994353422b3839c068b651bf91195027c8d44bf348fd135674479ad333c77949ec28526c985e3dab12efc554585f7
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/GD/
@ 2016-12-26 21:00 Andreas Hüttel
0 siblings, 0 replies; 46+ messages in thread
From: Andreas Hüttel @ 2016-12-26 21:00 UTC (permalink / raw
To: gentoo-commits
commit: 437aa9460a636f7f700873fe19ffe2491e0be9aa
Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 26 20:57:02 2016 +0000
Commit: Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Mon Dec 26 20:58:43 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=437aa946
dev-perl/GD: Revision bump to add missing GD features, bug 502546 - thanks to Jorge Nerin
Package-Manager: portage-2.3.3
dev-perl/GD/GD-2.560.0-r2.ebuild | 71 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 71 insertions(+)
diff --git a/dev-perl/GD/GD-2.560.0-r2.ebuild b/dev-perl/GD/GD-2.560.0-r2.ebuild
new file mode 100644
index 00000000..4c52efb
--- /dev/null
+++ b/dev-perl/GD/GD-2.560.0-r2.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2016 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"
+PATCHES=(
+ "${FILESDIR}/${P}-rt106594.patch"
+)
+RDEPEND="
+ virtual/perl-Math-Complex
+ >=media-libs/gd-2.2.3
+ 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
+
+ # bug 572000
+ ln -s "${S}"/lib/GD.xs "${S}"/GD.xs
+
+ sed -i "s/use Getopt::Long;/use Getopt::Long qw(:config pass_through);/" \
+ "${S}"/Makefile.PL || die
+}
+
+src_configure() {
+ local myconf
+ myconf="VERSION_33,GD_UNCLOSEDPOLY,GD_FTCIRCLE" # Per line 284 of Makefile.PL
+ 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}'"
+ perl-module_src_configure
+}
+
+mydoc="GD.html"
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/GD/
@ 2017-05-26 7:25 Kent Fredric
0 siblings, 0 replies; 46+ messages in thread
From: Kent Fredric @ 2017-05-26 7:25 UTC (permalink / raw
To: gentoo-commits
commit: 617b453523c2e11576705744ab9b44b4aba08102
Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Fri May 26 07:22:29 2017 +0000
Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Fri May 26 07:23:29 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=617b4535
dev-perl/GD: Bump to version 2.660.0
- Add USE="examples"
- Add USE="fcgi"
- Cleanup tests
Package-Manager: Portage-2.3.5, Repoman-2.3.2
dev-perl/GD/GD-2.660.0.ebuild | 69 +++++++++++++++++++++++++++++++++++++++++++
dev-perl/GD/Manifest | 1 +
dev-perl/GD/metadata.xml | 3 +-
3 files changed, 72 insertions(+), 1 deletion(-)
diff --git a/dev-perl/GD/GD-2.660.0.ebuild b/dev-perl/GD/GD-2.660.0.ebuild
new file mode 100644
index 00000000000..7d4ed1b9bc0
--- /dev/null
+++ b/dev-perl/GD/GD-2.660.0.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DIST_AUTHOR=RURBAN
+DIST_VERSION=2.66
+DIST_EXAMPLES=("demos/*")
+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 fcgi gif jpeg png truetype xpm"
+
+RDEPEND="
+ >=media-libs/gd-2.2.3
+ 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
+ )
+ fcgi? (
+ dev-libs/fcgi
+ )
+ gif? ( media-libs/giflib )
+"
+DEPEND="${RDEPEND}
+ >=virtual/perl-ExtUtils-Constant-0.230.0
+ virtual/perl-ExtUtils-MakeMaker
+"
+
+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
+ myconf="VERSION_33,GD_UNCLOSEDPOLY,GD_FTCIRCLE" # Per line 284 of Makefile.PL
+ 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}'"
+ use fcgi && myconf+=" --fcgi"
+ perl-module_src_configure
+}
+
+src_test() {
+ perl_rm_files t/z_*.t
+ perl-module_src_test
+}
diff --git a/dev-perl/GD/Manifest b/dev-perl/GD/Manifest
index 58c5a6623bc..cd1801f644b 100644
--- a/dev-perl/GD/Manifest
+++ b/dev-perl/GD/Manifest
@@ -1 +1,2 @@
DIST GD-2.56.tar.gz 273441 SHA256 1f103d1c98de8621504642ed7fb79f1b40f5f6a63c2abe9390a8ab78617248f9 SHA512 51c4b46b199625a12ae1ad1003cafe4e66913d1e0c0b51d9bccbc7c14a86dfe29144caefbeca2927a66a44d4ba8b134550ee4a63eb86aceaa13513c46a4e71f4 WHIRLPOOL 5c59b6361bdfbbe5294739bf49f398d9483994353422b3839c068b651bf91195027c8d44bf348fd135674479ad333c77949ec28526c985e3dab12efc554585f7
+DIST GD-2.66.tar.gz 253000 SHA256 ea28343301b82ea862bc58c0c2d1953a074e23cf8d1d09df94c05c52f1c98281 SHA512 37d3da70f4e0b89b0166488a1f8a48c508ff5e515653fe1b10602cb708ae0ce713c617dcae21c48ec795799fb0e061762696e6a65bb8ba359859223d15677c61 WHIRLPOOL 01ed0c0aa9572a1d61ec4c360e1384f089e0417e6c64faa290faa4e2216a256c51721caaaab1adbbc1af798dabb372b0e7af36f1302c6dfc6425c564b2d005f8
diff --git a/dev-perl/GD/metadata.xml b/dev-perl/GD/metadata.xml
index a38a82b0976..6e11ab60848 100644
--- a/dev-perl/GD/metadata.xml
+++ b/dev-perl/GD/metadata.xml
@@ -6,7 +6,8 @@
<name>Gentoo Perl Project</name>
</maintainer>
<use>
- <flag name="animgif">Enable animated gif support</flag>
+ <flag name="animgif">Enable animated gif support</flag>
+ <flag name="fcgi">Build for FastCGI compatibility via <pkg>dev-libs/fcgi</pkg> instead of using PerlIO</flag>
</use>
<upstream>
<remote-id type="cpan">GD</remote-id>
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/GD/
@ 2017-05-28 0:19 Kent Fredric
0 siblings, 0 replies; 46+ messages in thread
From: Kent Fredric @ 2017-05-28 0:19 UTC (permalink / raw
To: gentoo-commits
commit: b4aff5397176b546e319113a18c240318eabde39
Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Sat May 27 14:04:30 2017 +0000
Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Sun May 28 00:19:31 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4aff539
dev-perl/GD: Fix missing build dep on ExtUtils-PkgConfig
Package-Manager: Portage-2.3.5, Repoman-2.3.2
dev-perl/GD/GD-2.660.0.ebuild | 1 +
1 file changed, 1 insertion(+)
diff --git a/dev-perl/GD/GD-2.660.0.ebuild b/dev-perl/GD/GD-2.660.0.ebuild
index 7d4ed1b9bc0..58cae819500 100644
--- a/dev-perl/GD/GD-2.660.0.ebuild
+++ b/dev-perl/GD/GD-2.660.0.ebuild
@@ -40,6 +40,7 @@ RDEPEND="
"
DEPEND="${RDEPEND}
>=virtual/perl-ExtUtils-Constant-0.230.0
+ dev-perl/ExtUtils-PkgConfig
virtual/perl-ExtUtils-MakeMaker
"
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/GD/
@ 2017-09-18 16:50 Kent Fredric
0 siblings, 0 replies; 46+ messages in thread
From: Kent Fredric @ 2017-09-18 16:50 UTC (permalink / raw
To: gentoo-commits
commit: 1932804e8e2f29e0960704f25840aa13e6e61169
Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 18 16:30:01 2017 +0000
Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Mon Sep 18 16:49:44 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1932804e
dev-perl/GD: fix mixed metadata.xml indentation
Package-Manager: Portage-2.3.8, Repoman-2.3.3
dev-perl/GD/metadata.xml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-perl/GD/metadata.xml b/dev-perl/GD/metadata.xml
index 6e11ab60848..2199b65b0d2 100644
--- a/dev-perl/GD/metadata.xml
+++ b/dev-perl/GD/metadata.xml
@@ -6,8 +6,8 @@
<name>Gentoo Perl Project</name>
</maintainer>
<use>
- <flag name="animgif">Enable animated gif support</flag>
- <flag name="fcgi">Build for FastCGI compatibility via <pkg>dev-libs/fcgi</pkg> instead of using PerlIO</flag>
+ <flag name="animgif">Enable animated gif support</flag>
+ <flag name="fcgi">Build for FastCGI compatibility via <pkg>dev-libs/fcgi</pkg> instead of using PerlIO</flag>
</use>
<upstream>
<remote-id type="cpan">GD</remote-id>
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/GD/
@ 2018-04-18 7:01 Mart Raudsepp
0 siblings, 0 replies; 46+ messages in thread
From: Mart Raudsepp @ 2018-04-18 7:01 UTC (permalink / raw
To: gentoo-commits
commit: 08fa2a10105bc2d1b33e907fdeeda1043f296e48
Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 18 07:00:15 2018 +0000
Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
CommitDate: Wed Apr 18 07:00:55 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08fa2a10
dev-perl/GD: drop to ~arm64 due to unstable media-libs/gd
Bug: https://bugs.gentoo.org/646904
Package-Manager: Portage-2.3.28, Repoman-2.3.9
dev-perl/GD/GD-2.560.0-r1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-perl/GD/GD-2.560.0-r1.ebuild b/dev-perl/GD/GD-2.560.0-r1.ebuild
index 0bfa3ba2df6..c4df93414b3 100644
--- a/dev-perl/GD/GD-2.560.0-r1.ebuild
+++ b/dev-perl/GD/GD-2.560.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -10,7 +10,7 @@ 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"
+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"
PATCHES=(
"${FILESDIR}/${P}-rt106594.patch"
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/GD/
@ 2019-05-22 4:03 Aaron Bauman
0 siblings, 0 replies; 46+ messages in thread
From: Aaron Bauman @ 2019-05-22 4:03 UTC (permalink / raw
To: gentoo-commits
commit: 1c2ce50b008e3d997d34254ce1917e79ff2927e5
Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Wed May 22 03:57:48 2019 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Wed May 22 04:03:05 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c2ce50b
dev-perl/GD: arm64 stable
Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.12
RepoMan-Options: --include-arches="arm64"
dev-perl/GD/GD-2.560.0-r1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-perl/GD/GD-2.560.0-r1.ebuild b/dev-perl/GD/GD-2.560.0-r1.ebuild
index c4df93414b3..7541e8f8041 100644
--- a/dev-perl/GD/GD-2.560.0-r1.ebuild
+++ b/dev-perl/GD/GD-2.560.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -10,7 +10,7 @@ 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"
+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"
PATCHES=(
"${FILESDIR}/${P}-rt106594.patch"
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/GD/
@ 2021-05-22 14:40 Andreas K. Hüttel
0 siblings, 0 replies; 46+ messages in thread
From: Andreas K. Hüttel @ 2021-05-22 14:40 UTC (permalink / raw
To: gentoo-commits
commit: f2fedd55795994a61abb722f915abd515e592355
Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Sat May 22 14:39:59 2021 +0000
Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Sat May 22 14:40:23 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2fedd55
dev-perl/GD: Remove old
Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
dev-perl/GD/GD-2.560.0-r1.ebuild | 69 ---------------------------------------
dev-perl/GD/GD-2.560.0-r2.ebuild | 70 ----------------------------------------
dev-perl/GD/Manifest | 1 -
3 files changed, 140 deletions(-)
diff --git a/dev-perl/GD/GD-2.560.0-r1.ebuild b/dev-perl/GD/GD-2.560.0-r1.ebuild
deleted file mode 100644
index 85c7b61f896..00000000000
--- a/dev-perl/GD/GD-2.560.0-r1.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-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 ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
-IUSE="animgif gif jpeg png truetype xpm"
-PATCHES=(
- "${FILESDIR}/${P}-rt106594.patch"
-)
-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
-
- # bug 572000
- ln -s "${S}"/lib/GD.xs "${S}"/GD.xs
-
- 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
-}
-
-mydoc="GD.html"
diff --git a/dev-perl/GD/GD-2.560.0-r2.ebuild b/dev-perl/GD/GD-2.560.0-r2.ebuild
deleted file mode 100644
index f8fac1a9a8b..00000000000
--- a/dev-perl/GD/GD-2.560.0-r2.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-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 ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
-IUSE="animgif gif jpeg png truetype xpm"
-PATCHES=(
- "${FILESDIR}/${P}-rt106594.patch"
-)
-RDEPEND="
- virtual/perl-Math-Complex
- >=media-libs/gd-2.2.3
- 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
-
- # bug 572000
- ln -s "${S}"/lib/GD.xs "${S}"/GD.xs
-
- sed -i "s/use Getopt::Long;/use Getopt::Long qw(:config pass_through);/" \
- "${S}"/Makefile.PL || die
-}
-
-src_configure() {
- local myconf
- myconf="VERSION_33,GD_UNCLOSEDPOLY,GD_FTCIRCLE" # Per line 284 of Makefile.PL
- 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}'"
- perl-module_src_configure
-}
-
-mydoc="GD.html"
diff --git a/dev-perl/GD/Manifest b/dev-perl/GD/Manifest
index ade60085306..fd659bc3506 100644
--- a/dev-perl/GD/Manifest
+++ b/dev-perl/GD/Manifest
@@ -1,3 +1,2 @@
-DIST GD-2.56.tar.gz 273441 BLAKE2B eb8d27a1a18f3ee8474138c82d1305b6bc8248e6b4ba4ab0bc4470d070eae0207a837e54e8f02c8f6c06e813663396561c0ac2d191e9884ea1f0ff65d23bc166 SHA512 51c4b46b199625a12ae1ad1003cafe4e66913d1e0c0b51d9bccbc7c14a86dfe29144caefbeca2927a66a44d4ba8b134550ee4a63eb86aceaa13513c46a4e71f4
DIST GD-2.66.tar.gz 253000 BLAKE2B 1a1d5374c06fcb07849e504c8c5c6f00443890cfb728fd02b4c94838d754c2f04bbda80cfa8e2a7b08a3c07cbed32aa6a499468dfb044865f833b3486965d2b8 SHA512 37d3da70f4e0b89b0166488a1f8a48c508ff5e515653fe1b10602cb708ae0ce713c617dcae21c48ec795799fb0e061762696e6a65bb8ba359859223d15677c61
DIST GD-2.73.tar.gz 261203 BLAKE2B 088cb4d3c846d61e89631c7fef6b0273489297f0613e1ebb98c33b404a613431c79a5e72c2b757450496ef8d86aabe387b102a4c8d22d69532b8d8e989bac9bf SHA512 0c360c86307c8a2484bd8e1fb4cf24e27f7976bcfd830d9070fdc3775d233845734c59796082d498276aa715f30c9452c492b0d5bd75e488c1e9c5fa76490709
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/GD/
@ 2021-05-22 14:40 Andreas K. Hüttel
0 siblings, 0 replies; 46+ messages in thread
From: Andreas K. Hüttel @ 2021-05-22 14:40 UTC (permalink / raw
To: gentoo-commits
commit: 50294b30a5e7ecf0f27029693ad3bf472b36b280
Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Sat May 22 14:39:32 2021 +0000
Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Sat May 22 14:40:19 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50294b30
dev-perl/GD: Version bump 2.73
Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
dev-perl/GD/GD-2.730.0.ebuild | 78 +++++++++++++++++++++++++++++++++++++++++++
dev-perl/GD/Manifest | 1 +
2 files changed, 79 insertions(+)
diff --git a/dev-perl/GD/GD-2.730.0.ebuild b/dev-perl/GD/GD-2.730.0.ebuild
new file mode 100644
index 00000000000..749f49181b4
--- /dev/null
+++ b/dev-perl/GD/GD-2.730.0.ebuild
@@ -0,0 +1,78 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DIST_AUTHOR=RURBAN
+DIST_VERSION=2.73
+DIST_EXAMPLES=("demos/*")
+inherit perl-module
+
+DESCRIPTION="Interface to Thomas Boutell's gd library"
+
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="animgif fcgi gif jpeg png test truetype xpm"
+
+RDEPEND="
+ >=media-libs/gd-2.2.3
+ 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
+ )
+ fcgi? (
+ dev-libs/fcgi
+ )
+ gif? ( media-libs/giflib )
+"
+DEPEND="${RDEPEND}
+"
+BDEPEND="${RDEPEND}
+ >=virtual/perl-ExtUtils-Constant-0.230.0
+ dev-perl/ExtUtils-PkgConfig
+ virtual/perl-ExtUtils-MakeMaker
+ test? (
+ >=dev-perl/Test-Fork-0.20.0
+ >=virtual/perl-Test-Simple-0.880.0
+ )
+"
+
+RESTRICT="!test? ( test )"
+
+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
+ myconf="VERSION_33,GD_UNCLOSEDPOLY,GD_FTCIRCLE" # Per line 284 of Makefile.PL
+ 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}'"
+ use fcgi && myconf+=" --fcgi"
+ perl-module_src_configure
+}
+
+src_test() {
+ perl_rm_files t/z_*.t
+ perl-module_src_test
+}
diff --git a/dev-perl/GD/Manifest b/dev-perl/GD/Manifest
index 88e056a6397..ade60085306 100644
--- a/dev-perl/GD/Manifest
+++ b/dev-perl/GD/Manifest
@@ -1,2 +1,3 @@
DIST GD-2.56.tar.gz 273441 BLAKE2B eb8d27a1a18f3ee8474138c82d1305b6bc8248e6b4ba4ab0bc4470d070eae0207a837e54e8f02c8f6c06e813663396561c0ac2d191e9884ea1f0ff65d23bc166 SHA512 51c4b46b199625a12ae1ad1003cafe4e66913d1e0c0b51d9bccbc7c14a86dfe29144caefbeca2927a66a44d4ba8b134550ee4a63eb86aceaa13513c46a4e71f4
DIST GD-2.66.tar.gz 253000 BLAKE2B 1a1d5374c06fcb07849e504c8c5c6f00443890cfb728fd02b4c94838d754c2f04bbda80cfa8e2a7b08a3c07cbed32aa6a499468dfb044865f833b3486965d2b8 SHA512 37d3da70f4e0b89b0166488a1f8a48c508ff5e515653fe1b10602cb708ae0ce713c617dcae21c48ec795799fb0e061762696e6a65bb8ba359859223d15677c61
+DIST GD-2.73.tar.gz 261203 BLAKE2B 088cb4d3c846d61e89631c7fef6b0273489297f0613e1ebb98c33b404a613431c79a5e72c2b757450496ef8d86aabe387b102a4c8d22d69532b8d8e989bac9bf SHA512 0c360c86307c8a2484bd8e1fb4cf24e27f7976bcfd830d9070fdc3775d233845734c59796082d498276aa715f30c9452c492b0d5bd75e488c1e9c5fa76490709
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/GD/
@ 2021-05-23 12:13 Sergei Trofimovich
0 siblings, 0 replies; 46+ messages in thread
From: Sergei Trofimovich @ 2021-05-23 12:13 UTC (permalink / raw
To: gentoo-commits
commit: d36702402c2a55d196e53b61209b4c765ffc1945
Author: Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Sun May 23 11:30:47 2021 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sun May 23 12:13:02 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3670240
dev-perl/GD: keyworded 2.730.0 for hppa, bug #791481
Package-Manager: Portage-3.0.18, Repoman-3.0.2
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer <eike <AT> sf-mail.de>
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
dev-perl/GD/GD-2.730.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-perl/GD/GD-2.730.0.ebuild b/dev-perl/GD/GD-2.730.0.ebuild
index 749f49181b4..18b085591aa 100644
--- a/dev-perl/GD/GD-2.730.0.ebuild
+++ b/dev-perl/GD/GD-2.730.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
DESCRIPTION="Interface to Thomas Boutell's gd library"
SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~hppa"
IUSE="animgif fcgi gif jpeg png test truetype xpm"
RDEPEND="
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/GD/
@ 2021-05-23 22:23 Joshua Kinard
0 siblings, 0 replies; 46+ messages in thread
From: Joshua Kinard @ 2021-05-23 22:23 UTC (permalink / raw
To: gentoo-commits
commit: 3d92767cf59d7f0b612413802a8dafc8564dbb5b
Author: Joshua Kinard <kumba <AT> gentoo <DOT> org>
AuthorDate: Sun May 23 19:04:40 2021 +0000
Commit: Joshua Kinard <kumba <AT> gentoo <DOT> org>
CommitDate: Sun May 23 22:23:31 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d92767c
dev-perl/GD: Added ~mips to KEYWORDS
Bug: https://bugs.gentoo.org/791481
Signed-off-by: Joshua Kinard <kumba <AT> gentoo.org>
Package-Manager: Portage-3.0.18, Repoman-3.0.3
dev-perl/GD/GD-2.730.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-perl/GD/GD-2.730.0.ebuild b/dev-perl/GD/GD-2.730.0.ebuild
index 18b085591aa..74acd3d4ef5 100644
--- a/dev-perl/GD/GD-2.730.0.ebuild
+++ b/dev-perl/GD/GD-2.730.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
DESCRIPTION="Interface to Thomas Boutell's gd library"
SLOT="0"
-KEYWORDS="~amd64 ~hppa"
+KEYWORDS="~amd64 ~hppa ~mips"
IUSE="animgif fcgi gif jpeg png test truetype xpm"
RDEPEND="
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/GD/
@ 2021-05-25 0:54 Sam James
0 siblings, 0 replies; 46+ messages in thread
From: Sam James @ 2021-05-25 0:54 UTC (permalink / raw
To: gentoo-commits
commit: f1b20b8bed7fc14248e7d8f85efccf009e2fe479
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue May 25 00:52:48 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue May 25 00:53:06 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1b20b8b
dev-perl/GD: Keyword 2.730.0 sparc, #791481
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-perl/GD/GD-2.730.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-perl/GD/GD-2.730.0.ebuild b/dev-perl/GD/GD-2.730.0.ebuild
index 74acd3d4ef5..19f7d182c3b 100644
--- a/dev-perl/GD/GD-2.730.0.ebuild
+++ b/dev-perl/GD/GD-2.730.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
DESCRIPTION="Interface to Thomas Boutell's gd library"
SLOT="0"
-KEYWORDS="~amd64 ~hppa ~mips"
+KEYWORDS="~amd64 ~hppa ~mips ~sparc"
IUSE="animgif fcgi gif jpeg png test truetype xpm"
RDEPEND="
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/GD/
@ 2021-05-25 10:47 Sam James
0 siblings, 0 replies; 46+ messages in thread
From: Sam James @ 2021-05-25 10:47 UTC (permalink / raw
To: gentoo-commits
commit: 0a2cd1cba1265a3ab261392fab29426d8983f74c
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue May 25 10:46:02 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue May 25 10:47:11 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a2cd1cb
dev-perl/GD: Keyword 2.730.0 arm, #791481
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-perl/GD/GD-2.730.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-perl/GD/GD-2.730.0.ebuild b/dev-perl/GD/GD-2.730.0.ebuild
index 19f7d182c3b..ee0ff0cfeae 100644
--- a/dev-perl/GD/GD-2.730.0.ebuild
+++ b/dev-perl/GD/GD-2.730.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
DESCRIPTION="Interface to Thomas Boutell's gd library"
SLOT="0"
-KEYWORDS="~amd64 ~hppa ~mips ~sparc"
+KEYWORDS="~amd64 ~arm ~hppa ~mips ~sparc"
IUSE="animgif fcgi gif jpeg png test truetype xpm"
RDEPEND="
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/GD/
@ 2021-05-25 10:47 Sam James
0 siblings, 0 replies; 46+ messages in thread
From: Sam James @ 2021-05-25 10:47 UTC (permalink / raw
To: gentoo-commits
commit: c87e898f1eaebb0b5c9c40b087f43ba3355631f1
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue May 25 10:46:39 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue May 25 10:47:14 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c87e898f
dev-perl/GD: Keyword 2.730.0 arm64, #791481
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-perl/GD/GD-2.730.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-perl/GD/GD-2.730.0.ebuild b/dev-perl/GD/GD-2.730.0.ebuild
index ee0ff0cfeae..d6d5874dcee 100644
--- a/dev-perl/GD/GD-2.730.0.ebuild
+++ b/dev-perl/GD/GD-2.730.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
DESCRIPTION="Interface to Thomas Boutell's gd library"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~mips ~sparc"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~mips ~sparc"
IUSE="animgif fcgi gif jpeg png test truetype xpm"
RDEPEND="
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/GD/
@ 2021-06-01 7:55 Sergei Trofimovich
0 siblings, 0 replies; 46+ messages in thread
From: Sergei Trofimovich @ 2021-06-01 7:55 UTC (permalink / raw
To: gentoo-commits
commit: 974e94c5ae8865c95154cf0b858755e7e7eb7798
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 1 07:55:43 2021 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Tue Jun 1 07:55:51 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=974e94c5
dev-perl/GD: keyworded 2.730.0 for ia64
keyworded wrt bug #791481
Package-Manager: Portage-3.0.19, Repoman-3.0.3
RepoMan-Options: --include-arches="ia64"
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
dev-perl/GD/GD-2.730.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-perl/GD/GD-2.730.0.ebuild b/dev-perl/GD/GD-2.730.0.ebuild
index d6d5874dcee..7c2acda1ecf 100644
--- a/dev-perl/GD/GD-2.730.0.ebuild
+++ b/dev-perl/GD/GD-2.730.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
DESCRIPTION="Interface to Thomas Boutell's gd library"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~mips ~sparc"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~sparc"
IUSE="animgif fcgi gif jpeg png test truetype xpm"
RDEPEND="
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/GD/
@ 2021-06-03 19:13 Andreas K. Hüttel
0 siblings, 0 replies; 46+ messages in thread
From: Andreas K. Hüttel @ 2021-06-03 19:13 UTC (permalink / raw
To: gentoo-commits
commit: d64978d1cee9c2d894b12e03e602d00772508dce
Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 3 19:12:18 2021 +0000
Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Thu Jun 3 19:13:06 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d64978d1
dev-perl/GD: Force-enable gif,jpeg,png
Closes: https://bugs.gentoo.org/623542
Closes: https://bugs.gentoo.org/635830
Closes: https://bugs.gentoo.org/661634
Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
dev-perl/GD/GD-2.730.0-r1.ebuild | 75 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 75 insertions(+)
diff --git a/dev-perl/GD/GD-2.730.0-r1.ebuild b/dev-perl/GD/GD-2.730.0-r1.ebuild
new file mode 100644
index 00000000000..6d099c37daa
--- /dev/null
+++ b/dev-perl/GD/GD-2.730.0-r1.ebuild
@@ -0,0 +1,75 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DIST_AUTHOR=RURBAN
+DIST_VERSION=2.73
+DIST_EXAMPLES=("demos/*")
+inherit perl-module
+
+DESCRIPTION="Interface to Thomas Boutell's gd library"
+
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~sparc"
+IUSE="animgif fcgi test truetype xpm"
+
+RDEPEND="
+ >=media-libs/gd-2.2.3[png,jpeg]
+ media-libs/giflib
+ media-libs/libpng:0
+ sys-libs/zlib
+ virtual/jpeg:0
+ truetype? (
+ media-libs/gd[truetype]
+ media-libs/freetype:2
+ )
+ xpm? (
+ media-libs/gd[xpm]
+ x11-libs/libXpm
+ )
+ fcgi? (
+ dev-libs/fcgi
+ )
+"
+DEPEND="${RDEPEND}
+"
+BDEPEND="${RDEPEND}
+ >=virtual/perl-ExtUtils-Constant-0.230.0
+ dev-perl/ExtUtils-PkgConfig
+ virtual/perl-ExtUtils-MakeMaker
+ test? (
+ >=dev-perl/Test-Fork-0.20.0
+ >=virtual/perl-Test-Simple-0.880.0
+ )
+"
+
+RESTRICT="!test? ( test )"
+
+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
+ myconf="VERSION_33,GD_UNCLOSEDPOLY,GD_FTCIRCLE" # Per line 284 of Makefile.PL
+
+ # The following flags do not work properly. This is why we force-enable
+ # at least some of them. See bug 787404 as tracker.
+ use gif && use animgif && myconf+=",ANIMGIF"
+ myconf+=",JPEG"
+ use truetype && myconf+=",FT"
+ myconf+=",PNG"
+ use xpm && myconf+=",XPM"
+ myconf+=",GIF"
+ myconf="-options '${myconf}'"
+ use fcgi && myconf+=" --fcgi"
+ perl-module_src_configure
+}
+
+src_test() {
+ perl_rm_files t/z_*.t
+ perl-module_src_test
+}
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/GD/
@ 2021-06-03 19:14 Andreas K. Hüttel
0 siblings, 0 replies; 46+ messages in thread
From: Andreas K. Hüttel @ 2021-06-03 19:14 UTC (permalink / raw
To: gentoo-commits
commit: 94cb04af75849dc5edabc45015f15dd6f315ad95
Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 3 19:14:08 2021 +0000
Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Thu Jun 3 19:14:08 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94cb04af
dev-perl/GD: Remove old
Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
dev-perl/GD/GD-2.730.0.ebuild | 78 -------------------------------------------
1 file changed, 78 deletions(-)
diff --git a/dev-perl/GD/GD-2.730.0.ebuild b/dev-perl/GD/GD-2.730.0.ebuild
deleted file mode 100644
index 7c2acda1ecf..00000000000
--- a/dev-perl/GD/GD-2.730.0.ebuild
+++ /dev/null
@@ -1,78 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DIST_AUTHOR=RURBAN
-DIST_VERSION=2.73
-DIST_EXAMPLES=("demos/*")
-inherit perl-module
-
-DESCRIPTION="Interface to Thomas Boutell's gd library"
-
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~sparc"
-IUSE="animgif fcgi gif jpeg png test truetype xpm"
-
-RDEPEND="
- >=media-libs/gd-2.2.3
- 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
- )
- fcgi? (
- dev-libs/fcgi
- )
- gif? ( media-libs/giflib )
-"
-DEPEND="${RDEPEND}
-"
-BDEPEND="${RDEPEND}
- >=virtual/perl-ExtUtils-Constant-0.230.0
- dev-perl/ExtUtils-PkgConfig
- virtual/perl-ExtUtils-MakeMaker
- test? (
- >=dev-perl/Test-Fork-0.20.0
- >=virtual/perl-Test-Simple-0.880.0
- )
-"
-
-RESTRICT="!test? ( test )"
-
-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
- myconf="VERSION_33,GD_UNCLOSEDPOLY,GD_FTCIRCLE" # Per line 284 of Makefile.PL
- 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}'"
- use fcgi && myconf+=" --fcgi"
- perl-module_src_configure
-}
-
-src_test() {
- perl_rm_files t/z_*.t
- perl-module_src_test
-}
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/GD/
@ 2021-06-04 9:28 Andreas K. Hüttel
0 siblings, 0 replies; 46+ messages in thread
From: Andreas K. Hüttel @ 2021-06-04 9:28 UTC (permalink / raw
To: gentoo-commits
commit: c32ac22175bee88aebdd81aae81ffb8b7553ba92
Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 4 09:27:47 2021 +0000
Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Fri Jun 4 09:28:04 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c32ac221
dev-perl/GD: Fix "USE flag not in IUSE"
Closes: https://bugs.gentoo.org/794121
Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
dev-perl/GD/GD-2.730.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-perl/GD/GD-2.730.0-r1.ebuild b/dev-perl/GD/GD-2.730.0-r1.ebuild
index 6d099c37daa..747eb63a214 100644
--- a/dev-perl/GD/GD-2.730.0-r1.ebuild
+++ b/dev-perl/GD/GD-2.730.0-r1.ebuild
@@ -58,7 +58,7 @@ src_configure() {
# The following flags do not work properly. This is why we force-enable
# at least some of them. See bug 787404 as tracker.
- use gif && use animgif && myconf+=",ANIMGIF"
+ use animgif && myconf+=",ANIMGIF"
myconf+=",JPEG"
use truetype && myconf+=",FT"
myconf+=",PNG"
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/GD/
@ 2021-06-07 6:26 Sergei Trofimovich
0 siblings, 0 replies; 46+ messages in thread
From: Sergei Trofimovich @ 2021-06-07 6:26 UTC (permalink / raw
To: gentoo-commits
commit: 4d994e5d2e27669449dbd2ce80dfa7515d616ba7
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 7 06:26:16 2021 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Mon Jun 7 06:26:16 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d994e5d
dev-perl/GD: keyworded 2.730.0-r1 for ppc64
keyworded wrt bug #791481
Package-Manager: Portage-3.0.19, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
dev-perl/GD/GD-2.730.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-perl/GD/GD-2.730.0-r1.ebuild b/dev-perl/GD/GD-2.730.0-r1.ebuild
index 747eb63a214..eda866da0b0 100644
--- a/dev-perl/GD/GD-2.730.0-r1.ebuild
+++ b/dev-perl/GD/GD-2.730.0-r1.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
DESCRIPTION="Interface to Thomas Boutell's gd library"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~sparc"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc64 ~sparc"
IUSE="animgif fcgi test truetype xpm"
RDEPEND="
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/GD/
@ 2021-06-14 6:37 Sergei Trofimovich
0 siblings, 0 replies; 46+ messages in thread
From: Sergei Trofimovich @ 2021-06-14 6:37 UTC (permalink / raw
To: gentoo-commits
commit: 9255a6b5c14aceac10652e3f1f694bf4f83f0859
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 14 06:37:13 2021 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Mon Jun 14 06:37:13 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9255a6b5
dev-perl/GD: keyworded 2.730.0-r1 for ppc
keyworded wrt bug #791481
Package-Manager: Portage-3.0.20, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
dev-perl/GD/GD-2.730.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-perl/GD/GD-2.730.0-r1.ebuild b/dev-perl/GD/GD-2.730.0-r1.ebuild
index eda866da0b0..508ee098dd7 100644
--- a/dev-perl/GD/GD-2.730.0-r1.ebuild
+++ b/dev-perl/GD/GD-2.730.0-r1.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
DESCRIPTION="Interface to Thomas Boutell's gd library"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc64 ~sparc"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc"
IUSE="animgif fcgi test truetype xpm"
RDEPEND="
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/GD/
@ 2021-07-24 20:23 Matt Turner
0 siblings, 0 replies; 46+ messages in thread
From: Matt Turner @ 2021-07-24 20:23 UTC (permalink / raw
To: gentoo-commits
commit: 32cbc572d095dac8b23fff18f19d266c2ff22995
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 24 19:36:56 2021 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sat Jul 24 20:23:01 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32cbc572
dev-perl/GD: Keyword 2.730.0-r1 alpha, #791481
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
dev-perl/GD/GD-2.730.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-perl/GD/GD-2.730.0-r1.ebuild b/dev-perl/GD/GD-2.730.0-r1.ebuild
index 508ee098dd7..557696b9da4 100644
--- a/dev-perl/GD/GD-2.730.0-r1.ebuild
+++ b/dev-perl/GD/GD-2.730.0-r1.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
DESCRIPTION="Interface to Thomas Boutell's gd library"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc"
IUSE="animgif fcgi test truetype xpm"
RDEPEND="
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/GD/
@ 2021-07-28 1:08 Sam James
0 siblings, 0 replies; 46+ messages in thread
From: Sam James @ 2021-07-28 1:08 UTC (permalink / raw
To: gentoo-commits
commit: feed19df854ca305ac7346a02a0ea9c37c31ffe9
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 28 01:07:31 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Jul 28 01:07:31 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=feed19df
dev-perl/GD: Keyword 2.730.0-r1 x86, #791481
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-perl/GD/GD-2.730.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-perl/GD/GD-2.730.0-r1.ebuild b/dev-perl/GD/GD-2.730.0-r1.ebuild
index 557696b9da4..55525ea09f4 100644
--- a/dev-perl/GD/GD-2.730.0-r1.ebuild
+++ b/dev-perl/GD/GD-2.730.0-r1.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
DESCRIPTION="Interface to Thomas Boutell's gd library"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
IUSE="animgif fcgi test truetype xpm"
RDEPEND="
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/GD/
@ 2021-08-15 17:01 Andreas K. Hüttel
0 siblings, 0 replies; 46+ messages in thread
From: Andreas K. Hüttel @ 2021-08-15 17:01 UTC (permalink / raw
To: gentoo-commits
commit: 8202df3cfedc5b41d04bb8e306f4a6abd03a18c2
Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 15 17:01:02 2021 +0000
Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Sun Aug 15 17:01:02 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8202df3c
dev-perl/GD: Remove old
Closes: https://bugs.gentoo.org/624332
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
dev-perl/GD/GD-2.660.0.ebuild | 70 -------------------------------------------
dev-perl/GD/Manifest | 1 -
2 files changed, 71 deletions(-)
diff --git a/dev-perl/GD/GD-2.660.0.ebuild b/dev-perl/GD/GD-2.660.0.ebuild
deleted file mode 100644
index 2fb7daf03e8..00000000000
--- a/dev-perl/GD/GD-2.660.0.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DIST_AUTHOR=RURBAN
-DIST_VERSION=2.66
-DIST_EXAMPLES=("demos/*")
-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 ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
-IUSE="animgif fcgi gif jpeg png truetype xpm"
-
-RDEPEND="
- >=media-libs/gd-2.2.3
- 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
- )
- fcgi? (
- dev-libs/fcgi
- )
- gif? ( media-libs/giflib )
-"
-DEPEND="${RDEPEND}
- >=virtual/perl-ExtUtils-Constant-0.230.0
- dev-perl/ExtUtils-PkgConfig
- virtual/perl-ExtUtils-MakeMaker
-"
-
-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
- myconf="VERSION_33,GD_UNCLOSEDPOLY,GD_FTCIRCLE" # Per line 284 of Makefile.PL
- 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}'"
- use fcgi && myconf+=" --fcgi"
- perl-module_src_configure
-}
-
-src_test() {
- perl_rm_files t/z_*.t
- perl-module_src_test
-}
diff --git a/dev-perl/GD/Manifest b/dev-perl/GD/Manifest
index fd659bc3506..ebf4412eb6d 100644
--- a/dev-perl/GD/Manifest
+++ b/dev-perl/GD/Manifest
@@ -1,2 +1 @@
-DIST GD-2.66.tar.gz 253000 BLAKE2B 1a1d5374c06fcb07849e504c8c5c6f00443890cfb728fd02b4c94838d754c2f04bbda80cfa8e2a7b08a3c07cbed32aa6a499468dfb044865f833b3486965d2b8 SHA512 37d3da70f4e0b89b0166488a1f8a48c508ff5e515653fe1b10602cb708ae0ce713c617dcae21c48ec795799fb0e061762696e6a65bb8ba359859223d15677c61
DIST GD-2.73.tar.gz 261203 BLAKE2B 088cb4d3c846d61e89631c7fef6b0273489297f0613e1ebb98c33b404a613431c79a5e72c2b757450496ef8d86aabe387b102a4c8d22d69532b8d8e989bac9bf SHA512 0c360c86307c8a2484bd8e1fb4cf24e27f7976bcfd830d9070fdc3775d233845734c59796082d498276aa715f30c9452c492b0d5bd75e488c1e9c5fa76490709
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/GD/
@ 2021-09-06 0:15 Sam James
0 siblings, 0 replies; 46+ messages in thread
From: Sam James @ 2021-09-06 0:15 UTC (permalink / raw
To: gentoo-commits
commit: 0a109eacb789653a0d9df5ea4111de0726356d14
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 6 00:14:16 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Sep 6 00:15:04 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a109eac
dev-perl/GD: Keyword 2.730.0-r1 s390, #791481
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-perl/GD/GD-2.730.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-perl/GD/GD-2.730.0-r1.ebuild b/dev-perl/GD/GD-2.730.0-r1.ebuild
index 55525ea09f4..82d2182fed2 100644
--- a/dev-perl/GD/GD-2.730.0-r1.ebuild
+++ b/dev-perl/GD/GD-2.730.0-r1.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
DESCRIPTION="Interface to Thomas Boutell's gd library"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
IUSE="animgif fcgi test truetype xpm"
RDEPEND="
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/GD/
@ 2021-09-28 20:26 James Le Cuirot
0 siblings, 0 replies; 46+ messages in thread
From: James Le Cuirot @ 2021-09-28 20:26 UTC (permalink / raw
To: gentoo-commits
commit: 19a49fa92e90161a617c0c8cd571b46075e27811
Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 28 20:25:38 2021 +0000
Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Tue Sep 28 20:26:15 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19a49fa9
dev-perl/GD: Keyword 2.730.0-r1 for ~m68k
The tests pass.
Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
dev-perl/GD/GD-2.730.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-perl/GD/GD-2.730.0-r1.ebuild b/dev-perl/GD/GD-2.730.0-r1.ebuild
index 66ada24424d..eeb13273e5b 100644
--- a/dev-perl/GD/GD-2.730.0-r1.ebuild
+++ b/dev-perl/GD/GD-2.730.0-r1.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
DESCRIPTION="Interface to Thomas Boutell's gd library"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
IUSE="animgif fcgi test truetype xpm"
RDEPEND="
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/GD/
@ 2022-05-25 9:10 WANG Xuerui
0 siblings, 0 replies; 46+ messages in thread
From: WANG Xuerui @ 2022-05-25 9:10 UTC (permalink / raw
To: gentoo-commits
commit: 7cf7ca0649598f4567bc295d6e9afba9e28c3fca
Author: WANG Xuerui <xen0n <AT> gentoo <DOT> org>
AuthorDate: Wed May 25 08:41:51 2022 +0000
Commit: WANG Xuerui <xen0n <AT> gentoo <DOT> org>
CommitDate: Wed May 25 09:09:38 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7cf7ca06
dev-perl/GD: keyword 2.730.0-r1 for ~loong
Signed-off-by: WANG Xuerui <xen0n <AT> gentoo.org>
dev-perl/GD/GD-2.730.0-r1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-perl/GD/GD-2.730.0-r1.ebuild b/dev-perl/GD/GD-2.730.0-r1.ebuild
index eeb13273e5bd..b224058da11f 100644
--- a/dev-perl/GD/GD-2.730.0-r1.ebuild
+++ b/dev-perl/GD/GD-2.730.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -11,7 +11,7 @@ inherit perl-module
DESCRIPTION="Interface to Thomas Boutell's gd library"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
IUSE="animgif fcgi test truetype xpm"
RDEPEND="
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/GD/
@ 2022-10-31 16:38 Agostino Sarubbo
0 siblings, 0 replies; 46+ messages in thread
From: Agostino Sarubbo @ 2022-10-31 16:38 UTC (permalink / raw
To: gentoo-commits
commit: a1907263f4cc5bc7f1d06905f6f15ae8ecfdb200
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 31 16:37:26 2022 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Mon Oct 31 16:37:26 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1907263
dev-perl/GD: Stabilize 2.730.0-r1 amd64, #877713
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
dev-perl/GD/GD-2.730.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-perl/GD/GD-2.730.0-r1.ebuild b/dev-perl/GD/GD-2.730.0-r1.ebuild
index b224058da11f..f24793eac01b 100644
--- a/dev-perl/GD/GD-2.730.0-r1.ebuild
+++ b/dev-perl/GD/GD-2.730.0-r1.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
DESCRIPTION="Interface to Thomas Boutell's gd library"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
IUSE="animgif fcgi test truetype xpm"
RDEPEND="
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/GD/
@ 2022-12-18 18:50 Arthur Zamarin
0 siblings, 0 replies; 46+ messages in thread
From: Arthur Zamarin @ 2022-12-18 18:50 UTC (permalink / raw
To: gentoo-commits
commit: 810fabd26821c7d5448d35585b9a4a27f5b77d3b
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 18 18:49:12 2022 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Dec 18 18:49:12 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=810fabd2
dev-perl/GD: Stabilize 2.760.0 amd64, #886863
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-perl/GD/GD-2.760.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-perl/GD/GD-2.760.0.ebuild b/dev-perl/GD/GD-2.760.0.ebuild
index f722bb933ed8..618a8fcfb87a 100644
--- a/dev-perl/GD/GD-2.760.0.ebuild
+++ b/dev-perl/GD/GD-2.760.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
DESCRIPTION="Interface to Thomas Boutell's gd library"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
IUSE="animgif fcgi test truetype xpm"
RDEPEND="
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/GD/
@ 2023-07-05 0:38 Sam James
0 siblings, 0 replies; 46+ messages in thread
From: Sam James @ 2023-07-05 0:38 UTC (permalink / raw
To: gentoo-commits
commit: f4ad9e8a88811aa4e6f7315c976912ec54d61b5b
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 5 00:07:16 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Jul 5 00:38:21 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4ad9e8a
dev-perl/GD: add 2.780.0
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-perl/GD/GD-2.780.0.ebuild | 81 +++++++++++++++++++++++++++++++++++++++++++
dev-perl/GD/Manifest | 1 +
2 files changed, 82 insertions(+)
diff --git a/dev-perl/GD/GD-2.780.0.ebuild b/dev-perl/GD/GD-2.780.0.ebuild
new file mode 100644
index 000000000000..800db62bfae2
--- /dev/null
+++ b/dev-perl/GD/GD-2.780.0.ebuild
@@ -0,0 +1,81 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DIST_AUTHOR=RURBAN
+DIST_VERSION=2.78
+DIST_EXAMPLES=("demos/*")
+inherit perl-module
+
+DESCRIPTION="Interface to Thomas Boutell's gd library"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+IUSE="animgif fcgi test truetype xpm"
+
+RDEPEND="
+ >=media-libs/gd-2.2.3[png,jpeg]
+ media-libs/giflib
+ media-libs/libjpeg-turbo
+ media-libs/libpng
+ sys-libs/zlib
+ truetype? (
+ media-libs/gd[truetype]
+ media-libs/freetype:2
+ )
+ xpm? (
+ media-libs/gd[xpm]
+ x11-libs/libXpm
+ )
+ fcgi? (
+ dev-libs/fcgi
+ )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+ ${RDEPEND}
+ >=virtual/perl-ExtUtils-Constant-0.230.0
+ dev-perl/ExtUtils-PkgConfig
+ virtual/perl-ExtUtils-MakeMaker
+ test? (
+ >=dev-perl/Test-Fork-0.20.0
+ >=virtual/perl-Test-Simple-0.880.0
+ >=dev-perl/Test-NoWarnings-1.0.0
+ )
+"
+
+PATCHES=(
+ "${FILESDIR}"/${PN}-2.760.0-respect-libdir.patch
+)
+
+src_configure() {
+ local myconfargs=(
+ VERSION_33
+ GD_UNCLOSEDPOLY
+ GD_FTCIRCLE
+
+ WINDOWS_BMP
+ JPEG
+ PNG
+ GIF
+ )
+
+ # The following flags do not work properly. This is why we force-enable
+ # at least some of them. See bug 787404 as tracker.
+ use animgif && myconfargs+=( ANIMGIF )
+ use truetype && myconfargs+=( FT )
+ use xpm && myconfargs+=( XPM )
+
+ # Per line 284 of Makefile.PL
+ local myconf="--lib_gd_path ${ESYSROOT}/usr/$(get_libdir) -options '$(printf '%s,' ${myconfargs[@]})'"
+ use fcgi && myconf+=" --fcgi"
+
+ perl-module_src_configure
+}
+
+src_test() {
+ # The 'GD' format itself is long-obsolete and gone in >=media-libs/gd-2.3.3
+ perl_rm_files t/z_*.t t/GD.t
+ perl-module_src_test
+}
diff --git a/dev-perl/GD/Manifest b/dev-perl/GD/Manifest
index ef3c7eeb2c4a..4166a1bac068 100644
--- a/dev-perl/GD/Manifest
+++ b/dev-perl/GD/Manifest
@@ -1 +1,2 @@
DIST GD-2.76.tar.gz 264364 BLAKE2B 4cfe36f74aae50141f00cd8d3a6eddbf819dafd76ecfc1fbf219c3ae40009b9e4c1e6b94a33416842846dead17bfc1f883324757fd66124aae8e2cbae2bcfef3 SHA512 31c2d61440a7fef9804aed677ee5568f6c237e678cf5a2b7f48e98326ef7cddbf3624ce3965e6711ef9cec4148881a0cb4352c19b91ead4b78835fafaeefbe4d
+DIST GD-2.78.tar.gz 265773 BLAKE2B a05f9e26c2ea7d9a638cdb8fb6675382f5274e295f530587e1e83990ad5238882300052a4eb270f8881f02df30739783c64af8d2d93680e0e0a12570c6d45a61 SHA512 ef3df42c003f105fd1c313ea9e8b8b1e75912b4fdb274e73f2e4f5664a0adb8479a2e62fae5a493e37c36865f9dc37207d2d31e96316eb18a3c5384e07858591
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/GD/
@ 2024-04-17 22:10 Sam James
0 siblings, 0 replies; 46+ messages in thread
From: Sam James @ 2024-04-17 22:10 UTC (permalink / raw
To: gentoo-commits
commit: 47f0503f4480cca78bc1ec258ccf456f608e076e
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 17 22:09:34 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Apr 17 22:09:34 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47f0503f
dev-perl/GD: Stabilize 2.780.0 arm, #928619
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-perl/GD/GD-2.780.0.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-perl/GD/GD-2.780.0.ebuild b/dev-perl/GD/GD-2.780.0.ebuild
index 30f4e6c635f8..8b0ba047b98f 100644
--- a/dev-perl/GD/GD-2.780.0.ebuild
+++ b/dev-perl/GD/GD-2.780.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -11,7 +11,7 @@ inherit perl-module
DESCRIPTION="Interface to Thomas Boutell's gd library"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
IUSE="animgif fcgi test truetype xpm"
RDEPEND="
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/GD/
@ 2024-04-17 23:35 Sam James
0 siblings, 0 replies; 46+ messages in thread
From: Sam James @ 2024-04-17 23:35 UTC (permalink / raw
To: gentoo-commits
commit: faad48b3c95bc33797f49365cd17d811fc9eb860
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 17 23:35:00 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Apr 17 23:35:00 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=faad48b3
dev-perl/GD: Stabilize 2.780.0 x86, #928619
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-perl/GD/GD-2.780.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-perl/GD/GD-2.780.0.ebuild b/dev-perl/GD/GD-2.780.0.ebuild
index 8b0ba047b98f..648bef1e5e4f 100644
--- a/dev-perl/GD/GD-2.780.0.ebuild
+++ b/dev-perl/GD/GD-2.780.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
DESCRIPTION="Interface to Thomas Boutell's gd library"
SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86"
IUSE="animgif fcgi test truetype xpm"
RDEPEND="
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/GD/
@ 2024-04-19 11:26 Sam James
0 siblings, 0 replies; 46+ messages in thread
From: Sam James @ 2024-04-19 11:26 UTC (permalink / raw
To: gentoo-commits
commit: 9f8735149d38167d6d81b73155f2c0ce28790988
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 19 11:26:31 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Apr 19 11:26:31 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f873514
dev-perl/GD: Stabilize 2.780.0 arm64, #928619
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-perl/GD/GD-2.780.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-perl/GD/GD-2.780.0.ebuild b/dev-perl/GD/GD-2.780.0.ebuild
index 648bef1e5e4f..f84d32d2b2a9 100644
--- a/dev-perl/GD/GD-2.780.0.ebuild
+++ b/dev-perl/GD/GD-2.780.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
DESCRIPTION="Interface to Thomas Boutell's gd library"
SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86"
IUSE="animgif fcgi test truetype xpm"
RDEPEND="
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/GD/
@ 2024-05-01 9:12 Sam James
0 siblings, 0 replies; 46+ messages in thread
From: Sam James @ 2024-05-01 9:12 UTC (permalink / raw
To: gentoo-commits
commit: 52e1eb94b884f30a55b7eaf57ca487b9e6702b60
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed May 1 09:03:15 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed May 1 09:03:15 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52e1eb94
dev-perl/GD: add 2.790.0
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-perl/GD/GD-2.790.0.ebuild | 81 +++++++++++++++++++++++++++++++++++++++++++
dev-perl/GD/Manifest | 1 +
2 files changed, 82 insertions(+)
diff --git a/dev-perl/GD/GD-2.790.0.ebuild b/dev-perl/GD/GD-2.790.0.ebuild
new file mode 100644
index 000000000000..80ec87f79daa
--- /dev/null
+++ b/dev-perl/GD/GD-2.790.0.ebuild
@@ -0,0 +1,81 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DIST_AUTHOR=RURBAN
+DIST_VERSION=2.79
+DIST_EXAMPLES=("demos/*")
+inherit perl-module
+
+DESCRIPTION="Interface to Thomas Boutell's gd library"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+IUSE="animgif fcgi test truetype xpm"
+
+RDEPEND="
+ >=media-libs/gd-2.2.3[png,jpeg]
+ media-libs/giflib
+ media-libs/libjpeg-turbo
+ media-libs/libpng
+ sys-libs/zlib
+ truetype? (
+ media-libs/gd[truetype]
+ media-libs/freetype:2
+ )
+ xpm? (
+ media-libs/gd[xpm]
+ x11-libs/libXpm
+ )
+ fcgi? (
+ dev-libs/fcgi
+ )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+ ${RDEPEND}
+ >=virtual/perl-ExtUtils-Constant-0.230.0
+ dev-perl/ExtUtils-PkgConfig
+ virtual/perl-ExtUtils-MakeMaker
+ test? (
+ >=dev-perl/Test-Fork-0.20.0
+ >=virtual/perl-Test-Simple-0.880.0
+ >=dev-perl/Test-NoWarnings-1.0.0
+ )
+"
+
+PATCHES=(
+ "${FILESDIR}"/${PN}-2.760.0-respect-libdir.patch
+)
+
+src_configure() {
+ local myconfargs=(
+ VERSION_33
+ GD_UNCLOSEDPOLY
+ GD_FTCIRCLE
+
+ WINDOWS_BMP
+ JPEG
+ PNG
+ GIF
+ )
+
+ # The following flags do not work properly. This is why we force-enable
+ # at least some of them. See bug 787404 as tracker.
+ use animgif && myconfargs+=( ANIMGIF )
+ use truetype && myconfargs+=( FT )
+ use xpm && myconfargs+=( XPM )
+
+ # Per line 284 of Makefile.PL
+ local myconf="--lib_gd_path ${ESYSROOT}/usr/$(get_libdir) -options '$(printf '%s,' ${myconfargs[@]})'"
+ use fcgi && myconf+=" --fcgi"
+
+ perl-module_src_configure
+}
+
+src_test() {
+ # The 'GD' format itself is long-obsolete and gone in >=media-libs/gd-2.3.3
+ perl_rm_files t/z_*.t t/GD.t
+ perl-module_src_test
+}
diff --git a/dev-perl/GD/Manifest b/dev-perl/GD/Manifest
index c5e1014d06a0..c1cb6cfff57b 100644
--- a/dev-perl/GD/Manifest
+++ b/dev-perl/GD/Manifest
@@ -1 +1,2 @@
DIST GD-2.78.tar.gz 265773 BLAKE2B a05f9e26c2ea7d9a638cdb8fb6675382f5274e295f530587e1e83990ad5238882300052a4eb270f8881f02df30739783c64af8d2d93680e0e0a12570c6d45a61 SHA512 ef3df42c003f105fd1c313ea9e8b8b1e75912b4fdb274e73f2e4f5664a0adb8479a2e62fae5a493e37c36865f9dc37207d2d31e96316eb18a3c5384e07858591
+DIST GD-2.79.tar.gz 269331 BLAKE2B 6d640ba19841a7401f3306fde0a71fed8b9e1e6382641a9f902f84b65a96cf3ce297f06f1465a5ee1ed553bfc9213c6871a618109fb48a2f9ab68b9e49769e8d SHA512 c2c1b298b469aa357aaab94a48bbff916e33a36d4d028ad5cb0c9dab8b59f304b261d08121f06512e221598d647d6c09a5360a17bd4378d06cfd3ee53c5fe03b
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/GD/
@ 2024-05-03 11:39 Sam James
0 siblings, 0 replies; 46+ messages in thread
From: Sam James @ 2024-05-03 11:39 UTC (permalink / raw
To: gentoo-commits
commit: 420827a99109e29d149e6e42597e64e3ee33326c
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri May 3 11:38:25 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri May 3 11:38:53 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=420827a9
dev-perl/GD: add 2.800.0
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-perl/GD/GD-2.800.0.ebuild | 81 +++++++++++++++++++++++++++++++++++++++++++
dev-perl/GD/Manifest | 1 +
2 files changed, 82 insertions(+)
diff --git a/dev-perl/GD/GD-2.800.0.ebuild b/dev-perl/GD/GD-2.800.0.ebuild
new file mode 100644
index 000000000000..955ae59705bb
--- /dev/null
+++ b/dev-perl/GD/GD-2.800.0.ebuild
@@ -0,0 +1,81 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DIST_AUTHOR=RURBAN
+DIST_VERSION=2.80
+DIST_EXAMPLES=("demos/*")
+inherit perl-module
+
+DESCRIPTION="Interface to Thomas Boutell's gd library"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+IUSE="animgif fcgi test truetype xpm"
+
+RDEPEND="
+ >=media-libs/gd-2.2.3[png,jpeg]
+ media-libs/giflib
+ media-libs/libjpeg-turbo
+ media-libs/libpng
+ sys-libs/zlib
+ truetype? (
+ media-libs/gd[truetype]
+ media-libs/freetype:2
+ )
+ xpm? (
+ media-libs/gd[xpm]
+ x11-libs/libXpm
+ )
+ fcgi? (
+ dev-libs/fcgi
+ )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+ ${RDEPEND}
+ >=virtual/perl-ExtUtils-Constant-0.230.0
+ dev-perl/ExtUtils-PkgConfig
+ virtual/perl-ExtUtils-MakeMaker
+ test? (
+ >=dev-perl/Test-Fork-0.20.0
+ >=virtual/perl-Test-Simple-0.880.0
+ >=dev-perl/Test-NoWarnings-1.0.0
+ )
+"
+
+PATCHES=(
+ "${FILESDIR}"/${PN}-2.760.0-respect-libdir.patch
+)
+
+src_configure() {
+ local myconfargs=(
+ VERSION_33
+ GD_UNCLOSEDPOLY
+ GD_FTCIRCLE
+
+ WINDOWS_BMP
+ JPEG
+ PNG
+ GIF
+ )
+
+ # The following flags do not work properly. This is why we force-enable
+ # at least some of them. See bug 787404 as tracker.
+ use animgif && myconfargs+=( ANIMGIF )
+ use truetype && myconfargs+=( FT )
+ use xpm && myconfargs+=( XPM )
+
+ # Per line 284 of Makefile.PL
+ local myconf="--lib_gd_path ${ESYSROOT}/usr/$(get_libdir) -options '$(printf '%s,' ${myconfargs[@]})'"
+ use fcgi && myconf+=" --fcgi"
+
+ perl-module_src_configure
+}
+
+src_test() {
+ # The 'GD' format itself is long-obsolete and gone in >=media-libs/gd-2.3.3
+ perl_rm_files t/z_*.t t/GD.t
+ perl-module_src_test
+}
diff --git a/dev-perl/GD/Manifest b/dev-perl/GD/Manifest
index c1cb6cfff57b..2c17b73f483e 100644
--- a/dev-perl/GD/Manifest
+++ b/dev-perl/GD/Manifest
@@ -1,2 +1,3 @@
DIST GD-2.78.tar.gz 265773 BLAKE2B a05f9e26c2ea7d9a638cdb8fb6675382f5274e295f530587e1e83990ad5238882300052a4eb270f8881f02df30739783c64af8d2d93680e0e0a12570c6d45a61 SHA512 ef3df42c003f105fd1c313ea9e8b8b1e75912b4fdb274e73f2e4f5664a0adb8479a2e62fae5a493e37c36865f9dc37207d2d31e96316eb18a3c5384e07858591
DIST GD-2.79.tar.gz 269331 BLAKE2B 6d640ba19841a7401f3306fde0a71fed8b9e1e6382641a9f902f84b65a96cf3ce297f06f1465a5ee1ed553bfc9213c6871a618109fb48a2f9ab68b9e49769e8d SHA512 c2c1b298b469aa357aaab94a48bbff916e33a36d4d028ad5cb0c9dab8b59f304b261d08121f06512e221598d647d6c09a5360a17bd4378d06cfd3ee53c5fe03b
+DIST GD-2.80.tar.gz 285685 BLAKE2B b3b130de1ba9ae14796339d6ed4033abba17db280b0b5ae02cd55d27bf62515999993d519ca32789e9cbc142e67256efef110139a79d472095b1d137c2d57941 SHA512 d973464d97b7472bb1e22cd03d644b8c5d0d83ac3076c9b10890666942e469e1dfc62ee6a01ff0cd49b13e7df9ad6ed2a16bbba36c1acacf94b3363194824177
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/GD/
@ 2024-07-07 11:02 Sam James
0 siblings, 0 replies; 46+ messages in thread
From: Sam James @ 2024-07-07 11:02 UTC (permalink / raw
To: gentoo-commits
commit: c760b9a432abf7624d5003e1cb32b7642a0b02a9
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 7 10:48:34 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Jul 7 11:01:21 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c760b9a4
dev-perl/GD: add 2.830.0
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-perl/GD/GD-2.830.0.ebuild | 82 +++++++++++++++++++++++++++++++++++++++++++
dev-perl/GD/Manifest | 1 +
2 files changed, 83 insertions(+)
diff --git a/dev-perl/GD/GD-2.830.0.ebuild b/dev-perl/GD/GD-2.830.0.ebuild
new file mode 100644
index 000000000000..77644707b46d
--- /dev/null
+++ b/dev-perl/GD/GD-2.830.0.ebuild
@@ -0,0 +1,82 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DIST_AUTHOR=RURBAN
+DIST_VERSION=2.83
+DIST_EXAMPLES=("demos/*")
+inherit perl-module
+
+DESCRIPTION="Interface to Thomas Boutell's gd library"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+IUSE="animgif fcgi test truetype xpm"
+
+RDEPEND="
+ >=media-libs/gd-2.2.3[png,jpeg]
+ media-libs/giflib
+ media-libs/libjpeg-turbo
+ media-libs/libpng
+ sys-libs/zlib
+ truetype? (
+ media-libs/gd[truetype]
+ media-libs/freetype:2
+ )
+ xpm? (
+ media-libs/gd[xpm]
+ x11-libs/libXpm
+ )
+ fcgi? (
+ dev-libs/fcgi
+ )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+ ${RDEPEND}
+ >=virtual/perl-ExtUtils-Constant-0.230.0
+ dev-perl/ExtUtils-PkgConfig
+ virtual/perl-ExtUtils-MakeMaker
+ dev-perl/File-Which
+ test? (
+ >=dev-perl/Test-Fork-0.20.0
+ >=virtual/perl-Test-Simple-0.880.0
+ >=dev-perl/Test-NoWarnings-1.0.0
+ )
+"
+
+PATCHES=(
+ "${FILESDIR}"/${PN}-2.820.0-respect-libdir.patch
+)
+
+src_configure() {
+ local myconfargs=(
+ VERSION_33
+ GD_UNCLOSEDPOLY
+ GD_FTCIRCLE
+
+ WINDOWS_BMP
+ JPEG
+ PNG
+ GIF
+ )
+
+ # The following flags do not work properly. This is why we force-enable
+ # at least some of them. See bug 787404 as tracker.
+ use animgif && myconfargs+=( ANIMGIF )
+ use truetype && myconfargs+=( FT )
+ use xpm && myconfargs+=( XPM )
+
+ # Per line 284 of Makefile.PL
+ local myconf="--lib_gd_path ${ESYSROOT}/usr/$(get_libdir) -options '$(printf '%s,' ${myconfargs[@]})'"
+ use fcgi && myconf+=" --fcgi"
+
+ perl-module_src_configure
+}
+
+src_test() {
+ # The 'GD' format itself is long-obsolete and gone in >=media-libs/gd-2.3.3
+ perl_rm_files t/z_*.t t/GD.t
+ perl-module_src_test
+}
diff --git a/dev-perl/GD/Manifest b/dev-perl/GD/Manifest
index 00333a35a2bc..8dc5210d42d0 100644
--- a/dev-perl/GD/Manifest
+++ b/dev-perl/GD/Manifest
@@ -2,3 +2,4 @@ DIST GD-2.78.tar.gz 265773 BLAKE2B a05f9e26c2ea7d9a638cdb8fb6675382f5274e295f530
DIST GD-2.79.tar.gz 269331 BLAKE2B 6d640ba19841a7401f3306fde0a71fed8b9e1e6382641a9f902f84b65a96cf3ce297f06f1465a5ee1ed553bfc9213c6871a618109fb48a2f9ab68b9e49769e8d SHA512 c2c1b298b469aa357aaab94a48bbff916e33a36d4d028ad5cb0c9dab8b59f304b261d08121f06512e221598d647d6c09a5360a17bd4378d06cfd3ee53c5fe03b
DIST GD-2.80.tar.gz 285685 BLAKE2B b3b130de1ba9ae14796339d6ed4033abba17db280b0b5ae02cd55d27bf62515999993d519ca32789e9cbc142e67256efef110139a79d472095b1d137c2d57941 SHA512 d973464d97b7472bb1e22cd03d644b8c5d0d83ac3076c9b10890666942e469e1dfc62ee6a01ff0cd49b13e7df9ad6ed2a16bbba36c1acacf94b3363194824177
DIST GD-2.82.tar.gz 283831 BLAKE2B 9314a17d949f6b98f370c754fb7ae2346589b8aa2413513b6697dcb0ba7bc13465ba18d40604a129da502c189df4b7651e6d974545b05a943c7e3689c0e36986 SHA512 4aca1de74855e79d35cdffa167bba7f50cfc017ee855953bcda1d896d1e9da5976eae8fe3ab6ac2c682597b4a8424f100afc4a67aee2cdc6f88a19ff261551e8
+DIST GD-2.83.tar.gz 287543 BLAKE2B 53ec0e81bb1a72ff73b6ab7bdee1100fdb31ac73a08a16227bfd07de52284be5cbdc728f709534f99284b9552d31e2f407d1f92efecc1cbf572f53c14c722aea SHA512 65080a18ff675b7997a4425dcd9c8171e7d4cd5d53f499541caa7a0d85399ecffa04cae742ffcf8a0f2102a446ea46ecac45293fe14637b6d8a56d589c8c95cf
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/GD/
@ 2024-07-27 12:01 Sam James
0 siblings, 0 replies; 46+ messages in thread
From: Sam James @ 2024-07-27 12:01 UTC (permalink / raw
To: gentoo-commits
commit: 853b5c84bd225443cb3d8bd49eb0c439d5737898
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 27 12:01:29 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jul 27 12:01:29 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=853b5c84
dev-perl/GD: Stabilize 2.820.0 arm64, #936779
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-perl/GD/GD-2.820.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-perl/GD/GD-2.820.0.ebuild b/dev-perl/GD/GD-2.820.0.ebuild
index bcfda34b9fca..74a6a94a7c90 100644
--- a/dev-perl/GD/GD-2.820.0.ebuild
+++ b/dev-perl/GD/GD-2.820.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
DESCRIPTION="Interface to Thomas Boutell's gd library"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
IUSE="animgif fcgi test truetype xpm"
RDEPEND="
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/GD/
@ 2024-07-27 12:35 Sam James
0 siblings, 0 replies; 46+ messages in thread
From: Sam James @ 2024-07-27 12:35 UTC (permalink / raw
To: gentoo-commits
commit: 03289602d2788e45430800a98862bcbc64655614
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 27 12:32:46 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jul 27 12:32:46 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03289602
dev-perl/GD: Stabilize 2.820.0 amd64, #936779
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-perl/GD/GD-2.820.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-perl/GD/GD-2.820.0.ebuild b/dev-perl/GD/GD-2.820.0.ebuild
index 74a6a94a7c90..787214a313bc 100644
--- a/dev-perl/GD/GD-2.820.0.ebuild
+++ b/dev-perl/GD/GD-2.820.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
DESCRIPTION="Interface to Thomas Boutell's gd library"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
IUSE="animgif fcgi test truetype xpm"
RDEPEND="
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/GD/
@ 2024-07-27 12:35 Sam James
0 siblings, 0 replies; 46+ messages in thread
From: Sam James @ 2024-07-27 12:35 UTC (permalink / raw
To: gentoo-commits
commit: 563d3623a76ea1083facd48781341712ed6bf45e
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 27 12:32:47 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jul 27 12:32:47 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=563d3623
dev-perl/GD: Stabilize 2.820.0 arm, #936779
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-perl/GD/GD-2.820.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-perl/GD/GD-2.820.0.ebuild b/dev-perl/GD/GD-2.820.0.ebuild
index 787214a313bc..b87ff408468e 100644
--- a/dev-perl/GD/GD-2.820.0.ebuild
+++ b/dev-perl/GD/GD-2.820.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
DESCRIPTION="Interface to Thomas Boutell's gd library"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
IUSE="animgif fcgi test truetype xpm"
RDEPEND="
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/GD/
@ 2024-07-27 12:35 Sam James
0 siblings, 0 replies; 46+ messages in thread
From: Sam James @ 2024-07-27 12:35 UTC (permalink / raw
To: gentoo-commits
commit: f6640896516719b609646824aa93aee8b250b712
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 27 12:32:49 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jul 27 12:32:49 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6640896
dev-perl/GD: Stabilize 2.820.0 x86, #936779
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-perl/GD/GD-2.820.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-perl/GD/GD-2.820.0.ebuild b/dev-perl/GD/GD-2.820.0.ebuild
index b87ff408468e..3805e6a59c3e 100644
--- a/dev-perl/GD/GD-2.820.0.ebuild
+++ b/dev-perl/GD/GD-2.820.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
DESCRIPTION="Interface to Thomas Boutell's gd library"
SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86"
IUSE="animgif fcgi test truetype xpm"
RDEPEND="
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/GD/
@ 2024-10-15 8:45 Sam James
0 siblings, 0 replies; 46+ messages in thread
From: Sam James @ 2024-10-15 8:45 UTC (permalink / raw
To: gentoo-commits
commit: 24430abdcaa15285ba5655c3907a6db086198e40
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 15 08:44:54 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Oct 15 08:44:54 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24430abd
dev-perl/GD: Stabilize 2.830.0 amd64, #941571
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-perl/GD/GD-2.830.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-perl/GD/GD-2.830.0.ebuild b/dev-perl/GD/GD-2.830.0.ebuild
index 123eb51689c5..0dfd39b1ec26 100644
--- a/dev-perl/GD/GD-2.830.0.ebuild
+++ b/dev-perl/GD/GD-2.830.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
DESCRIPTION="Interface to Thomas Boutell's gd library"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
IUSE="animgif fcgi test truetype xpm"
RDEPEND="
^ permalink raw reply related [flat|nested] 46+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/GD/
@ 2024-10-15 8:45 Sam James
0 siblings, 0 replies; 46+ messages in thread
From: Sam James @ 2024-10-15 8:45 UTC (permalink / raw
To: gentoo-commits
commit: 81fbb4d1f8977ca51e1799e33cfc145eea3e2663
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 15 08:44:56 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Oct 15 08:44:56 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81fbb4d1
dev-perl/GD: Stabilize 2.830.0 x86, #941571
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-perl/GD/GD-2.830.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-perl/GD/GD-2.830.0.ebuild b/dev-perl/GD/GD-2.830.0.ebuild
index 0dfd39b1ec26..f3e328273091 100644
--- a/dev-perl/GD/GD-2.830.0.ebuild
+++ b/dev-perl/GD/GD-2.830.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
DESCRIPTION="Interface to Thomas Boutell's gd library"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86"
IUSE="animgif fcgi test truetype xpm"
RDEPEND="
^ permalink raw reply related [flat|nested] 46+ messages in thread
end of thread, other threads:[~2024-10-15 8:45 UTC | newest]
Thread overview: 46+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-06-07 6:26 [gentoo-commits] repo/gentoo:master commit in: dev-perl/GD/ Sergei Trofimovich
-- strict thread matches above, loose matches on Subject: below --
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-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 23:00 Andreas Hüttel
2016-01-18 22:50 Andreas Hüttel
2015-12-19 23:01 Andreas Hüttel
2015-12-19 23:01 Andreas Hüttel
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox