Accepting request 706528 from devel:languages:ocaml

- Update to version 1.10.0:
  * Restricted the set of variables available for expansion in the
    destination filename of install stanza.
  * Call menhir from context root build_dir.
  * Add coq.pp stanza.
  * Add a new more generic form for the promote mode.
  * Allow to promote only a subset of the targets.
  * With lang dune >= 1.10, rules in standard mode are no longer
    allowed to produce targets that are present in the source tree.
  * Allow %{...} variables in pps flags.
  * Add a 'cookies' option to ppx_rewriter/deriver flags in library
    stanzas.
  * Add more opam metadata and use it to generate .opam files.
  * Add support for hg in dune subst.
  * Add the %{os_type} variable.
  * Support the .cc extension fro C++ sources.
  * Run ocamlformat relative to the context root.
  * Other bug fixes and improvements. For details, see
    https://github.com/ocaml/dune/blob/1.10.0/CHANGES.md
- Update %install.
- Install dune-config.5 manpage.

OBS-URL: https://build.opensuse.org/request/show/706528
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/ocaml-dune?expand=0&rev=11
This commit is contained in:
Dominique Leuenberger 2019-06-01 07:57:23 +00:00 committed by Git OBS Bridge
commit 5f0dc17c4c
5 changed files with 33 additions and 6 deletions

View File

@ -3,7 +3,7 @@
<param name="url">git://github.com/ocaml/dune.git</param>
<param name="scm">git</param>
<param name="versionformat">@PARENT_TAG@</param>
<param name="revision">1.9.3</param>
<param name="revision">1.10.0</param>
<param name="filename">ocaml-dune</param>
</service>
<service name="recompress" mode="disabled">

3
ocaml-dune-1.10.0.tar.xz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0f0ba4d08e0ae341dbd398b27fd478c6a5ab163110dfb99a0195b586027905ec
size 581224

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1ae8934657b9a504e68a6d1a5871d2274aab85b16c35396011df7b99d1199858
size 547688

View File

@ -1,3 +1,28 @@
-------------------------------------------------------------------
Thu May 30 15:23:34 UTC 2019 - Andy <andy@onthewings.net>
- Update to version 1.10.0:
* Restricted the set of variables available for expansion in the
destination filename of install stanza.
* Call menhir from context root build_dir.
* Add coq.pp stanza.
* Add a new more generic form for the promote mode.
* Allow to promote only a subset of the targets.
* With lang dune >= 1.10, rules in standard mode are no longer
allowed to produce targets that are present in the source tree.
* Allow %{...} variables in pps flags.
* Add a 'cookies' option to ppx_rewriter/deriver flags in library
stanzas.
* Add more opam metadata and use it to generate .opam files.
* Add support for hg in dune subst.
* Add the %{os_type} variable.
* Support the .cc extension fro C++ sources.
* Run ocamlformat relative to the context root.
* Other bug fixes and improvements. For details, see
https://github.com/ocaml/dune/blob/1.10.0/CHANGES.md
- Update %install.
- Install dune-config.5 manpage.
-------------------------------------------------------------------
Thu May 16 05:47:29 UTC 2019 - Andy <andy@onthewings.net>

View File

@ -17,7 +17,7 @@
Name: ocaml-dune
Version: 1.9.3
Version: 1.10.0
Release: 0
%{?ocaml_preserve_bytecode}
Summary: A composable build system for OCaml
@ -43,9 +43,11 @@ make %{?_smp_mflags} PREFIX=%{_prefix}
%install
mkdir -p %{buildroot}%{_bindir}
mkdir -p %{buildroot}%{_mandir}/man1
cp -av _boot/default/bin/main_dune.exe %{buildroot}%{_bindir}/dune
mkdir -p %{buildroot}%{_mandir}/man5
cp -av _boot/default/bin/main/main_dune.exe %{buildroot}%{_bindir}/dune
ln -sfvbn dune %{buildroot}%{_bindir}/jbuilder
cp -av _boot/default/doc/*.1 %{buildroot}%{_mandir}/man1/
cp -av _boot/default/doc/*.5 %{buildroot}%{_mandir}/man5/
%files
%defattr(-,root,root)