diff options
author | stas <stas@FreeBSD.org> | 2008-04-21 00:28:44 +0800 |
---|---|---|
committer | stas <stas@FreeBSD.org> | 2008-04-21 00:28:44 +0800 |
commit | 7a1f484c3a2c158da5f2d3d5fc2858da590eb31a (patch) | |
tree | 3ffc0cf73eb4c1d1e0e0895a6c88afcf33b6483a /devel | |
parent | 4000a338dfe76b3a33cd41f621e602c68ec8ddc0 (diff) | |
download | freebsd-ports-gnome-7a1f484c3a2c158da5f2d3d5fc2858da590eb31a.tar.gz freebsd-ports-gnome-7a1f484c3a2c158da5f2d3d5fc2858da590eb31a.tar.zst freebsd-ports-gnome-7a1f484c3a2c158da5f2d3d5fc2858da590eb31a.zip |
- Update to 1.5.1
- Fix project url.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/ocaml-extlib/Makefile | 6 | ||||
-rw-r--r-- | devel/ocaml-extlib/distinfo | 6 | ||||
-rw-r--r-- | devel/ocaml-extlib/files/patch-extArray.ml | 14 | ||||
-rw-r--r-- | devel/ocaml-extlib/files/patch-extArray.mli | 16 | ||||
-rw-r--r-- | devel/ocaml-extlib/pkg-descr | 2 |
5 files changed, 7 insertions, 37 deletions
diff --git a/devel/ocaml-extlib/Makefile b/devel/ocaml-extlib/Makefile index b556361f39e9..4136722e6674 100644 --- a/devel/ocaml-extlib/Makefile +++ b/devel/ocaml-extlib/Makefile @@ -6,10 +6,10 @@ # PORTNAME= extlib -PORTVERSION= 1.5 -PORTREVISION= 3 +PORTVERSION= 1.5.1 +PORTREVISION= 0 CATEGORIES= devel -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITES= http://ocaml-extlib.googlecode.com/files/ MASTER_SITE_SUBDIR= ocaml-lib PKGNAMEPREFIX= ocaml- diff --git a/devel/ocaml-extlib/distinfo b/devel/ocaml-extlib/distinfo index f5cd2740dec4..408966a44369 100644 --- a/devel/ocaml-extlib/distinfo +++ b/devel/ocaml-extlib/distinfo @@ -1,3 +1,3 @@ -MD5 (extlib-1.5.tar.gz) = 17808ae18d6b6e40637f0df8561583e8 -SHA256 (extlib-1.5.tar.gz) = 988b3ad5d04db0b8622fe9aa32032d09d3fab3c2f8f8e01b61777a6e057e64df -SIZE (extlib-1.5.tar.gz) = 65853 +MD5 (extlib-1.5.1.tar.gz) = 8dc2944cbf63141347956bd353893d75 +SHA256 (extlib-1.5.1.tar.gz) = 637cf3331d49ba00e7ebdb762c2a231603fe0dd57ad45a6cde30884a5348525e +SIZE (extlib-1.5.1.tar.gz) = 70363 diff --git a/devel/ocaml-extlib/files/patch-extArray.ml b/devel/ocaml-extlib/files/patch-extArray.ml deleted file mode 100644 index b0fcdfc3ef7a..000000000000 --- a/devel/ocaml-extlib/files/patch-extArray.ml +++ /dev/null @@ -1,14 +0,0 @@ ---- extArray.ml 2005/11/25 10:22:10 1.8 -+++ extArray.ml 2006/10/11 16:24:42 1.9 -@@ -162,4 +162,11 @@ - | Some x -> x - | None -> assert false) - -+let iter2 f a1 a2 = -+ if Array.length a1 <> Array.length a2 -+ then raise (Invalid_argument "Array.iter2"); -+ for i = 0 to Array.length a1 - 1 do -+ f a1.(i) a2.(i); -+ done;; -+ - end diff --git a/devel/ocaml-extlib/files/patch-extArray.mli b/devel/ocaml-extlib/files/patch-extArray.mli deleted file mode 100644 index a0a99a8582f7..000000000000 --- a/devel/ocaml-extlib/files/patch-extArray.mli +++ /dev/null @@ -1,16 +0,0 @@ ---- extArray.mli 2005/11/25 10:22:10 1.11 -+++ extArray.mli 2006/10/11 16:24:42 1.12 -@@ -35,6 +35,13 @@ - val rev_in_place : 'a array -> unit - (** In-place array reversal. The array argument is updated. *) - -+ val iter2 : ('a -> 'b -> unit) -> 'a array -> 'b array -> unit -+ (** [Array.iter2 f [|a1; ...; an|] [|b1; ...; bn|]] performs -+ calls [f a1 b1; ...; f an bn] in that order. -+ -+ @raise Invalid_argument if the length of [a1] does not equal the -+ length of [a2]. *) -+ - val for_all : ('a -> bool) -> 'a array -> bool - (** [for_all p [a1; ...; an]] checks if all elements of the array - satisfy the predicate [p]. That is, it returns diff --git a/devel/ocaml-extlib/pkg-descr b/devel/ocaml-extlib/pkg-descr index c04b2c5382a2..c333ef60afc1 100644 --- a/devel/ocaml-extlib/pkg-descr +++ b/devel/ocaml-extlib/pkg-descr @@ -9,4 +9,4 @@ ExtLib is not directly related to OCaml authors (INRIA) although this library can be seen as a proposal for inclusion in the official distribution. -WWW: http://ocaml-lib.sourceforge.net/ +WWW: http://code.google.com/p/ocaml-extlib/ |