Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package ocaml-rpm-macros for openSUSE:Factory checked in at 2021-02-15 23:10:24 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ocaml-rpm-macros (Old) and /work/SRC/openSUSE:Factory/.ocaml-rpm-macros.new.28504 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ocaml-rpm-macros" Mon Feb 15 23:10:24 2021 rev:12 rq:870497 version:20210209 Changes: -------- --- /work/SRC/openSUSE:Factory/ocaml-rpm-macros/ocaml-rpm-macros.changes 2021-02-01 14:41:46.980674613 +0100 +++ /work/SRC/openSUSE:Factory/.ocaml-rpm-macros.new.28504/ocaml-rpm-macros.changes 2021-02-15 23:10:25.510869311 +0100 @@ -1,0 +2,5 @@ +Tue Feb 9 09:09:09 UTC 2021 - oher...@suse.de + +- Fix regex in file list generator to really match dot and extension + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ocaml-rpm-macros.spec ++++++ --- /var/tmp/diff_new_pack.9XMx08/_old 2021-02-15 23:10:26.102870196 +0100 +++ /var/tmp/diff_new_pack.9XMx08/_new 2021-02-15 23:10:26.106870201 +0100 @@ -17,7 +17,7 @@ Name: ocaml-rpm-macros -Version: 20210121 +Version: 20210209 Release: 0 Summary: RPM macros for building OCaml source packages License: GPL-2.0-only @@ -229,79 +229,79 @@ files_devel($0)\ }\ # stub ELF library\ - /\\/[^/]+\.so$/{\ + /\\/[^/]+\\.so$/{\ files_ldconf($0)\ }\ # stub ELF library\ - /\\/[^/]+\.so.owner$/{\ + /\\/[^/]+\\.so.owner$/{\ files_ldconf($0)\ }\ # ELF archive with object files\ - /\\/[^/]+\.a$/{\ + /\\/[^/]+\\.a$/{\ files_devel($0)\ }\ # OCaml legacy source code annotations, produced via -annot\ - /\\/[^/]+\.annot$/{\ + /\\/[^/]+\\.annot$/{\ files_devel($0)\ }\ # OCaml library file with bytecode\ - /\\/[^/]+\.cma$/{\ + /\\/[^/]+\\.cma$/{\ files_devel($0)\ }\ # OCaml compiled header file\ - /\\/[^/]+\.cmi$/{\ + /\\/[^/]+\\.cmi$/{\ files_devel($0)\ }\ # OCaml object file with bytecode\ - /\\/[^/]+\.cmo$/{\ + /\\/[^/]+\\.cmo$/{\ files_devel($0)\ }\ # OCaml source code annotations, produced via -bin-annot from source files\ - /\\/[^/]+\.cmt$/{\ + /\\/[^/]+\\.cmt$/{\ files_devel($0)\ }\ # OCaml source code annotations, produced via -bin-annot from header files\ - /\\/[^/]+\.cmti$/{\ + /\\/[^/]+\\.cmti$/{\ files_devel($0)\ }\ # OCaml object file with native code\ - /\\/[^/]+\.cmx$/{\ + /\\/[^/]+\\.cmx$/{\ files_devel($0)\ }\ # OCaml library file with native code\ - /\\/[^/]+\.cmxa$/{\ + /\\/[^/]+\\.cmxa$/{\ files_devel($0)\ }\ # ELF shared library with native code\ - /\\/[^/]+\.cmxs$/{\ + /\\/[^/]+\\.cmxs$/{\ files_devel($0)\ }\ # Some helper binary\ - /\\/[^/]+\.exe$/{\ + /\\/[^/]+\\.exe$/{\ files_devel($0)\ }\ # C header\ - /\\/[^/]+\.h$/{\ + /\\/[^/]+\\.h$/{\ files_devel($0)\ }\ #\ - /\\/[^/]+\.js$/{\ + /\\/[^/]+\\.js$/{\ files_devel($0)\ }\ # OCaml source code, source file\ - /\\/[^/]+\.ml$/{\ + /\\/[^/]+\\.ml$/{\ files_devel($0)\ }\ # OCaml source code, header file\ - /\\/[^/]+\.mli$/{\ + /\\/[^/]+\\.mli$/{\ files_devel($0)\ }\ # ELF object file\ - /\\/[^/]+\.o$/{\ + /\\/[^/]+\\.o$/{\ files_devel($0)\ }\ #\ - /\\/[^/]+\.sml$/{\ + /\\/[^/]+\\.sml$/{\ files_devel($0)\ }\ # generated by dune\ @@ -313,7 +313,7 @@ files_devel($0)\ }\ # Some Coq files\ - /\\/[^/]+\.v$/{\ + /\\/[^/]+\\.v$/{\ files_devel($0)\ }\ #\