Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package ocaml-qtest for openSUSE:Factory checked in at 2021-04-29 01:37:00 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ocaml-qtest (Old) and /work/SRC/openSUSE:Factory/.ocaml-qtest.new.12324 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ocaml-qtest" Thu Apr 29 01:37:00 2021 rev:8 rq:871503 version:2.11.2 Changes: -------- --- /work/SRC/openSUSE:Factory/ocaml-qtest/ocaml-qtest.changes 2020-08-24 15:08:37.346555447 +0200 +++ /work/SRC/openSUSE:Factory/.ocaml-qtest.new.12324/ocaml-qtest.changes 2021-04-29 01:37:29.506501165 +0200 @@ -1,0 +2,6 @@ +Thu Jan 21 21:21:21 UTC 2021 - [email protected] + +- Update to version 2.11.2 + no changelog provided by upstream + +------------------------------------------------------------------- Old: ---- ocaml-qtest-2.11.tar.xz New: ---- ocaml-qtest-2.11.2.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ocaml-qtest.spec ++++++ --- /var/tmp/diff_new_pack.DBh3aW/_old 2021-04-29 01:37:30.666502809 +0200 +++ /var/tmp/diff_new_pack.DBh3aW/_new 2021-04-29 01:37:30.670502815 +0200 @@ -1,7 +1,7 @@ # # spec file for package ocaml-qtest # -# Copyright (c) 2020 SUSE LLC +# Copyright (c) 2021 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,7 +17,7 @@ Name: ocaml-qtest -Version: 2.11 +Version: 2.11.2 Release: 0 %{?ocaml_preserve_bytecode} Summary: Inline (Unit) Tests for OCaml @@ -27,9 +27,10 @@ Source0: %{name}-%{version}.tar.xz BuildRequires: ocaml BuildRequires: ocaml-dune -BuildRequires: ocaml-rpm-macros >= 20200514 +BuildRequires: ocaml-rpm-macros >= 20210121 BuildRequires: ocamlfind(bytes) BuildRequires: ocamlfind(qcheck) +BuildRequires: ocamlfind(ounit2) %description qtest extracts inline unit tests written using a special syntax in ++++++ _service ++++++ --- /var/tmp/diff_new_pack.DBh3aW/_old 2021-04-29 01:37:30.694502849 +0200 +++ /var/tmp/diff_new_pack.DBh3aW/_new 2021-04-29 01:37:30.698502854 +0200 @@ -1,7 +1,7 @@ <services> <service name="tar_scm" mode="disabled"> <param name="filename">ocaml-qtest</param> - <param name="revision">5cd5d8bfaefb3393c2247001fc67d9c78f2ba483</param> + <param name="revision">aa9c27211e05ebff1a259750f092caef8e7fbe12</param> <param name="scm">git</param> <param name="submodules">disable</param> <param name="url">https://github.com/vincent-hugot/qtest.git</param> ++++++ ocaml-qtest-2.11.tar.xz -> ocaml-qtest-2.11.2.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ocaml-qtest-2.11/qtest.opam new/ocaml-qtest-2.11.2/qtest.opam --- old/ocaml-qtest-2.11/qtest.opam 2020-05-12 15:58:36.000000000 +0200 +++ new/ocaml-qtest-2.11.2/qtest.opam 2021-02-12 03:37:09.000000000 +0100 @@ -1,6 +1,6 @@ opam-version: "2.0" maintainer: "Simon Cruanes <[email protected]" -version: "2.11" +version: "2.11.2" authors: [ "Vincent Hugot <[email protected]>" "Simon Cruanes <[email protected]" @@ -18,7 +18,7 @@ "base-bytes" "ounit2" "dune" { >= "1.1" } - "qcheck" { >= "0.5" } + "qcheck" { >= "0.14" } "ocaml" { >= "4.03.0" } ] tags: [ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ocaml-qtest-2.11/src/dune new/ocaml-qtest-2.11.2/src/dune --- old/ocaml-qtest-2.11/src/dune 2020-05-12 15:58:36.000000000 +0200 +++ new/ocaml-qtest-2.11.2/src/dune 2021-02-12 03:37:09.000000000 +0100 @@ -15,4 +15,4 @@ (modules) (inline_tests.backend (generate_runner (run qtest extract --quiet %{impl-files} %{intf-files})) - (runner_libraries qcheck oUnit bytes))) + (runner_libraries qcheck ounit2 bytes))) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ocaml-qtest-2.11/src/qtest_bin.mll new/ocaml-qtest-2.11.2/src/qtest_bin.mll --- old/ocaml-qtest-2.11/src/qtest_bin.mll 2020-05-12 15:58:36.000000000 +0200 +++ new/ocaml-qtest-2.11.2/src/qtest_bin.mll 2021-02-12 03:37:09.000000000 +0100 @@ -104,9 +104,9 @@ and glo_register m = register @@ Open m in List.iter glo_register modules } | "(*${*)" | "(*$begin:inject*)" (* copy injection *) - { lexinjectcp buffy lexbuf } + { lexinjectcp (info lexbuf) buffy lexbuf } | "(*$inject" (* pure injection *) - { lexinjectmv buffy lexbuf } + { lexinjectmv (info lexbuf) buffy lexbuf } (* error cases *) (***************) | "(*$" { raise @@ Invalid_pragma (snip lexbuf) } @@ -162,23 +162,23 @@ let s = B.contents b in B.clear b; [{ln; code=s}]} (** body of an injection pragma: copy *) -and lexinjectcp b = parse +and lexinjectcp info b = parse | _ as c { if c = '\n' then eol lexbuf; - B.add_char b c; lexinjectcp b lexbuf } + B.add_char b c; lexinjectcp info b lexbuf } | "(*$}*)" | "(*$end:inject*)" { let code = B.contents b in B.clear b; - register @@ Inject (info lexbuf,code) } + register @@ Inject (info,code) } (* TODO: eliminate comments *) (** body of an injection pragma: move *) -and lexinjectmv b = parse +and lexinjectmv info b = parse | _ as c { if c = '\n' then eol lexbuf; - B.add_char b c; lexinjectmv b lexbuf } + B.add_char b c; lexinjectmv info b lexbuf } | "*)" { (* note: the 2 spaces are for column numbers reporting *) let code = " " ^ B.contents b in B.clear b; - register @@ Inject (info lexbuf,code) } + register @@ Inject (info,code) } (** prepare to parse test header *)
