Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package tree for openSUSE:Factory checked in at 2022-09-12 19:08:13 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/tree (Old) and /work/SRC/openSUSE:Factory/.tree.new.2083 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "tree" Mon Sep 12 19:08:13 2022 rev:27 rq:1002708 version:2.0.4 Changes: -------- --- /work/SRC/openSUSE:Factory/tree/tree.changes 2022-08-29 11:59:41.462257859 +0200 +++ /work/SRC/openSUSE:Factory/.tree.new.2083/tree.changes 2022-09-12 19:08:14.126534176 +0200 @@ -1,0 +2,6 @@ +Wed Sep 7 21:18:35 UTC 2022 - Andreas Stieger <[email protected]> + +- tree 2.0.4: + * Fix missing comma in JSON output + +------------------------------------------------------------------- Old: ---- tree-2.0.3.tgz New: ---- tree-2.0.4.tgz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ tree.spec ++++++ --- /var/tmp/diff_new_pack.1WxbAk/_old 2022-09-12 19:08:14.702535796 +0200 +++ /var/tmp/diff_new_pack.1WxbAk/_new 2022-09-12 19:08:14.706535807 +0200 @@ -17,7 +17,7 @@ Name: tree -Version: 2.0.3 +Version: 2.0.4 Release: 0 Summary: File listing as a tree License: GPL-2.0-or-later ++++++ tree-2.0.3.tgz -> tree-2.0.4.tgz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tree-2.0.3/CHANGES new/tree-2.0.4/CHANGES --- old/tree-2.0.3/CHANGES 2022-08-26 23:55:19.000000000 +0200 +++ new/tree-2.0.4/CHANGES 2022-09-06 15:31:06.000000000 +0200 @@ -1,3 +1,7 @@ +Version 2.0.4 (09/06/2022) + - Brown paper bag release: + - Fix missing comma in JSON output. (jogbear?) + Version 2.0.3 (08/26/2022) - Fix segfault when filelimit is used and tree encounters a directory it cannot enter. (Kenta Arai) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tree-2.0.3/Makefile new/tree-2.0.4/Makefile --- old/tree-2.0.3/Makefile 2022-08-26 21:14:41.000000000 +0200 +++ new/tree-2.0.4/Makefile 2022-09-06 15:31:53.000000000 +0200 @@ -21,7 +21,7 @@ CC=gcc INSTALL=install -VERSION=2.0.3 +VERSION=2.0.4 TREE_DEST=tree DESTDIR=${PREFIX}/bin MAN=tree.1 @@ -32,8 +32,8 @@ # Uncomment options below for your particular OS: # Linux defaults: -CFLAGS=-ggdb -pedantic -Wall -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -#CFLAGS+=-O3 -pedantic -Wall -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 +#CFLAGS+=-ggdb -pedantic -Wall -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 +CFLAGS+=-O3 -pedantic -Wall -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 #LDFLAGS+=-s # Uncomment for FreeBSD: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tree-2.0.3/json.c new/tree-2.0.4/json.c --- old/tree-2.0.3/json.c 2022-08-26 21:50:52.000000000 +0200 +++ new/tree-2.0.4/json.c 2022-08-30 04:44:16.000000000 +0200 @@ -132,7 +132,7 @@ int json_printfile(char *dirname, char *filename, struct _info *file, int descend) { - fprintf(outfile, "\"name\":\""); + fprintf(outfile, ",\"name\":\""); json_encode(outfile, filename); fputc('"',outfile); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tree-2.0.3/tree.c new/tree-2.0.4/tree.c --- old/tree-2.0.3/tree.c 2022-07-20 15:17:20.000000000 +0200 +++ new/tree-2.0.4/tree.c 2022-09-05 00:31:17.000000000 +0200 @@ -18,8 +18,8 @@ #include "tree.h" -char *version ="$Version: $ tree v2.0.3 (c) 1996 - 2022 by Steve Baker, Thomas Moore, Francesc Rocher, Florian Sesser, Kyosuke Tokoro $"; -char *hversion="\t\t tree v2.0.3 %s 1996 - 2022 by Steve Baker and Thomas Moore <br>\n" +char *version ="$Version: $ tree v2.0.4 (c) 1996 - 2022 by Steve Baker, Thomas Moore, Francesc Rocher, Florian Sesser, Kyosuke Tokoro $"; +char *hversion="\t\t tree v2.0.4 %s 1996 - 2022 by Steve Baker and Thomas Moore <br>\n" "\t\t HTML output hacked and copyleft %s 1998 by Francesc Rocher <br>\n" "\t\t JSON output hacked and copyleft %s 2014 by Florian Sesser <br>\n" "\t\t Charsets / OS/2 support %s 2001 by Kyosuke Tokoro\n";
