Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package cdecl for openSUSE:Factory checked in at 2021-08-23 10:07:44 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/cdecl (Old) and /work/SRC/openSUSE:Factory/.cdecl.new.1899 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "cdecl" Mon Aug 23 10:07:44 2021 rev:43 rq:912299 version:10.3 Changes: -------- --- /work/SRC/openSUSE:Factory/cdecl/cdecl.changes 2021-07-01 07:06:17.139171866 +0200 +++ /work/SRC/openSUSE:Factory/.cdecl.new.1899/cdecl.changes 2021-08-23 10:08:09.336247395 +0200 @@ -1,0 +2,8 @@ +Sun Aug 15 16:06:00 UTC 2021 - Jan Engelhardt <jeng...@inai.de> + +- Update to release 10.3 + * Marking functions and conversion operators = delete is now + supported. +- Add unbreak-gnulib.diff + +------------------------------------------------------------------- Old: ---- cdecl-10.2.tar.gz New: ---- cdecl-10.3.tar.gz unbreak-gnulib.diff ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ cdecl.spec ++++++ --- /var/tmp/diff_new_pack.zhBuDF/_old 2021-08-23 10:08:11.100245339 +0200 +++ /var/tmp/diff_new_pack.zhBuDF/_new 2021-08-23 10:08:11.104245334 +0200 @@ -17,7 +17,7 @@ Name: cdecl -Version: 10.2 +Version: 10.3 Release: 0 Summary: C/C++ function declaration translator License: GPL-3.0-or-later @@ -25,6 +25,7 @@ URL: https://github.com/paul-j-lucas/cdecl/ Source: https://github.com/paul-j-lucas/cdecl/releases/download/cdecl-%version/cdecl-%version.tar.gz +Patch1: unbreak-gnulib.diff BuildRequires: bison BuildRequires: flex BuildRequires: ncurses-devel ++++++ cdecl-10.2.tar.gz -> cdecl-10.3.tar.gz ++++++ ++++ 13698 lines of diff (skipped) ++++++ unbreak-gnulib.diff ++++++ From: Jan Engelhardt <jeng...@inai.de> Date: 2021-08-15 19:20:30.942589995 +0200 Compiler said _GL_ATTRIBUTE_MALLOC was undefined. This was a breaking change in gnulib 48ece5c3f2185f52ab8cd73ceac9bd9f0e01eac6. --- lib/stdlib.in.h | 6 ++++++ 1 file changed, 6 insertions(+) Index: cdecl-10.3/lib/stdlib.in.h =================================================================== --- cdecl-10.3.orig/lib/stdlib.in.h +++ cdecl-10.3/lib/stdlib.in.h @@ -108,6 +108,12 @@ struct random_data # define _GL_ATTRIBUTE_PURE /* empty */ # endif #endif +#ifndef _GL_ATTRIBUTE_MALLOC +#define _GL_ATTRIBUTE_MALLOC +#endif +#ifndef _GL_ATTRIBUTE_DEALLOC_FREE +#define _GL_ATTRIBUTE_DEALLOC_FREE +#endif /* The definition of _Noreturn is copied here. */