summaryrefslogtreecommitdiff
path: root/dev-perl/Data-HexDump/files/Data-HexDump-0.20.0-signed-c.patch
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
commit1798c4aeca70ac8d0a243684d6a798fbc65735f8 (patch)
treee48e19cb6fa03de18e1c63e1a93371b7ebc4eb56 /dev-perl/Data-HexDump/files/Data-HexDump-0.20.0-signed-c.patch
parentd87262dd706fec50cd150aab3e93883b6337466d (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'dev-perl/Data-HexDump/files/Data-HexDump-0.20.0-signed-c.patch')
-rw-r--r--dev-perl/Data-HexDump/files/Data-HexDump-0.20.0-signed-c.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/dev-perl/Data-HexDump/files/Data-HexDump-0.20.0-signed-c.patch b/dev-perl/Data-HexDump/files/Data-HexDump-0.20.0-signed-c.patch
deleted file mode 100644
index 6c117334cf97..000000000000
--- a/dev-perl/Data-HexDump/files/Data-HexDump-0.20.0-signed-c.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-From 1eec10393fbf1123327858d127e1f6d9e50f5a85 Mon Sep 17 00:00:00 2001
-From: Kent Fredric <kentnl@gentoo.org>
-Date: Tue, 10 Oct 2017 08:17:59 +1300
-Subject: Don't use signed characters for 0-255
-
-'c' == -127 to 127
-
-Bug: https://rt.cpan.org/Ticket/Display.html?id=123226
----
- t/compare.t | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/t/compare.t b/t/compare.t
-index f03d73d..3c25803 100644
---- a/t/compare.t
-+++ b/t/compare.t
-@@ -11,7 +11,7 @@ print "1..2\n";
- # data
- my $org = "";
- for (my $i = 0; $i <= 255; $i++) {
-- $org .= pack 'c', $i;
-+ $org .= pack 'C', $i;
- }
- $org = $org x 17 . "more data";
-
---
-2.14.1
-