Accepting request 670529 from home:onthewings:branches:devel:languages:ocaml

- Update to version 1.6.3:
  * Various new features and bug fixes. For details, see
    https://github.com/ocaml/dune/blob/1.6.3/CHANGES.md
  * Switched to MIT license.

OBS-URL: https://build.opensuse.org/request/show/670529
OBS-URL: https://build.opensuse.org/package/show/devel:languages:ocaml/ocaml-dune?expand=0&rev=9
This commit is contained in:
Olaf Hering 2019-02-05 07:09:16 +00:00 committed by Git OBS Bridge
parent d0d41eff08
commit c1683a8570
5 changed files with 19 additions and 12 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.0+beta20</param>
<param name="revision">1.6.3</param>
<param name="filename">ocaml-dune</param>
</service>
<service name="recompress" mode="disabled">

View File

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

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

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

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Fri Feb 1 09:26:44 UTC 2019 - andy@onthewings.net
- Update to version 1.6.3:
* Various new features and bug fixes. For details, see
https://github.com/ocaml/dune/blob/1.6.3/CHANGES.md
* Switched to MIT license.
-------------------------------------------------------------------
Thu May 17 21:50:30 UTC 2018 - antoine.belvire@opensuse.org

View File

@ -1,7 +1,7 @@
#
# spec file for package ocaml-dune
#
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -17,11 +17,11 @@
Name: ocaml-dune
Version: 1.0+beta20
Version: 1.6.3
Release: 0
%{?ocaml_preserve_bytecode}
Summary: A composable build system for OCaml
License: Apache-2.0
License: MIT
Group: Development/Languages/OCaml
Url: https://github.com/ocaml/dune
Conflicts: ocaml-jbuilder
@ -38,20 +38,19 @@ A composable build system for OCaml
%setup -q
%build
sed -i~ s/ocamlopt/ocamlxxx/ bootstrap.ml
diff -u bootstrap.ml~ bootstrap.ml || : diff
make %{?_smp_mflags} PREFIX=%{_prefix}
%install
mkdir -p %{buildroot}%{_bindir}
mkdir -p %{buildroot}%{_mandir}/man1
cp -av _build/default/bin/main.exe %{buildroot}%{_bindir}/dune
cp -av _build_bootstrap/default/bin/main_dune.exe %{buildroot}%{_bindir}/dune
ln -sfvbn dune %{buildroot}%{_bindir}/jbuilder
cp -av _build/default/doc/*.1 %{buildroot}%{_mandir}/man1/
cp -av _build_bootstrap/default/doc/*.1 %{buildroot}%{_mandir}/man1/
%files
%defattr(-,root,root)
%doc CHANGES.md README.md LICENSE.md
%doc CHANGES.md README.md
%license LICENSE.md
%{_bindir}/*
%{_mandir}/*/*