Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package discount for openSUSE:Factory checked in at 2021-03-16 15:42:43 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/discount (Old) and /work/SRC/openSUSE:Factory/.discount.new.2401 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "discount" Tue Mar 16 15:42:43 2021 rev:13 rq:879100 version:2.2.7 Changes: -------- --- /work/SRC/openSUSE:Factory/discount/discount.changes 2021-01-30 13:55:39.941949333 +0100 +++ /work/SRC/openSUSE:Factory/.discount.new.2401/discount.changes 2021-03-16 15:43:54.260989167 +0100 @@ -1,0 +2,6 @@ +Fri Mar 12 23:06:20 UTC 2021 - Dirk M??ller <[email protected]> + +- update to version 2.2.7: + * fix small buffer overflow + +------------------------------------------------------------------- Old: ---- discount-2.2.6.tar.bz2 New: ---- discount-2.2.7.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ discount.spec ++++++ --- /var/tmp/diff_new_pack.KvauNc/_old 2021-03-16 15:43:54.852990115 +0100 +++ /var/tmp/diff_new_pack.KvauNc/_new 2021-03-16 15:43:54.856990121 +0100 @@ -19,13 +19,13 @@ %define sover 2 %bcond_with fenced_code Name: discount -Version: 2.2.6 +Version: 2.2.7 Release: 0 Summary: Markdown text to HTML converter License: BSD-3-Clause Group: Productivity/Text/Convertors URL: https://www.pell.portland.or.us/~orc/Code/discount/ -Source: http://www.pell.portland.or.us/~orc/Code/discount/discount-%{version}.tar.bz2 +Source: https://www.pell.portland.or.us/~orc/Code/discount/discount-%{version}.tar.bz2 Patch1: discount-disable_ldconfig.patch BuildRequires: fdupes BuildRequires: pkgconfig @@ -100,7 +100,8 @@ %postun -n libmarkdown%{sover} -p /sbin/ldconfig %files -%doc COPYRIGHT CREDITS README +%license COPYRIGHT +%doc CREDITS README %{_bindir}/makepage %{_bindir}/markdown %{_bindir}/discount-markdown ++++++ discount-2.2.6.tar.bz2 -> discount-2.2.7.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/discount-2.2.6/VERSION new/discount-2.2.7/VERSION --- old/discount-2.2.6/VERSION 2019-04-15 17:28:20.000000000 +0200 +++ new/discount-2.2.7/VERSION 2020-08-24 07:45:49.000000000 +0200 @@ -1 +1 @@ -2.2.6 +2.2.7 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/discount-2.2.6/mkdio.c new/discount-2.2.7/mkdio.c --- old/discount-2.2.6/mkdio.c 2019-04-15 17:28:20.000000000 +0200 +++ new/discount-2.2.7/mkdio.c 2020-08-24 07:45:49.000000000 +0200 @@ -232,7 +232,7 @@ int h4anchor = !is_flag_set(flags, MKD_URLENCODEDANCHOR); static const unsigned char hexchars[] = "0123456789abcdef"; - needed = labelformat ? (4*len) : len; + needed = (labelformat ? (4*len) : len) + 2 /* 'L', trailing null */; if ( (res = malloc(needed)) == NULL ) return NULL; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/discount-2.2.6/tools/branch.c new/discount-2.2.7/tools/branch.c --- old/discount-2.2.6/tools/branch.c 2019-04-15 17:28:20.000000000 +0200 +++ new/discount-2.2.7/tools/branch.c 2020-08-24 07:45:49.000000000 +0200 @@ -20,7 +20,7 @@ if ( fgets(line, sizeof line, pipe) != 0 ) { strtok(line, "\n"); - if ( strcmp(line, "master" ) != 0 ) + if ( strcmp(line, "v2maint" ) != 0 ) printf("\"(%s)\"", line); } pclose(pipe);
