Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package ocaml-cppo for openSUSE:Factory checked in at 2021-09-29 20:18:39 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ocaml-cppo (Old) and /work/SRC/openSUSE:Factory/.ocaml-cppo.new.1899 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ocaml-cppo" Wed Sep 29 20:18:39 2021 rev:10 rq:921540 version:1.6.8 Changes: -------- --- /work/SRC/openSUSE:Factory/ocaml-cppo/ocaml-cppo.changes 2021-04-29 01:37:10.690474495 +0200 +++ /work/SRC/openSUSE:Factory/.ocaml-cppo.new.1899/ocaml-cppo.changes 2021-09-29 20:19:46.091062750 +0200 @@ -1,0 +2,6 @@ +Sat Sep 11 12:34:56 UTC 2021 - [email protected] + +- Update to version 1.6.8 + Allow empty patch version + +------------------------------------------------------------------- Old: ---- ocaml-cppo-1.6.7.tar.xz New: ---- ocaml-cppo-1.6.8.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ocaml-cppo.spec ++++++ --- /var/tmp/diff_new_pack.nCx4en/_old 2021-09-29 20:19:46.503063348 +0200 +++ /var/tmp/diff_new_pack.nCx4en/_new 2021-09-29 20:19:46.507063354 +0200 @@ -18,7 +18,7 @@ Name: ocaml-cppo -Version: 1.6.7 +Version: 1.6.8 Release: 0 %{?ocaml_preserve_bytecode} Summary: The C preprocessor written in OCaml @@ -28,7 +28,7 @@ Source: %{name}-%{version}.tar.xz BuildRequires: ocaml BuildRequires: ocaml-dune -BuildRequires: ocaml-rpm-macros >= 20210121 +BuildRequires: ocaml-rpm-macros >= 20210911 BuildRequires: ocamlfind(str) BuildRequires: ocamlfind(unix) ++++++ _service ++++++ --- /var/tmp/diff_new_pack.nCx4en/_old 2021-09-29 20:19:46.535063394 +0200 +++ /var/tmp/diff_new_pack.nCx4en/_new 2021-09-29 20:19:46.539063400 +0200 @@ -1,7 +1,7 @@ <services> <service name="tar_scm" mode="disabled"> <param name="filename">ocaml-cppo</param> - <param name="revision">7d217864a5fdc4551699e248137a2f8b719d2078</param> + <param name="revision">94b2d0f21fcda5473773518a12afbcff45a52990</param> <param name="scm">git</param> <param name="submodules">disable</param> <param name="url">https://github.com/ocaml-community/cppo.git</param> ++++++ ocaml-cppo-1.6.7.tar.xz -> ocaml-cppo-1.6.8.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ocaml-cppo-1.6.7/.gitignore new/ocaml-cppo-1.6.8/.gitignore --- old/ocaml-cppo-1.6.7/.gitignore 1970-01-01 01:00:00.000000000 +0100 +++ new/ocaml-cppo-1.6.8/.gitignore 2021-09-15 10:24:42.000000000 +0200 @@ -0,0 +1,5 @@ +*~ +_build +.merlin +*.install +.*.swp diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ocaml-cppo-1.6.7/src/cppo_main.ml new/ocaml-cppo-1.6.8/src/cppo_main.ml --- old/ocaml-cppo-1.6.7/src/cppo_main.ml 2020-12-21 17:28:42.000000000 +0100 +++ new/ocaml-cppo-1.6.8/src/cppo_main.ml 2021-09-15 10:24:42.000000000 +0200 @@ -17,7 +17,7 @@ let semver_re = Str.regexp "\ \\([0-9]+\\)\ \\.\\([0-9]+\\)\ -\\.\\([0-9]+\\)\ +\\(\\.\\([0-9]+\\)\\)?\ \\([~-]\\([^+]*\\)\\)?\ \\(\\+\\(.*\\)\\)?\ \r?$" @@ -28,9 +28,9 @@ else let major = Str.matched_group 1 s in let minor = Str.matched_group 2 s in - let patch = Str.matched_group 3 s in - let prerelease = try Some (Str.matched_group 5 s) with Not_found -> None in - let build = try Some (Str.matched_group 7 s) with Not_found -> None in + let patch = try (Str.matched_group 4 s) with Not_found -> "0" in + let prerelease = try Some (Str.matched_group 6 s) with Not_found -> None in + let build = try Some (Str.matched_group 8 s) with Not_found -> None in Some (major, minor, patch, prerelease, build) let define var s = diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ocaml-cppo-1.6.7/test/dune new/ocaml-cppo-1.6.8/test/dune --- old/ocaml-cppo-1.6.7/test/dune 2020-12-21 17:28:42.000000000 +0100 +++ new/ocaml-cppo-1.6.8/test/dune 2021-09-15 10:24:42.000000000 +0200 @@ -70,7 +70,7 @@ (action (with-stdout-to %{targets} - (run %{bin:cppo} -V X:123.05.2-alpha.1+foo-2.1 %{<})))) + (run %{bin:cppo} -V X:123.05.2-alpha.1+foo-2.1 -V COQ:8.13+beta1 %{<})))) (alias (name runtest) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ocaml-cppo-1.6.7/test/version.cppo new/ocaml-cppo-1.6.8/test/version.cppo --- old/ocaml-cppo-1.6.7/test/version.cppo 2020-12-21 17:28:42.000000000 +0100 +++ new/ocaml-cppo-1.6.8/test/version.cppo 2021-09-15 10:24:42.000000000 +0200 @@ -28,3 +28,5 @@ #else #error "" #endif + +Coq: COQ_VERSION
