diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2024-05-19 12:53:02 +0200 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2024-05-25 01:35:15 +0200 |
commit | 44f81aeee7d597c255e3c366132b17d1d62743c7 (patch) | |
tree | 73bb9329ae329e4982af82304ef6488b4fcb9acb /x11-libs | |
parent | dev-ruby/coolio: remove unused patch(es) (diff) | |
download | gentoo-44f81aeee7d597c255e3c366132b17d1d62743c7.tar.gz gentoo-44f81aeee7d597c255e3c366132b17d1d62743c7.tar.bz2 gentoo-44f81aeee7d597c255e3c366132b17d1d62743c7.zip |
x11-libs/pango: remove unused patch(es)
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/36739
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'x11-libs')
-rw-r--r-- | x11-libs/pango/files/1.42.4-CVE-2019-1010238.patch | 34 | ||||
-rw-r--r-- | x11-libs/pango/files/1.42.4-pango-view.1.in | 113 |
2 files changed, 0 insertions, 147 deletions
diff --git a/x11-libs/pango/files/1.42.4-CVE-2019-1010238.patch b/x11-libs/pango/files/1.42.4-CVE-2019-1010238.patch deleted file mode 100644 index eaf0784c1b31..000000000000 --- a/x11-libs/pango/files/1.42.4-CVE-2019-1010238.patch +++ /dev/null @@ -1,34 +0,0 @@ -From 490f8979a260c16b1df055eab386345da18a2d54 Mon Sep 17 00:00:00 2001 -From: Matthias Clasen <mclasen@redhat.com> -Date: Wed, 10 Jul 2019 20:26:23 -0400 -Subject: [PATCH] bidi: Be safer against bad input - -Don't run off the end of an array that we -allocated to certain length. - -Closes: https://gitlab.gnome.org/GNOME/pango/issues/342 ---- - pango/pango-bidi-type.c | 7 +++++-- - 1 file changed, 5 insertions(+), 2 deletions(-) - -diff --git a/pango/pango-bidi-type.c b/pango/pango-bidi-type.c -index 3e46b66c..5c02dbbb 100644 ---- a/pango/pango-bidi-type.c -+++ b/pango/pango-bidi-type.c -@@ -181,8 +181,11 @@ pango_log2vis_get_embedding_levels (const gchar *text, - for (i = 0, p = text; p < text + length; p = g_utf8_next_char(p), i++) - { - gunichar ch = g_utf8_get_char (p); -- FriBidiCharType char_type; -- char_type = fribidi_get_bidi_type (ch); -+ FriBidiCharType char_type = fribidi_get_bidi_type (ch); -+ -+ if (i == n_chars) -+ break; -+ - bidi_types[i] = char_type; - ored_types |= char_type; - if (FRIBIDI_IS_STRONG (char_type)) --- -2.21.0 - diff --git a/x11-libs/pango/files/1.42.4-pango-view.1.in b/x11-libs/pango/files/1.42.4-pango-view.1.in deleted file mode 100644 index 0b6f07a90d3a..000000000000 --- a/x11-libs/pango/files/1.42.4-pango-view.1.in +++ /dev/null @@ -1,113 +0,0 @@ -.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.6. -.TH PANGO-VIEW "1" "August 2018" "pango-view (pango) 1.42.4" "User Commands" -.SH NAME -pango-view \- Pango text viewer -.SH DESCRIPTION -.SS "Usage:" -.IP -pango\-view [OPTION?] \- FILE -.SS "Help Options:" -.TP -\fB\-h\fR, \fB\-\-help\fR -Show help options -.TP -\fB\-\-help\-all\fR -Show all help options -.TP -\fB\-\-help\-cairo\fR -Options understood by the cairo backend -.SS "Cairo backend options:" -.TP -\fB\-\-annotate\fR=\fI\,1\/\fR or 2 -Annotate the output -.SS "Application Options:" -.TP -\fB\-\-no\-auto\-dir\fR -No layout direction according to contents -.TP -\fB\-\-backend\fR=\fI\,cairo\/\fR/xft/ft2 -Pango backend to use for rendering (default: cairo) -.TP -\fB\-\-background\fR=\fI\,red\/\fR/#rrggbb/#rrggbbaa/transparent -Set the background color -.TP -\fB\-q\fR, \fB\-\-no\-display\fR -Do not display (just write to file or whatever) -.TP -\fB\-\-dpi\fR=\fI\,number\/\fR -Set the resolution -.TP -\fB\-\-align\fR=\fI\,left\/\fR/center/right -Text alignment -.TP -\fB\-\-ellipsize\fR=\fI\,start\/\fR/middle/end -Ellipsization mode -.TP -\fB\-\-font\fR=\fI\,description\/\fR -Set the font description -.TP -\fB\-\-foreground\fR=\fI\,red\/\fR/#rrggbb/#rrggbbaa -Set the text color -.TP -\fB\-\-gravity\fR=\fI\,south\/\fR/east/north/west/auto -Base gravity: glyph rotation -.TP -\fB\-\-gravity\-hint\fR=\fI\,natural\/\fR/strong/line -Gravity hint -.TP -\fB\-\-header\fR -Display the options in the output -.TP -\fB\-\-height=\fR+points/\-numlines -Height in points (positive) or number of lines (negative) for ellipsizing -.TP -\fB\-\-hinting\fR=\fI\,none\/\fR/auto/full -Hinting style -.TP -\fB\-\-indent\fR=\fI\,points\/\fR -Width in points to indent paragraphs -.TP -\fB\-\-justify\fR -Align paragraph lines to be justified -.TP -\fB\-\-language\fR=\fI\,en_US\/\fR/etc -Language to use for font selection -.TP -\fB\-\-margin\fR=\fI\,CSS\-style\/\fR numbers in pixels -Set the margin on the output in pixels -.TP -\fB\-\-markup\fR -Interpret text as Pango markup -.TP -\fB\-o\fR, \fB\-\-output\fR=\fI\,file\/\fR -Save rendered image to output file -.TP -\fB\-\-pixels\fR -Use pixel units instead of points (sets dpi to 72) -.TP -\fB\-\-rtl\fR -Set base direction to right\-to\-left -.TP -\fB\-\-rotate\fR=\fI\,degrees\/\fR -Angle at which to rotate results -.TP -\fB\-n\fR, \fB\-\-runs\fR=\fI\,integer\/\fR -Run Pango layout engine this many times -.TP -\fB\-\-single\-par\fR -Enable single\-paragraph mode -.TP -\fB\-t\fR, \fB\-\-text\fR=\fI\,string\/\fR -Text to display (instead of a file) -.TP -\fB\-\-version\fR -Show version numbers -.TP -\fB\-\-waterfall\fR -Create a waterfall display -.TP -\fB\-w\fR, \fB\-\-width\fR=\fI\,points\/\fR -Width in points to which to wrap lines or ellipsize -.TP -\fB\-\-wrap\fR=\fI\,word\/\fR/char/word\-char -Text wrapping mode (needs a width to be set) |