commit bibtool for openSUSE:Factory
Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package bibtool for openSUSE:Factory checked in at 2024-01-29 22:33:59 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/bibtool (Old) and /work/SRC/openSUSE:Factory/.bibtool.new.1815 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "bibtool" Mon Jan 29 22:33:59 2024 rev:5 rq:1142593 version:2.68 Changes: -------- --- /work/SRC/openSUSE:Factory/bibtool/bibtool.changes 2019-11-06 13:54:53.024076938 +0100 +++ /work/SRC/openSUSE:Factory/.bibtool.new.1815/bibtool.changes 2024-01-29 22:34:40.789745664 +0100 @@ -1,0 +2,28 @@ +Mon Jan 29 11:01:39 UTC 2024 - jun wang <jgwang@suse.com> + +- Update to version 2.68 + * Handling of extracting by aux file improved. + * Record extended by attribute lineno.This attribute carries + the line number of the initiating @. + * The format of the error messages has been slightly + streamlined. Double spaces are avoided; two colons in one + message are avoided. + * The format of the messages of check_rule include file and + line number. + * Warning for double fields added. + * The empty output file is used to signal that the output + should be suppressed. + * The resources check.warning.rule and check.error.rule have + been introduced to allow semantic checks to be classified + as warning or error. + * The behaviour of the resource check.double has been + generalized. The requirement that double entries to be + adjacent has been dropped. This has the impact that the + processing is slightly slower. + * New resource file unique.field introduced. With this + resource it is possible to specify additional unique + constraints for fields. If different records have the same + value for one of those fields then a warning is issued. + * Static library renamed from libbib.a to libbibtool.a. + +------------------------------------------------------------------- Old: ---- BibTool-2.63.tar.gz BibTool-2.63.tar.gz.asc New: ---- BibTool-2.68.tar.gz BibTool-2.68.tar.gz.asc ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ bibtool.spec ++++++ --- /var/tmp/diff_new_pack.F8lMWo/_old 2024-01-29 22:34:41.269763037 +0100 +++ /var/tmp/diff_new_pack.F8lMWo/_new 2024-01-29 22:34:41.273763183 +0100 @@ -1,7 +1,7 @@ # # spec file for package bibtool # -# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2024 SUSE LLC # Copyright (c) 2011 Guido Berhoerster. # # All modifications and additions to the file contributed by third parties @@ -18,11 +18,11 @@ Name: bibtool -Version: 2.63 +Version: 2.68 Release: 0 Summary: Tool for Manipulating BibTeX Databases -License: GPL-1.0-or-later AND CC-BY-SA-3.0 -Url: http://www.gerd-neugebauer.de/software/TeX/BibTool/index.en.html +License: CC-BY-SA-3.0 AND GPL-1.0-or-later +URL: http://www.gerd-neugebauer.de/software/TeX/BibTool/index.en.html Source0: http://www.gerd-neugebauer.de/software/TeX/BibTool/BibTool-%{version}.tar.gz Source1: http://www.gerd-neugebauer.de/software/TeX/BibTool/BibTool-%{version}.tar.gz.asc Source2: %{name}.keyring @@ -38,7 +38,7 @@ %prep %setup -q -n BibTool -%patch1 -p1 +# %patch1 -p1 %build %configure ++++++ BibTool-2.63.tar.gz -> BibTool-2.68.tar.gz ++++++ ++++ 29841 lines of diff (skipped) ++++++ bibtool-use-system-regex.patch ++++++ --- /var/tmp/diff_new_pack.F8lMWo/_old 2024-01-29 22:34:41.469770277 +0100 +++ /var/tmp/diff_new_pack.F8lMWo/_new 2024-01-29 22:34:41.473770421 +0100 @@ -1,8 +1,7 @@ -Index: BibTool/AutoConf/makefile.in -=================================================================== ---- BibTool.orig/AutoConf/makefile.in -+++ BibTool/AutoConf/makefile.in -@@ -218,9 +218,9 @@ NON_ANSI_DEFS = @DEFS@ +diff -auNr BibTool/AutoConf/makefile.in BibTool-new/AutoConf/makefile.in +--- BibTool/AutoConf/makefile.in 2020-04-13 22:32:40.000000000 +0800 ++++ BibTool-new/AutoConf/makefile.in 2024-01-29 18:09:47.041145779 +0800 +@@ -234,9 +234,9 @@ REGEX_DIR = regex-0.12 # @@ -14,37 +13,35 @@ # ------------------------------------------------------- # Kpathsea Library support. -@@ -476,8 +476,8 @@ $(OFILES): $(MAKEFILE) +@@ -500,8 +500,8 @@ # __________________________________________________________________ # Targets from the GNU Regular Expression Library. -regex$(OBJ): $(REGEX_DIR)$(DIR_SEP)regex.c $(MAKEFILE) - $(CC) $(C_FLAGS) -I$(REGEX_DIR) -I.. $(NON_ANSI_DEFS) $(REGEX_DIR)$(DIR_SEP)regex.c $(DONT_LINK) -o $@ -+#regex$(OBJ): $(REGEX_DIR)$(DIR_SEP)regex.c $(MAKEFILE) -+# $(CC) $(C_FLAGS) -I$(REGEX_DIR) -I.. $(NON_ANSI_DEFS) $(REGEX_DIR)$(DIR_SEP)regex.c $(DONT_LINK) -o $@ ++# regex$(OBJ): $(REGEX_DIR)$(DIR_SEP)regex.c $(MAKEFILE) ++# $(CC) $(C_FLAGS) -I$(REGEX_DIR) -I.. $(NON_ANSI_DEFS) $(REGEX_DIR)$(DIR_SEP)regex.c $(DONT_LINK) -o $@ bibtcl: -@@ -511,7 +511,7 @@ Test: +@@ -535,7 +535,7 @@ (cd test; $(MAKE)) - libbib.a: $(OLIBFILES) + libbibtool.a: $(OLIBFILES) - $(AR) $@ $(OLIBFILES) regex.o + $(AR) $@ $(OLIBFILES) $(RANLIB) $@ depend: -Index: BibTool/rewrite.c -=================================================================== ---- BibTool.orig/rewrite.c -+++ BibTool/rewrite.c -@@ -22,7 +22,8 @@ - #include <bibtool/rewrite.h> +diff -auNr BibTool/rewrite.c BibTool-new/rewrite.c +--- BibTool/rewrite.c 2020-04-13 22:31:54.000000000 +0800 ++++ BibTool-new/rewrite.c 2024-01-29 18:10:26.031482831 +0800 +@@ -37,7 +37,8 @@ + #include <bibtool/symbols.h> #ifdef REGEX --#include <bibtool/regex.h> + #include <bibtool/regex.h> +#define __USE_GNU -+#include <regex.h> #endif typedef struct rULE
participants (1)
-
Source-Sync