summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2021-05-23 16:51:36 +0200
committerConrad Kostecki <conikost@gentoo.org>2021-07-10 23:06:50 +0200
commitfd4f9013e00b36a9bd167c5b55ccd50fe0b2556a (patch)
treecbfcf6a7da208ce509a1325f36734db02a0f7a9f /dev-perl/GD/files
parentsys-apps/shadow: remove unused patch (diff)
downloadgentoo-fd4f9013e00b36a9bd167c5b55ccd50fe0b2556a.tar.gz
gentoo-fd4f9013e00b36a9bd167c5b55ccd50fe0b2556a.tar.bz2
gentoo-fd4f9013e00b36a9bd167c5b55ccd50fe0b2556a.zip
dev-perl/GD: remove unused patch(es)
Closes: https://github.com/gentoo/gentoo/pull/20951 Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'dev-perl/GD/files')
-rw-r--r--dev-perl/GD/files/GD-2.560.0-rt106594.patch40
1 files changed, 0 insertions, 40 deletions
diff --git a/dev-perl/GD/files/GD-2.560.0-rt106594.patch b/dev-perl/GD/files/GD-2.560.0-rt106594.patch
deleted file mode 100644
index dc8007d5d493..000000000000
--- a/dev-perl/GD/files/GD-2.560.0-rt106594.patch
+++ /dev/null
@@ -1,40 +0,0 @@
-diff -Naur GD-2.56/t/GD.t GD-2.56b/t/GD.t
---- GD-2.56/t/GD.t 2014-10-28 01:34:54.000000000 +0000
-+++ GD-2.56b/t/GD.t 2016-05-10 10:05:05.838356122 +0000
-@@ -7,8 +7,8 @@
- use FindBin qw($Bin);
- use lib "$Bin/../blib/lib","$Bin/../blib/arch","$Bin/../lib";
- use constant FONT=>"$Bin/test_data/Generic.ttf";
--use constant IMAGE_TESTS => 7;
--use Test::More tests => 11;
-+use constant IMAGE_TESTS => 6;
-+use Test::More tests => 10;
- use IO::Dir;
-
- use_ok('GD',':DEFAULT',':cmp');
-@@ -219,25 +219,6 @@
- return $im;
- }
-
--sub test7 {
-- my $im = GD::Image->new(400,250);
-- if (!$im) { printf("Test7: no image");};
-- my($white,$black,$red,$blue,$yellow) =
-- (
-- $im->colorAllocate(255, 255, 255),
-- $im->colorAllocate(0, 0, 0),
-- $im->colorAllocate(255, 0, 0),
-- $im->colorAllocate(0,0,255),
-- $im->colorAllocate(255,250,205)
-- );
--
-- # Some TTFs
-- $im->stringFT($black,FONT,12.0,0.0,20,20,"Hello world!") || warn $@;
-- $im->stringFT($red,FONT,14.0,0.0,20,80,"Hello world!") || warn $@;
-- $im->stringFT($blue,FONT,30.0,-0.5,60,100,"Goodbye cruel world!") || warn $@;
-- return $im;
--}
--
- sub run_image_regression_tests {
- my $suffix = $ENV{GDIMAGETYPE} || 'gd2';
- print STDERR "# Testing using $suffix support.\n";