Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package ocaml-base64 for openSUSE:Factory checked in at 2025-11-12 21:15:36 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ocaml-base64 (Old) and /work/SRC/openSUSE:Factory/.ocaml-base64.new.1980 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ocaml-base64" Wed Nov 12 21:15:36 2025 rev:5 rq:1317323 version:3.5.2 Changes: -------- --- /work/SRC/openSUSE:Factory/ocaml-base64/ocaml-base64.changes 2025-04-04 18:09:01.339939394 +0200 +++ /work/SRC/openSUSE:Factory/.ocaml-base64.new.1980/ocaml-base64.changes 2025-11-12 21:16:19.226995510 +0100 @@ -1,0 +2,6 @@ +Tue Nov 11 11:11:11 UTC 2025 - [email protected] + +- Update to version 3.5.2 + see included CHANGES.md file for details + +------------------------------------------------------------------- Old: ---- ocaml-base64-3.5.1.tar.xz New: ---- ocaml-base64-3.5.2.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ocaml-base64.spec ++++++ --- /var/tmp/diff_new_pack.m6Qpp3/_old 2025-11-12 21:16:19.827020661 +0100 +++ /var/tmp/diff_new_pack.m6Qpp3/_new 2025-11-12 21:16:19.827020661 +0100 @@ -1,7 +1,7 @@ # # spec file for package ocaml-base64 # -# Copyright (c) 2023 SUSE LLC +# Copyright (c) 2025 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 @@ -30,7 +30,7 @@ %define pkg ocaml-base64 Name: %pkg%nsuffix -Version: 3.5.1 +Version: 3.5.2 Release: 0 %{?ocaml_preserve_bytecode} Summary: Base64 encoding and decoding in OCaml ++++++ _service ++++++ --- /var/tmp/diff_new_pack.m6Qpp3/_old 2025-11-12 21:16:19.875022673 +0100 +++ /var/tmp/diff_new_pack.m6Qpp3/_new 2025-11-12 21:16:19.883023008 +0100 @@ -1,7 +1,7 @@ <services> - <service name="tar_scm" mode="disabled"> + <service name="tar_scm" mode="manual"> <param name="filename">ocaml-base64</param> - <param name="revision">084346f14ed1e6706d733402dd6ff65b0dc4f718</param> + <param name="revision">edc588cb89f699e17ea13494898cca4bd7d46b8b</param> <param name="scm">git</param> <param name="submodules">disable</param> <param name="url">https://github.com/mirage/ocaml-base64.git</param> @@ -9,10 +9,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-base64-3.5.1.tar.xz -> ocaml-base64-3.5.2.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ocaml-base64-3.5.1/CHANGES.md new/ocaml-base64-3.5.2/CHANGES.md --- old/ocaml-base64-3.5.1/CHANGES.md 2023-01-24 18:12:32.000000000 +0100 +++ new/ocaml-base64-3.5.2/CHANGES.md 2025-09-19 15:09:09.000000000 +0200 @@ -1,3 +1,8 @@ +### v3.5.2 (2025-09-19) + +- Add `x-maintenance-intent` into the OPAM file (@hannesm, #54) +- Remove the support of OCaml 4.07 (@copy, #55) + ### v3.5.1 (2023-01-24) - Few fixes about benchmarks and tests (#51, @tbrk, @dinosaure) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ocaml-base64-3.5.1/base64.opam new/ocaml-base64-3.5.2/base64.opam --- old/ocaml-base64-3.5.1/base64.opam 2023-01-24 18:12:32.000000000 +0100 +++ new/ocaml-base64-3.5.2/base64.opam 2025-09-19 15:09:09.000000000 +0200 @@ -15,8 +15,8 @@ representation. It is specified in RFC 4648. """ depends: [ - "ocaml" {>= "4.03.0"} - "dune" {>= "2.0"} + "ocaml" {>= "4.07.0"} + "dune" {>= "2.3"} "fmt" {with-test & >= "0.8.7"} "bos" {with-test} "rresult" {with-test} @@ -27,3 +27,4 @@ ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test} ] +x-maintenance-intent: [ "(latest)" ] diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ocaml-base64-3.5.1/src/base64.ml new/ocaml-base64-3.5.2/src/base64.ml --- old/ocaml-base64-3.5.1/src/base64.ml 2023-01-24 18:12:32.000000000 +0100 +++ new/ocaml-base64-3.5.2/src/base64.ml 2025-09-19 15:09:09.000000000 +0200 @@ -32,7 +32,8 @@ let unsafe_set_uint8 t off v = Bytes.unsafe_set t off (Char.chr v) -let unsafe_set_uint16 = Unsafe.unsafe_set_uint16 +external unsafe_set_uint16 : bytes -> int -> int -> unit = "%caml_bytes_set16u" + [@@noalloc] external unsafe_get_uint16 : string -> int -> int = "%caml_string_get16u" [@@noalloc] diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ocaml-base64-3.5.1/src/dune new/ocaml-base64-3.5.2/src/dune --- old/ocaml-base64-3.5.1/src/dune 2023-01-24 18:12:32.000000000 +0100 +++ new/ocaml-base64-3.5.2/src/dune 2025-09-19 15:09:09.000000000 +0200 @@ -1,11 +1,8 @@ (library (name base64) - (modules unsafe base64) + (modules base64) (public_name base64)) -(rule - (copy %{read:../config/which-unsafe-file} unsafe.ml)) - (library (name base64_rfc2045) (modules base64_rfc2045) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ocaml-base64-3.5.1/src/unsafe_pre407.ml new/ocaml-base64-3.5.2/src/unsafe_pre407.ml --- old/ocaml-base64-3.5.1/src/unsafe_pre407.ml 2023-01-24 18:12:32.000000000 +0100 +++ new/ocaml-base64-3.5.2/src/unsafe_pre407.ml 1970-01-01 01:00:00.000000000 +0100 @@ -1,2 +0,0 @@ -external unsafe_set_uint16 : bytes -> int -> int -> unit = "%caml_string_set16u" - [@@noalloc] diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ocaml-base64-3.5.1/src/unsafe_stable.ml new/ocaml-base64-3.5.2/src/unsafe_stable.ml --- old/ocaml-base64-3.5.1/src/unsafe_stable.ml 2023-01-24 18:12:32.000000000 +0100 +++ new/ocaml-base64-3.5.2/src/unsafe_stable.ml 1970-01-01 01:00:00.000000000 +0100 @@ -1,2 +0,0 @@ -external unsafe_set_uint16 : bytes -> int -> int -> unit = "%caml_bytes_set16u" - [@@noalloc]
