Name: ocaml-lwt Version: 4.2.1 Release: 1%{?dist} Summary: OCaml lightweight thread library # The openssl linking exception is granted. License: LGPLv2+ with exceptions URL: http://ocsigen.org/lwt Source0: https://github.com/ocsigen/lwt/archive/%{version}/lwt-%{version}.tar.gz BuildRequires: ocaml >= 4.02.0 BuildRequires: ocaml-ocamlbuild BuildRequires: ocaml-findlib-devel BuildRequires: jbuilder BuildRequires: ocaml-cppo BuildRequires: ocaml-result-devel # lwt_react dependencies. BuildRequires: ocaml-react-devel # lwt_ppx dependencies. BuildRequires: ocaml-migrate-parsetree-devel BuildRequires: ocaml-ppx-tools-versioned-devel BuildRequires: ocaml-ppx-derivers-devel #BuildRequires: chrpath BuildRequires: glib2-devel BuildRequires: libev-devel %description Lwt is a lightweight thread library for Objective Caml. This library is part of the Ocsigen project. %package devel Summary: Development files for %{name} Requires: %{name}%{?_isa} = %{version}-%{release} %description devel The %{name}-devel package contains libraries and signature files for developing applications that use %{name}. %package react Summary: Helpers for using React with Lwt Requires: %{name}%{?_isa} = %{version}-%{release} %description react Helpers for using React with Lwt. %package react-devel Summary: Development files for ocaml-lwt-react Requires: %{name}-react%{?_isa} = %{version}-%{release} %description react-devel The %{name}-react-devel package contains libraries and signature files for developing applications that use %{name}-react. %package ppx Summary: PPX syntax for Lwt Requires: %{name}%{?_isa} = %{version}-%{release} %description ppx PPX syntax for Lwt, providing something similar to async/await from JavaScript. %package ppx-devel Summary: Development files for ocaml-lwt-ppx Requires: %{name}-ppx%{?_isa} = %{version}-%{release} %description ppx-devel The %{name}-ppx-devel package contains libraries and signature files for developing applications that use %{name}-ppx. %prep %setup -q -n lwt-%{version} # Enable libev and pthread. sed 's/-use-libev false/-use-libev true -use-pthread true/g' -i Makefile # Remove '-dev' from the jbuilder command line. # This stops 'ambiguous documentation comment' from being a fatal error. sed 's/build --dev/build/g' -i Makefile sed 's/runtest --dev/runtest/g' -i Makefile # It looks like one test fails. # Actually, it looks like all the "mcast" tests fail in koji. # They should probably be disabled via a patch, but this works for now. sed 's,test_mcast "mcast-join-loop" true true;,(*test_mcast "mcast-join-loop" true true;*),' -i test/unix/test_mcast.ml sed 's,test_mcast "mcast-join-noloop" true false;,(*test_mcast "mcast-join-noloop" true false;*),' -i test/unix/test_mcast.ml sed 's,test_mcast "mcast-nojoin-loop" false true;,(*test_mcast "mcast-nojoin-loop" false true;*),' -i test/unix/test_mcast.ml sed 's,test_mcast "mcast-nojoin-noloop" false false;,(*test_mcast "mcast-nojoin-noloop" false false;*),' -i test/unix/test_mcast.ml %build dune build --profile=release --verbose %install dune install --profile=release --destdir %{buildroot} #chrpath --delete $OCAMLFIND_DESTDIR/stublibs/dll*.so # Remove spurious jbuilder-installed documentation. rm -rf %{buildroot}/%{_prefix}/doc %check # In LWT 4.2.1 / OCaml 4.08 the tests fail because it can't find # Ast_helper. It seems like this might be a problem with LWT itself. #dune runtest --profile=release %files %doc CHANGES README.md %license LICENSE.md %{_libdir}/ocaml/lwt %ifarch %{ocaml_native_compiler} %exclude %{_libdir}/ocaml/lwt/*.a %exclude %{_libdir}/ocaml/lwt/*.cmxa %exclude %{_libdir}/ocaml/lwt/*.cmx %endif %exclude %{_libdir}/ocaml/lwt/*.mli #%{_libdir}/ocaml/stublibs/*.so %files devel %doc CHANGES README.md %ifarch %{ocaml_native_compiler} %{_libdir}/ocaml/lwt/*.a %{_libdir}/ocaml/lwt/*.cmxa %{_libdir}/ocaml/lwt/*.cmx %endif %{_libdir}/ocaml/lwt/*.mli %files react %doc CHANGES README.md %license LICENSE.md %{_libdir}/ocaml/lwt_react %ifarch %{ocaml_native_compiler} %exclude %{_libdir}/ocaml/lwt_react/*.a %exclude %{_libdir}/ocaml/lwt_react/*.cmxa %exclude %{_libdir}/ocaml/lwt_react/*.cmx %endif %exclude %{_libdir}/ocaml/lwt/*.mli #%{_libdir}/ocaml/stublibs/*.so %files react-devel %doc CHANGES README.md %ifarch %{ocaml_native_compiler} %{_libdir}/ocaml/lwt_react/*.a %{_libdir}/ocaml/lwt_react/*.cmxa %{_libdir}/ocaml/lwt_react/*.cmx %endif %{_libdir}/ocaml/lwt_react/*.mli %files ppx %{_libdir}/ocaml/lwt_ppx %ifarch %{ocaml_native_compiler} %exclude %{_libdir}/ocaml/lwt_ppx/*.a %exclude %{_libdir}/ocaml/lwt_ppx/*.cmxa %exclude %{_libdir}/ocaml/lwt_ppx/*.cmx %endif %exclude %{_libdir}/ocaml/lwt_ppx/*.mli #%{_libdir}/ocaml/stublibs/*.so %files ppx-devel %doc CHANGES README.md %ifarch %{ocaml_native_compiler} %{_libdir}/ocaml/lwt_ppx/*.a %{_libdir}/ocaml/lwt_ppx/*.cmxa %{_libdir}/ocaml/lwt_ppx/*.cmx %endif %{_libdir}/ocaml/lwt_ppx/*.mli %changelog * Sun Jul 28 2019 Richard W.M. Jones - 4.2.1-1 - New upstream version 4.2.1. * Thu Jul 25 2019 Fedora Release Engineering - 4.1.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild * Fri Feb 01 2019 Fedora Release Engineering - 4.1.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild * Thu Sep 27 2018 Ben Rosser - 4.1.0-1 - Updated to 4.1.0, using jbuilder/dune as buildsystem. (rhbz#1289549). - lwt_react and lwt_ppx are now separate opam packages, built from this tarball. - Split lwt_react and lwt_ppx into ocaml-lwt-react and ocaml-lwt-ppx subpackages. * Fri Jul 13 2018 Fedora Release Engineering - 2.5.0-21 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild * Wed Jul 11 2018 Richard W.M. Jones - 2.5.0-20 - OCaml 4.07.0 (final) rebuild. * Wed Jun 20 2018 Richard W.M. Jones - 2.5.0-19 - OCaml 4.07.0-rc1 rebuild. * Thu Feb 08 2018 Fedora Release Engineering - 2.5.0-18 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild * Fri Nov 17 2017 Richard W.M. Jones - 2.5.0-17 - OCaml 4.06.0 rebuild. * Tue Oct 03 2017 Richard W.M. Jones - 2.5.0-16 - Rebuild against new ocaml-ssl. * Tue Aug 08 2017 Richard W.M. Jones - 2.5.0-15 - OCaml 4.05.0 rebuild. * Thu Aug 03 2017 Fedora Release Engineering - 2.5.0-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild * Thu Jul 27 2017 Fedora Release Engineering - 2.5.0-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild * Tue Jun 27 2017 Richard W.M. Jones - 2.5.0-11 - Bump release and rebuild. * Mon Jun 26 2017 Richard W.M. Jones - 2.5.0-10 - OCaml 4.04.2 rebuild. * Fri May 12 2017 Richard W.M. Jones - 2.5.0-9 - OCaml 4.04.1 rebuild. * Sat Feb 11 2017 Fedora Release Engineering - 2.5.0-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild * Wed Nov 09 2016 Dan HorĂ¡k - 2.5.0-7 - rebuild for s390x codegen bug * Mon Nov 07 2016 Richard W.M. Jones - 2.5.0-6 - Rebuild for OCaml 4.04.0. - Add explicit dependency on ocamlbuild. * Thu Feb 04 2016 Fedora Release Engineering - 2.5.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild * Sun Aug 2 2015 Michel Alexandre Salim - 2.5.0-4 - Re-enable React (fixes bz# 1249307) * Tue Jul 28 2015 Richard W.M. Jones - 2.5.0-3 - OCaml 4.02.3 rebuild. * Fri Jul 24 2015 Richard W.M. Jones - 2.5.0-2 - Enable building the syntax extension. - Fix Source URL. * Wed Jul 22 2015 Richard W.M. Jones - 2.5.0-1 - New version 2.5.0. - Enable bytecode builds. * Wed Jun 24 2015 Richard W.M. Jones - 2.4.5-6 - ocaml-4.02.2 final rebuild. * Wed Jun 17 2015 Richard W.M. Jones - 2.4.5-5 - ocaml-4.02.2 rebuild. * Tue Feb 17 2015 Richard W.M. Jones - 2.4.5-4 - ocaml-4.02.1 rebuild. * Sun Aug 31 2014 Richard W.M. Jones - 2.4.5-3 - ocaml-4.02.0 final rebuild. * Sat Aug 23 2014 Richard W.M. Jones - 2.4.5-2 - ocaml-4.02.0+rc1 rebuild. * Mon Aug 18 2014 Scott Tsai 2.4.5-1 - New upstream version 2.4.5 (tarball created from tag through github https://github.com/ocsigen/lwt/tags) - Remove patches which are now upstream. - Disable ocaml-react support since it breaks the build (https://github.com/ocsigen/lwt/issues/77) - Remove manual.pdf for now since tarballs from git tags don't include the pre-built documentation * Mon Aug 18 2014 Scott Tsai - 2.4.3-12 - Add lwt-fix-ocaml-camlp4-19.patch to fix OCaml 4.02+ build failure - Rebuild for ocaml-4.02.0-0.8.git10e45753.fc22. * Sun Aug 17 2014 Fedora Release Engineering - 2.4.3-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild * Sat Aug 09 2014 Richard W.M. Jones - 2.4.3-10 - ocaml-4.02.0-0.8.git10e45753.fc22 rebuild. * Tue Jul 22 2014 Richard W.M. Jones - 2.4.3-9 - OCaml 4.02.0 beta rebuild. * Sat Jun 07 2014 Fedora Release Engineering - 2.4.3-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild * Tue Apr 15 2014 Richard W.M. Jones - 2.4.3-7 - Remove ocaml_arches macro (RHBZ#1087794). * Tue Apr 15 2014 Richard W.M. Jones - 2.4.3-6 - Remove ocaml_arches macro (RHBZ#1087794). * Fri Jan 3 2014 Richard W.M. Jones - 2.4.3-5 - Enable lwt.react support, and check it gets enabled (RHBZ#1048367). - Remove libev patch since headers are back to normal location in libev >= 4.15-3. * Wed Sep 18 2013 Jerry James - 2.4.3-4 - Rebuild for OCaml 4.01.0, and add -ocaml41 patch to adapt to changes - Enable debuginfo - Enable glib integration - Add check script - Add manual to -devel subpackage - Minor spec file cleanups * Sat Sep 14 2013 Scott Tsai - 2.4.3-3 - New upstream version 2.4.3 * Sat Aug 03 2013 Fedora Release Engineering - 2.4.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild * Thu Feb 14 2013 Fedora Release Engineering - 2.4.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild * Tue Oct 30 2012 Richard W.M. Jones - 2.4.2-1 - New upstream version 2.4.2. - Rebuild for OCaml 4.00.1. - Remove patches which are now upstream. - Clean up spec file. * Mon Jul 30 2012 Richard W.M. Jones - 2.3.2-7 - Rebuild for OCaml 4.00.0 official. * Fri Jul 20 2012 Fedora Release Engineering - 2.3.2-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild * Thu Jun 14 2012 Scott Tsai - 2.3.2-5 - Patch myocamlobuild.ml in lwt-2.3.2-ocaml-4.patch to add compiler-libs to search patch for "Toploop". - Add oasis-common.patch to make setup.ml work on OCaml 4.00.0 - Both patches from https://sympa.inria.fr/sympa/arc/caml-list/2012-05/msg00223.html * Mon Jun 11 2012 Richard W.M. Jones - 2.3.2-4 - Patch for OCaml 4.00.0. * Sun Jun 10 2012 Richard W.M. Jones - 2.3.2-3 - Rebuild for OCaml 4.00.0. * Sat Jan 07 2012 Richard W.M. Jones - 2.3.2-2 - Rebuild for OCaml 3.12.1. * Thu Dec 08 2011 Scott Tsai scottt.tw@gmail.com - 2.3.2-1 - New upstream version 2.3.2. * Tue Feb 08 2011 Fedora Release Engineering - 2.2.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild * Thu Jan 6 2011 Richard W.M. Jones - 2.2.0-1 - New upstream version 2.2.0. - Rebuild for OCaml 3.12.0. - Add BR libev-devel. - Patch -> - *.cmx files are no longer being distributed. - No VERSION file. * Wed Dec 30 2009 Richard W.M. Jones - 2.0.0-0.3.rc1 - Rebuild for OCaml 3.11.2. * Mon Oct 12 2009 Richard W.M. Jones - 2.0.0-0.2.rc1.fc13 - ocaml-react is now in Fedora, so build this package. - Missing BR on camlp4. * Thu Oct 8 2009 Richard W.M. Jones - 2.0.0-0.rc1.fc13 - New upstream version 2.0.0+rc1. - NB. This cannot be built as it depends on new package ocaml-react (RHBZ#527971). * Sat Jul 25 2009 Fedora Release Engineering - 1.1.0-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild * Sat May 23 2009 Richard W.M. Jones - 1.1.0-5 - Rebuild for OCaml 3.11.1 * Thu Apr 16 2009 S390x secondary arch maintainer - ExcludeArch sparc64, s390, s390x as we don't have OCaml on those archs (added sparc64 per request from the sparc maintainer) * Wed Feb 25 2009 Fedora Release Engineering - 1.1.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild * Thu Dec 4 2008 Richard W.M. Jones - 1.1.0-3 - Rebuild. * Wed Sep 3 2008 Richard W.M. Jones - 1.1.0-2 - Rebuild with higher EVR than F-9 branch. * Mon Sep 1 2008 Richard W.M. Jones - 1.1.0-1 - Initial RPM release.