Package Details: ocamlnet 4.1.9-3

Git Clone URL: https://aur.archlinux.org/ocamlnet.git (read-only, click to copy)
Package Base: ocamlnet
Description: A library for Web and Internet programming in OCaml
Upstream URL: http://projects.camlcity.org/projects/ocamlnet.html
Licenses: GPL, LGPL
Submitter: guital
Maintainer: oriba
Last Packager: oriba
Votes: 56
Popularity: 0.000000
First Submitted: 2008-07-23 20:32 (UTC)
Last Updated: 2024-03-17 19:22 (UTC)

Latest Comments

« First ‹ Previous 1 .. 6 7 8 9 10 11 12 Next › Last »

kfgz commented on 2012-03-17 18:29 (UTC)

Ocamlnet doesn't like multicore CPU at compilation time (make jobs => 2).

kfgz commented on 2012-03-17 18:28 (UTC)

You need to add !makeflags to options.

<deleted-account> commented on 2012-03-17 18:27 (UTC)

Hm, this is weird -- I've just tried recompiling it and everything was fine. Are you using any extra flags?

kfgz commented on 2012-03-17 18:21 (UTC)

Doesn't compile File "netsys_types.ml", line 17, characters 0-88: Error: Multiple definition of the type name memory. Names must be unique in a given structure or signature. make[1]: *** [netsys_types.cmx] Error 2 make[1]: *** Waiting for unfinished jobs.... ocamlfind ocamlc -g -package "unix unix" -c netsys_oothr.ml + gcc -fno-defer-pop -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -fPIC -c -O -I'/usr/lib/ocaml' 'netsys_c_mem.c' ocamlfind ocamlc -g -package "unix unix" -c -thread netsys_oothr_mt.ml ocamlfind ocamlc -g -package "unix unix" -c -thread netsys_oothr_mt_init.ml ocamlfind ocamlc -g -package "unix unix" -c netsys_types.ml ocamlfind ocamlc -g -package "unix unix" -c netsys_posix.mli netsys_c_mem.c: In function 'netsys_value_area_remove': netsys_c_mem.c:556:9: warning: variable 'code' set but not used [-Wunused-but-set-variable] File "netsys_types.ml", line 17, characters 0-88: Error: Multiple definition of the type name memory. Names must be unique in a given structure or signature. make[1]: *** [netsys_types.cmo] Error 2 make[1]: *** Waiting for unfinished jobs.... make[1]: Leaving directory `/tmp/yaourt-tmp-root/aur-ocamlnet/src/ocamlnet-3.5.1/src/netsys' make: *** [opt] Error 2 make: *** Waiting for unfinished jobs.... make[1]: Leaving directory `/tmp/yaourt-tmp-root/aur-ocamlnet/src/ocamlnet-3.5.1/src/netsys' make: *** [all] Error 2

<deleted-account> commented on 2011-11-03 17:06 (UTC)

Updated to 3.4.1!

<deleted-account> commented on 2011-09-20 20:39 (UTC)

* Removed glibc patch -- seems like it's not required anymore * Renamed `pcre-ocaml` to `ocaml-pcre` * Added cryptokit and ssl flags

npouillard commented on 2011-09-05 17:21 (UTC)

3.4-1 uploaded

npouillard commented on 2011-03-04 22:02 (UTC)

3.2.1-1 uploaded.

<deleted-account> commented on 2011-03-01 21:33 (UTC)

update to 3.2.1: pkgname=ocamlnet pkgver=3.2.1 pkgrel=1 pkgdesc="OCaml libraries for web and Internet programming." arch=('i686' 'x86_64') url="http://projects.camlcity.org/projects/ocamlnet.html" license=('GPL' 'LGPL') depends=('ocaml' 'ocaml-findlib' 'pcre-ocaml') options=('!strip') install=ocamlnet.install source=(http://download.camlcity.org/download/$pkgname-$pkgver.tar.gz ocamlnet-glibc.patch) md5sums=('27f42c521c41af00abf477302ff5ec99' '36bfbc0386cc1353f45f31164aab7ef4') build(){ cd "$srcdir/$pkgname-$pkgver" # Fix build with glibc >=2.8 patch -Np1 -i ../ocamlnet-glibc.patch ./configure make -j1 all opt || return 1 } package(){ cd "$srcdir/$pkgname-$pkgver" mkdir -p "$pkgdir/$(ocamlfind printconf destdir)" mkdir -p "$pkgdir/$(ocamlfind printconf destdir)/stublibs" env DESTDIR="$pkgdir" \ OCAMLFIND_DESTDIR="$pkgdir/$(ocamlfind printconf destdir)" \ make install }