Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package rrdtool for openSUSE:Factory checked in at 2026-05-16 19:24:20 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/rrdtool (Old) and /work/SRC/openSUSE:Factory/.rrdtool.new.1966 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rrdtool" Sat May 16 19:24:20 2026 rev:83 rq:1353078 version:1.9.0 Changes: -------- --- /work/SRC/openSUSE:Factory/rrdtool/rrdtool.changes 2026-03-05 17:13:19.442100473 +0100 +++ /work/SRC/openSUSE:Factory/.rrdtool.new.1966/rrdtool.changes 2026-05-16 19:25:14.987816626 +0200 @@ -1,0 +2,6 @@ +Wed May 13 18:51:56 UTC 2026 - Antonio Teixeira <[email protected]> + +- Add fix-graph-overlapping-legends.patch + * Fix overlapping graph labels (bsc#1262407) + +------------------------------------------------------------------- New: ---- fix-graph-overlapping-legends.patch ----------(New B)---------- New: - Add fix-graph-overlapping-legends.patch * Fix overlapping graph labels (bsc#1262407) ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ rrdtool.spec ++++++ --- /var/tmp/diff_new_pack.Yy7Rz7/_old 2026-05-16 19:25:15.647843638 +0200 +++ /var/tmp/diff_new_pack.Yy7Rz7/_new 2026-05-16 19:25:15.647843638 +0200 @@ -51,6 +51,8 @@ Patch1: rrdtool-zero_vs_nothing.patch Patch2: harden_rrdcached.service.patch Patch3: link_ruby_bindings.patch +# PATCH-FIX-UPSTREAM -- bsc#1262407 +Patch4: fix-graph-overlapping-legends.patch # Needed for tests BuildRequires: bc BuildRequires: cairo-devel >= 1.2 ++++++ fix-graph-overlapping-legends.patch ++++++ >From 30708a0396b2d6990db68957a6d7a8923fba2470 Mon Sep 17 00:00:00 2001 From: GONG Jie <[email protected]> Date: Mon, 27 Apr 2026 18:44:32 +0800 Subject: [PATCH 1/2] parse_tick: shift the legend by 2 spaces for the "coloured-box" --- src/rrd_graph_helper.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/rrd_graph_helper.c b/src/rrd_graph_helper.c index 8b9d0e306..cdc1b13ef 100644 --- a/src/rrd_graph_helper.c +++ b/src/rrd_graph_helper.c @@ -1765,6 +1765,10 @@ static int parse_tick( dprintf("XAXIS : %i\n", gdp->xaxisidx); dprintf("YAXIS : %i\n", gdp->yaxisidx); dprintf("=================================\n"); + + /* shift the legend by 2 spaces for the "coloured-box"*/ + legend_shift(gdp->legend); + /* and return */ return 0; }
