Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package ocaml-ocamlbuild for
openSUSE:Factory checked in at 2023-12-28 23:03:23
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ocaml-ocamlbuild (Old)
and /work/SRC/openSUSE:Factory/.ocaml-ocamlbuild.new.28375 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ocaml-ocamlbuild"
Thu Dec 28 23:03:23 2023 rev:9 rq:1135461 version:0.14.3
Changes:
--------
--- /work/SRC/openSUSE:Factory/ocaml-ocamlbuild/ocaml-ocamlbuild.changes
2023-01-05 15:01:15.057146180 +0100
+++
/work/SRC/openSUSE:Factory/.ocaml-ocamlbuild.new.28375/ocaml-ocamlbuild.changes
2023-12-28 23:05:00.938231985 +0100
@@ -1,0 +2,6 @@
+Tue Dec 12 12:12:12 UTC 2023 - [email protected]
+
+- Update to version 0.14.3
+ see included Changes file for details
+
+-------------------------------------------------------------------
Old:
----
ocaml-ocamlbuild-0.14.2.tar.xz
New:
----
ocaml-ocamlbuild-0.14.3.tar.xz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ ocaml-ocamlbuild.spec ++++++
--- /var/tmp/diff_new_pack.zEbErX/_old 2023-12-28 23:05:01.410249237 +0100
+++ /var/tmp/diff_new_pack.zEbErX/_new 2023-12-28 23:05:01.414249383 +0100
@@ -17,7 +17,7 @@
Name: ocaml-ocamlbuild
-Version: 0.14.2
+Version: 0.14.3
Release: 0
%{?ocaml_preserve_bytecode}
Summary: Generic build tool for building OCaml library and programs
@@ -26,7 +26,7 @@
URL: https://opam.ocaml.org/packages/ocamlbuild
Source: %name-%version.tar.xz
BuildRequires: ocaml
-BuildRequires: ocaml-rpm-macros >= 20230101
+BuildRequires: ocaml-rpm-macros >= 20231101
Requires: %name-devel = %version
%description
++++++ _service ++++++
--- /var/tmp/diff_new_pack.zEbErX/_old 2023-12-28 23:05:01.442250406 +0100
+++ /var/tmp/diff_new_pack.zEbErX/_new 2023-12-28 23:05:01.442250406 +0100
@@ -1,7 +1,7 @@
<services>
<service name="tar_scm" mode="disabled">
<param name="filename">ocaml-ocamlbuild</param>
- <param name="revision">8b6d4ff177b964eda3a9bdb313f6a3143c731a62</param>
+ <param name="revision">25359508dc521e741b88b883bce88191c70f8037</param>
<param name="scm">git</param>
<param name="submodules">disable</param>
<param name="url">https://github.com/ocaml/ocamlbuild.git</param>
++++++ ocaml-ocamlbuild-0.14.2.tar.xz -> ocaml-ocamlbuild-0.14.3.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/ocaml-ocamlbuild-0.14.2/Changes
new/ocaml-ocamlbuild-0.14.3/Changes
--- old/ocaml-ocamlbuild-0.14.2/Changes 2022-09-28 16:40:09.000000000 +0200
+++ new/ocaml-ocamlbuild-0.14.3/Changes 2023-12-20 17:40:26.000000000 +0100
@@ -11,6 +11,14 @@
Changes breaking compatibility are marked with a "* " bullet instead
of the usual "- ".
+0.14.3 (20 Dec 2023):
+---------------------
+
+- Add OCaml 5.2 support
+ (#325 by Hugo Heuzard)
+- Quote Makefile arguments to allow spaces in paths, especially on Windows.
+ Documented in #321 (#324 by Jonah Beckford)
+
0.14.2 (28 Sep 2022):
---------------------
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/ocaml-ocamlbuild-0.14.2/META
new/ocaml-ocamlbuild-0.14.3/META
--- old/ocaml-ocamlbuild-0.14.2/META 2022-09-28 16:40:09.000000000 +0200
+++ new/ocaml-ocamlbuild-0.14.3/META 2023-12-20 17:40:26.000000000 +0100
@@ -1,6 +1,6 @@
# Specification for the "ocamlbuild" library
requires = "unix"
-version = "0.14.2"
+version = "0.14.3"
description = "ocamlbuild support library"
archive(byte) = "ocamlbuildlib.cma"
archive(native) = "ocamlbuildlib.cmxa"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/ocaml-ocamlbuild-0.14.2/Makefile
new/ocaml-ocamlbuild-0.14.3/Makefile
--- old/ocaml-ocamlbuild-0.14.2/Makefile 2022-09-28 16:40:09.000000000
+0200
+++ new/ocaml-ocamlbuild-0.14.3/Makefile 2023-12-20 17:40:26.000000000
+0100
@@ -249,16 +249,16 @@
# - producing an OPAM .install file and not actually installing anything
install-bin-byte:
- mkdir -p $(INSTALL_BINDIR)
- $(CP) ocamlbuild.byte $(INSTALL_BINDIR)/ocamlbuild.byte$(EXE)
+ mkdir -p "$(INSTALL_BINDIR)"
+ $(CP) ocamlbuild.byte "$(INSTALL_BINDIR)/ocamlbuild.byte$(EXE)"
ifneq ($(OCAML_NATIVE), true)
- $(CP) ocamlbuild.byte $(INSTALL_BINDIR)/ocamlbuild$(EXE)
+ $(CP) ocamlbuild.byte "$(INSTALL_BINDIR)/ocamlbuild$(EXE)"
endif
install-bin-native:
- mkdir -p $(INSTALL_BINDIR)
- $(CP) ocamlbuild.native $(INSTALL_BINDIR)/ocamlbuild$(EXE)
- $(CP) ocamlbuild.native $(INSTALL_BINDIR)/ocamlbuild.native$(EXE)
+ mkdir -p "$(INSTALL_BINDIR)"
+ $(CP) ocamlbuild.native "$(INSTALL_BINDIR)/ocamlbuild$(EXE)"
+ $(CP) ocamlbuild.native "$(INSTALL_BINDIR)/ocamlbuild.native$(EXE)"
ifeq ($(OCAML_NATIVE), true)
install-bin: install-bin-byte install-bin-native
@@ -279,8 +279,8 @@
echo >> ocamlbuild.install
install-lib-basics:
- mkdir -p $(INSTALL_LIBDIR)/ocamlbuild
- $(CP) META $(INSTALL_SIGNATURES) $(INSTALL_LIBDIR)/ocamlbuild
+ mkdir -p "$(INSTALL_LIBDIR)/ocamlbuild"
+ $(CP) META $(INSTALL_SIGNATURES) "$(INSTALL_LIBDIR)/ocamlbuild"
install-lib-basics-opam:
echo ' "ocamlbuild.opam" {"opam"}' >> ocamlbuild.install
@@ -290,8 +290,8 @@
done
install-lib-byte:
- mkdir -p $(INSTALL_LIBDIR)/ocamlbuild
- $(CP) $(INSTALL_LIB) $(INSTALL_LIBDIR)/ocamlbuild
+ mkdir -p "$(INSTALL_LIBDIR)/ocamlbuild"
+ $(CP) $(INSTALL_LIB) "$(INSTALL_LIBDIR)/ocamlbuild"
install-lib-byte-opam:
for lib in $(INSTALL_LIB); do \
@@ -299,8 +299,8 @@
done
install-lib-native:
- mkdir -p $(INSTALL_LIBDIR)/ocamlbuild
- $(CP) $(INSTALL_LIB_OPT) $(INSTALL_LIBDIR)/ocamlbuild
+ mkdir -p "$(INSTALL_LIBDIR)/ocamlbuild"
+ $(CP) $(INSTALL_LIB_OPT) "$(INSTALL_LIBDIR)/ocamlbuild"
install-lib-native-opam:
for lib in $(INSTALL_LIB_OPT); do \
@@ -333,8 +333,8 @@
echo >> ocamlbuild.install
install-man:
- mkdir -p $(INSTALL_MANDIR)/man1
- cp man/ocamlbuild.1 $(INSTALL_MANDIR)/man1/ocamlbuild.1
+ mkdir -p "$(INSTALL_MANDIR)/man1"
+ cp man/ocamlbuild.1 "$(INSTALL_MANDIR)/man1/ocamlbuild.1"
install-man-opam:
echo 'man: [' >> ocamlbuild.install
@@ -377,14 +377,14 @@
ifeq ($(OCAML_NATIVE), true)
$(MAKE) uninstall-lib-native
endif
- ls $(LIBDIR)/ocamlbuild # for easier debugging if rmdir fails
- rmdir $(LIBDIR)/ocamlbuild
+ ls "$(LIBDIR)/ocamlbuild" # for easier debugging if rmdir fails
+ rmdir "$(LIBDIR)/ocamlbuild"
uninstall-lib-findlib:
ocamlfind remove ocamlbuild
uninstall-man:
- rm $(INSTALL_MANDIR)/man1/ocamlbuild.1
+ rm "$(INSTALL_MANDIR)/man1/ocamlbuild.1"
install: check-if-preinstalled
$(MAKE) install-bin install-lib install-man
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/ocaml-ocamlbuild-0.14.2/VERSION
new/ocaml-ocamlbuild-0.14.3/VERSION
--- old/ocaml-ocamlbuild-0.14.2/VERSION 2022-09-28 16:40:09.000000000 +0200
+++ new/ocaml-ocamlbuild-0.14.3/VERSION 2023-12-20 17:40:26.000000000 +0100
@@ -1 +1 @@
-0.14.2
\ No newline at end of file
+0.14.3
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/ocaml-ocamlbuild-0.14.2/ocaml-ocamlbuild.changes
new/ocaml-ocamlbuild-0.14.3/ocaml-ocamlbuild.changes
--- old/ocaml-ocamlbuild-0.14.2/ocaml-ocamlbuild.changes 1970-01-01
01:00:00.000000000 +0100
+++ new/ocaml-ocamlbuild-0.14.3/ocaml-ocamlbuild.changes 2023-12-20
17:40:26.000000000 +0100
@@ -0,0 +1,6 @@
+fe33f01 first commit after tagging 0.14.2
+22d6cb2 Quote Makefile arguments to allow spaces
+330aa1e Merge pull request #324 from jonahbeckford/win32-makefile-quotes
+49e5830 Fix compilation with ocaml-trunk
+1210e0b Merge pull request #325 from hhugo/fix-ocaml-trunk
+2535950 (tag: 0.14.3) Version 0.14.3
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/ocaml-ocamlbuild-0.14.2/src/my_std.mli
new/ocaml-ocamlbuild-0.14.3/src/my_std.mli
--- old/ocaml-ocamlbuild-0.14.2/src/my_std.mli 2022-09-28 16:40:09.000000000
+0200
+++ new/ocaml-ocamlbuild-0.14.3/src/my_std.mli 2023-12-20 17:40:26.000000000
+0100
@@ -42,7 +42,7 @@
type t = string
val string : string -> t
val substring : string -> int -> int -> t
- external channel : in_channel -> int -> t = "caml_md5_chan"
+ val channel : in_channel -> int -> t
val file : string -> t
val output : out_channel -> t -> unit
val input : in_channel -> t