Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package ocaml-bos for openSUSE:Factory checked in at 2026-07-17 01:37:29 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ocaml-bos (Old) and /work/SRC/openSUSE:Factory/.ocaml-bos.new.24530 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ocaml-bos" Fri Jul 17 01:37:29 2026 rev:2 rq:1365530 version:0.3.0 Changes: -------- --- /work/SRC/openSUSE:Factory/ocaml-bos/ocaml-bos.changes 2023-04-04 21:26:17.927195228 +0200 +++ /work/SRC/openSUSE:Factory/.ocaml-bos.new.24530/ocaml-bos.changes 2026-07-17 01:38:57.376079439 +0200 @@ -1,0 +2,6 @@ +Tue Jul 7 07:07:07 UTC 2026 - [email protected] + +- Update to version 0.3.0 + see included CHANGES.md file for details + +------------------------------------------------------------------- Old: ---- ocaml-bos-0.2.1.tar.xz New: ---- ocaml-bos-0.3.0.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ocaml-bos.spec ++++++ --- /var/tmp/diff_new_pack.DDFfnl/_old 2026-07-17 01:38:58.288110264 +0200 +++ /var/tmp/diff_new_pack.DDFfnl/_new 2026-07-17 01:38:58.292110399 +0200 @@ -1,7 +1,7 @@ # # spec file for package ocaml-bos # -# Copyright (c) 2023 SUSE LLC +# Copyright (c) 2026 SUSE LLC and contributors # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,25 +17,24 @@ Name: ocaml-bos -Version: 0.2.1 +Version: 0.3.0 Release: 0 %{?ocaml_preserve_bytecode} Summary: Basic OS interaction for OCaml License: ISC -Group: Development/Languages/OCaml -URL: https://opam.ocaml.org/packages/bos +ExclusiveArch: aarch64 ppc64le riscv64 s390x x86_64 +URL: https://opam.ocaml.org/packages/bos/ Source0: %name-%version.tar.xz Patch0: ocaml-bos.patch -BuildRequires: ocaml(ocaml_base_version) >= 4.08 +BuildRequires: ocaml(ocaml_base_version) >= 4.14 BuildRequires: ocaml-dune -BuildRequires: ocaml-rpm-macros >= 20230101 +BuildRequires: ocaml-rpm-macros >= 20260707 BuildRequires: ocamlfind(astring) BuildRequires: ocamlfind(compiler-libs) BuildRequires: ocamlfind(fmt) BuildRequires: ocamlfind(fpath) BuildRequires: ocamlfind(logs) BuildRequires: ocamlfind(rresult) -BuildRequires: ocamlfind(unix) %description Bos provides support for basic and robust interaction with the operating system @@ -44,8 +43,7 @@ %package devel Summary: Development files for %name -Group: Development/Languages/OCaml -Requires: %name = %version +Requires: %name = %version-%release %description devel The %name-devel package contains libraries and signature files for ++++++ _service ++++++ --- /var/tmp/diff_new_pack.DDFfnl/_old 2026-07-17 01:38:58.332111751 +0200 +++ /var/tmp/diff_new_pack.DDFfnl/_new 2026-07-17 01:38:58.340112021 +0200 @@ -1,7 +1,7 @@ <services> - <service name="tar_scm" mode="disabled"> + <service name="tar_scm" mode="manual"> <param name="filename">ocaml-bos</param> - <param name="revision">377c485eeae6afa3624bb0cbc8be13de94cfecb4</param> + <param name="revision">c0ff80363830eec4b680557165462678641d6e24</param> <param name="scm">git</param> <param name="submodules">disable</param> <param name="url">https://github.com/dbuenzli/bos.git</param> @@ -10,10 +10,10 @@ <param name="versionrewrite-pattern">v(.*)</param> <param name="versionrewrite-replacement">\1</param> </service> - <service name="recompress" mode="disabled"> + <service name="recompress" mode="manual"> <param name="file">*.tar</param> <param name="compression">xz</param> </service> - <service name="set_version" mode="disabled"/> + <service name="set_version" mode="manual"/> </services> ++++++ ocaml-bos-0.2.1.tar.xz -> ocaml-bos-0.3.0.tar.xz ++++++ ++++ 2507 lines of diff (skipped) ++++++ ocaml-bos.patch ++++++ --- /var/tmp/diff_new_pack.DDFfnl/_old 2026-07-17 01:38:58.492117159 +0200 +++ /var/tmp/diff_new_pack.DDFfnl/_new 2026-07-17 01:38:58.500117429 +0200 @@ -1,3 +1,10 @@ +--- + dune-project | 2 ++ + src/dune | 8 ++++++++ + src/setup/dune | 6 ++++++ + src/top/dune | 7 +++++++ + 4 files changed, 23 insertions(+) + --- /dev/null +++ b/dune-project @@ -0,0 +1,2 @@ @@ -5,16 +12,27 @@ +(name bos) --- /dev/null +++ b/src/dune -@@ -0,0 +1,23 @@ +@@ -0,0 +1,8 @@ +(library + (name bos) + (public_name bos) -+ (libraries rresult astring fpath fmt unix logs) ++ (libraries astring fpath fmt unix logs) + (modules bos bos_base bos_cmd bos_log bos_os_arg bos_os_cmd bos_os_dir + bos_os_env bos_os_file bos_os_path bos_os_tmp bos_os_u bos_pat) + (flags :standard -w -6-27-33-39) + (wrapped false)) -+ +--- /dev/null ++++ b/src/setup/dune +@@ -0,0 +1,6 @@ ++(library ++ (name bos_setup) ++ (public_name bos.setup) ++ (libraries rresult fmt.tty logs.fmt bos) ++ (modules bos_setup) ++ (wrapped false)) +--- /dev/null ++++ b/src/top/dune +@@ -0,0 +1,7 @@ +(library + (name bos_top) + (public_name bos.top) @@ -22,11 +40,4 @@ + logs.top bos) + (modules bos_top) + (wrapped false)) -+ -+(library -+ (name bos_setup) -+ (public_name bos.setup) -+ (libraries fmt.tty logs.fmt bos) -+ (modules bos_setup) -+ (wrapped false))
