Package Details: ocaml-lwt 5.9.1-1

Git Clone URL: https://aur.archlinux.org/ocaml-lwt.git (read-only, click to copy)
Package Base: ocaml-lwt
Description: A library for cooperative threads in OCaml
Upstream URL: https://github.com/ocsigen/lwt
Keywords: concurrent coop cooperative event io library ocaml promise promises threads
Licenses: MIT
Submitter: SerP
Maintainer: dpeukert
Last Packager: dpeukert
Votes: 16
Popularity: 0.000000
First Submitted: 2010-07-22 14:30 (UTC)
Last Updated: 2025-03-18 10:52 (UTC)

Pinned Comments

dpeukert commented on 2020-04-09 22:09 (UTC) (edited on 2020-09-26 18:11 (UTC) by dpeukert)

The PKGBUILD for this package is hosted here (contributions are welcome!): https://gitlab.com/dpeukert/pkgbuilds/tree/main/ocaml-lwt

Latest Comments

« First ‹ Previous 1 2 3 4 5 6

zorun commented on 2011-08-26 02:47 (UTC)

Ok, as a quick hack, it compiles fine without `--enable-toplevel`... And ocaml-utop seems happy anyway. Here is an updated PKGBUILD: http://pastebin.archlinux.fr/433720

zorun commented on 2011-08-25 14:30 (UTC)

@superbobry: with your updated PKGBUILD (which is needed for `ocaml-lambda-term`), Lwt doesn't compile anymore. It starts well, but after a moment it fails: http://pastebin.archlinux.fr/433705 Please note that it is *not* the same error as the one you would get by not installing react.o from `ocaml-react`. Since nothing has changed since one week ago, I see multiple reasons for it to fail: * an error in the PKGBUILD you've pasted (but I see nothing wrong); * the recent modification of "CFLAGS", "CXXFLAGS" and "LDFLAGS" in /etc/makepkg.conf might have broken something; * the error ("Error: Unbound module Types") suggests that there might be a missing dependency; * I've got a lot of warnings about `/usr/lib/ocaml/site-lib` not existing; this is weird, I've never seen that before. I'll try to investigate, but I don't quite see what's wrong...

<deleted-account> commented on 2011-08-17 08:35 (UTC)

Why won't you enable *at least* React helpers and enhanced toplevel -- the package depends on ocaml-react anyway? http://pastebin.com/XJ0TrZ4p

SerP commented on 2011-05-25 19:43 (UTC)

updated to latest

<deleted-account> commented on 2011-02-28 16:51 (UTC)

update to latest.

<deleted-account> commented on 2011-02-28 16:51 (UTC)

srcname=lwt pkgname="ocaml-$srcname" pkgver=2.2.1 pkgrel=1 pkgdesc="A library for cooperative threads in OCaml" arch=('i686' 'x86_64') url="http://ocsigen.org/lwt/" license=('LGPL') depends=('ocaml>=3.11.0' 'ocaml-findlib' 'react' 'libev') source=(http://ocsigen.org/download/$srcname-$pkgver.tar.gz) md5sums=('749546032f4fdd686d4b5dc7ecdf30ac') conflicts=('lwt') build() { cd $srcdir/$srcname-$pkgver mkdir -p "$pkgdir/$(ocamlfind printconf destdir)" mkdir -p "$pkgdir/$(ocamlfind printconf destdir)/stublibs" env DESTDIR="$pkgdir" \ OCAMLFIND_DESTDIR="$pkgdir/$(ocamlfind printconf destdir)" \ make env DESTDIR="$pkgdir" \ OCAMLFIND_DESTDIR="$pkgdir/$(ocamlfind printconf destdir)" \ make install install -Dm 644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE }