diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2021-05-15 17:41:01 +0200 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2021-07-10 23:05:50 +0200 |
commit | 3b6dd702c014fbe0841a92bfd7d6a7e0ab27a745 (patch) | |
tree | 214605ed94841f98aba49dca6161e87933dbba6b /dev-perl/PDL-Graphics-Gnuplot | |
parent | app-shells/bash: remove unused patches (diff) | |
download | gentoo-3b6dd702c014fbe0841a92bfd7d6a7e0ab27a745.tar.gz gentoo-3b6dd702c014fbe0841a92bfd7d6a7e0ab27a745.tar.bz2 gentoo-3b6dd702c014fbe0841a92bfd7d6a7e0ab27a745.zip |
dev-perl/PDL-Graphics-Gnuplot: remove unused patch
Closes: https://github.com/gentoo/gentoo/pull/20820
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/PDL-Graphics-Gnuplot')
-rw-r--r-- | dev-perl/PDL-Graphics-Gnuplot/files/PDL-Graphics-Gnuplot-2.11.0-outputfile.patch | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/dev-perl/PDL-Graphics-Gnuplot/files/PDL-Graphics-Gnuplot-2.11.0-outputfile.patch b/dev-perl/PDL-Graphics-Gnuplot/files/PDL-Graphics-Gnuplot-2.11.0-outputfile.patch deleted file mode 100644 index 7d33370584ae..000000000000 --- a/dev-perl/PDL-Graphics-Gnuplot/files/PDL-Graphics-Gnuplot-2.11.0-outputfile.patch +++ /dev/null @@ -1,23 +0,0 @@ -From b12c3f5de6340b997e5a2992710828f3e89308a0 Mon Sep 17 00:00:00 2001 -From: Simon Reinhardt <simon.reinhardt@stud.uni-regensburg.de> -Date: Mon, 26 Jun 2017 14:57:32 +0200 -Subject: [PATCH] Fix #65: No quoting for output filenames. - -Insert missing call to quote_escape (escape backslashes and such for gnuplot -double-quote strings). ---- - lib/PDL/Graphics/Gnuplot.pm | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/lib/PDL/Graphics/Gnuplot.pm b/lib/PDL/Graphics/Gnuplot.pm -index 0edf7ef..ff96cc9 100644 ---- a/lib/PDL/Graphics/Gnuplot.pm -+++ b/lib/PDL/Graphics/Gnuplot.pm -@@ -5188,6 +5188,7 @@ our $pOptionsTable = - if($vv ne $v) { - carp "INFO: Plotting to '$vv'\n"; - } -+ $vv = quote_escape($vv); - return "set $k \"$vv\"\n"; - }, - undef,3, |