Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package opam-file-format for openSUSE:Factory checked in at 2023-05-23 14:53:46 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/opam-file-format (Old) and /work/SRC/openSUSE:Factory/.opam-file-format.new.1533 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "opam-file-format" Tue May 23 14:53:46 2023 rev:7 rq:1086706 version:2.1.6 Changes: -------- --- /work/SRC/openSUSE:Factory/opam-file-format/opam-file-format.changes 2023-01-05 15:01:21.257178861 +0100 +++ /work/SRC/openSUSE:Factory/.opam-file-format.new.1533/opam-file-format.changes 2023-05-23 14:54:07.326333573 +0200 @@ -1,0 +2,6 @@ +Fri May 5 05:05:05 UTC 2023 - oher...@suse.de + +- Update to version 2.1.6 + see included CHANGES for details + +------------------------------------------------------------------- Old: ---- opam-file-format-2.1.5.tar.xz New: ---- opam-file-format-2.1.6.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ opam-file-format.spec ++++++ --- /var/tmp/diff_new_pack.ovrNqX/_old 2023-05-23 14:54:07.750336082 +0200 +++ /var/tmp/diff_new_pack.ovrNqX/_new 2023-05-23 14:54:07.754336106 +0200 @@ -29,7 +29,7 @@ %define pkg opam-file-format Name: %pkg%nsuffix -Version: 2.1.5 +Version: 2.1.6 Release: 0 %{?ocaml_preserve_bytecode} Summary: Parser and printer for the opam file syntax ++++++ _service ++++++ --- /var/tmp/diff_new_pack.ovrNqX/_old 2023-05-23 14:54:07.814336460 +0200 +++ /var/tmp/diff_new_pack.ovrNqX/_new 2023-05-23 14:54:07.818336485 +0200 @@ -1,6 +1,6 @@ <services> <service mode="disabled" name="tar_scm"> - <param name="revision">86082d1dfdbd226002d9aa93c581cba355da6ed6</param> + <param name="revision">303ab85afb67c7c22ea548b87241b08616b9f6f2</param> <param name="scm">git</param> <param name="submodules">disable</param> <param name="url">https://github.com/ocaml/opam-file-format.git</param> ++++++ opam-file-format-2.1.5.tar.xz -> opam-file-format-2.1.6.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/opam-file-format-2.1.5/CHANGES new/opam-file-format-2.1.6/CHANGES --- old/opam-file-format-2.1.5/CHANGES 2022-12-14 20:08:48.000000000 +0100 +++ new/opam-file-format-2.1.6/CHANGES 2023-03-20 22:51:07.000000000 +0100 @@ -1,3 +1,7 @@ +2.1.6 [20 March 2023] +------------------------ +* Remove deprecated usage of `Printf.ksprintf`, ocaml 5 compatibility + 2.1.5 [14 December 2022] ------------------------ * Fix extra lines on non empty headers [#49 @hhugo] diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/opam-file-format-2.1.5/opam-file-format.opam new/opam-file-format-2.1.6/opam-file-format.opam --- old/opam-file-format-2.1.5/opam-file-format.opam 2022-12-14 20:08:48.000000000 +0100 +++ new/opam-file-format-2.1.6/opam-file-format.opam 2023-03-20 22:51:07.000000000 +0100 @@ -1,5 +1,5 @@ opam-version: "2.0" -version: "2.1.5" +version: "2.1.6" synopsis: "Parser and printer for the opam file syntax" maintainer: "Louis Gesbert <louis.gesb...@ocamlpro.com>" authors: "Louis Gesbert <louis.gesb...@ocamlpro.com>" @@ -14,7 +14,7 @@ ] install: [make "install" "PREFIX=%{prefix}%"] {!dune:installed} depends: [ - "ocaml" + "ocaml" {>= "3.09.0"} "alcotest" {with-test} ] depopts: [ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/opam-file-format-2.1.5/src/opamLexer.mll new/opam-file-format-2.1.6/src/opamLexer.mll --- old/opam-file-format-2.1.5/src/opamLexer.mll 2022-12-14 20:08:48.000000000 +0100 +++ new/opam-file-format-2.1.6/src/opamLexer.mll 2023-03-20 22:51:07.000000000 +0100 @@ -18,7 +18,7 @@ let newline lexbuf = Lexing.new_line lexbuf let error fmt = - Printf.kprintf (fun msg -> raise (Error msg)) fmt + Printf.ksprintf (fun msg -> raise (Error msg)) fmt let relop = function | "=" -> `Eq diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/opam-file-format-2.1.5/tests/legacy/Makefile new/opam-file-format-2.1.6/tests/legacy/Makefile --- old/opam-file-format-2.1.5/tests/legacy/Makefile 2022-12-14 20:08:48.000000000 +0100 +++ new/opam-file-format-2.1.6/tests/legacy/Makefile 2023-03-20 22:51:07.000000000 +0100 @@ -1,5 +1,9 @@ .PHONY: test -test: legacy.byte legacy.native +test:: legacy.byte + +ifneq "$(shell ocamlopt -vnum 2>/dev/null)" "" +test:: legacy.native +endif src/%: $(MAKE) -C src $*