Hello community, here is the log from the commit of package ding-libs for openSUSE:Factory checked in at 2019-06-24 21:45:09 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ding-libs (Old) and /work/SRC/openSUSE:Factory/.ding-libs.new.4615 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ding-libs" Mon Jun 24 21:45:09 2019 rev:20 rq:710508 version:unknown Changes: -------- --- /work/SRC/openSUSE:Factory/ding-libs/ding-libs.changes 2019-06-12 12:57:34.061350508 +0200 +++ /work/SRC/openSUSE:Factory/.ding-libs.new.4615/ding-libs.changes 2019-06-24 21:45:09.771731281 +0200 @@ -1,0 +2,6 @@ +Tue Jun 18 08:50:40 UTC 2019 - Tomáš Chvátal <[email protected]> + +- Add patch fixing errors writeout to stdout: + * INI-Remove-definiton-of-TRACE_LEVEL.patch + +------------------------------------------------------------------- New: ---- INI-Remove-definiton-of-TRACE_LEVEL.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ding-libs.spec ++++++ --- /var/tmp/diff_new_pack.jH4f4i/_old 2019-06-24 21:45:10.507731694 +0200 +++ /var/tmp/diff_new_pack.jH4f4i/_new 2019-06-24 21:45:10.511731697 +0200 @@ -40,6 +40,7 @@ Patch2: INI-Fix-detection-of-error-messages.patch Patch3: INI-Silence-ini_augment-match-failures.patch Patch4: TEST-validators_ut_check-Fix-fail-with-new-glibc.patch +Patch5: INI-Remove-definiton-of-TRACE_LEVEL.patch BuildRequires: doxygen BuildRequires: pkgconfig BuildRequires: pkgconfig(check) >= 0.9.5 ++++++ INI-Remove-definiton-of-TRACE_LEVEL.patch ++++++ >From 8509cfaa757c0f8cc4d79357613f46d2fd9ee878 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C5=BDidek?= <[email protected]> Date: Wed, 15 Nov 2017 18:31:47 +0100 Subject: [PATCH] INI: Remove definiton of TRACE_LEVEL Macros TRACE_LEVEL 7 and TRACE_HOME should only be defined in testing builds where we want debug messages to be generated. The macros are leftovers from the previous patch where they were improperly added for debug purposes. Resolves: https://pagure.io/SSSD/ding-libs/issue/3182 Reviewed-by: Robbie Harwood <[email protected]> (cherry picked from commit a731d8c8c515e7e42a4fb448e0ecb6934d5bf99b) Signed-off-by: Robbie Harwood <[email protected]> --- ini/ini_augment.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/ini/ini_augment.c b/ini/ini_augment.c index 9d83ad9..5a5a173 100644 --- a/ini/ini_augment.c +++ b/ini/ini_augment.c @@ -32,8 +32,6 @@ #include <sys/types.h> #include <regex.h> #include <unistd.h> -#define TRACE_LEVEL 7 -#define TRACE_HOME #include "trace.h" #include "collection.h" #include "collection_tools.h"
