diff options
author | jaapb <jaapb@pkgsrc.org> | 2016-06-17 16:15:48 +0000 |
---|---|---|
committer | jaapb <jaapb@pkgsrc.org> | 2016-06-17 16:15:48 +0000 |
commit | 27284c781858c383be1a418261d25db439d2511f (patch) | |
tree | 6dbfc614213391b0803724c81b8c2cfe41a3d233 /misc | |
parent | db4e31987bd7aa9bff2eb7ed38b1a3cefc5567a7 (diff) | |
download | pkgsrc-27284c781858c383be1a418261d25db439d2511f.tar.gz |
Updated package to latest version, 0.8. Changes include:
* Cudf: performance improvement by allocating larger hashtbl
* Cudf: expose empty_universe
(Thanks to Pietro Abate for the above 2 patches)
* Makefile: inhibit parallel build (thanks to Roberto Di Cosmo)
* Cudf_parser: prevent in_channel leaks when using from_file
Diffstat (limited to 'misc')
-rw-r--r-- | misc/ocaml-cudf/Makefile | 9 | ||||
-rw-r--r-- | misc/ocaml-cudf/buildlink3.mk | 4 | ||||
-rw-r--r-- | misc/ocaml-cudf/distinfo | 12 | ||||
-rw-r--r-- | misc/ocaml-cudf/patches/patch-Makefile | 3 |
4 files changed, 14 insertions, 14 deletions
diff --git a/misc/ocaml-cudf/Makefile b/misc/ocaml-cudf/Makefile index 6e10162b733..d7735a0361a 100644 --- a/misc/ocaml-cudf/Makefile +++ b/misc/ocaml-cudf/Makefile @@ -1,13 +1,12 @@ -# $NetBSD: Makefile,v 1.6 2016/05/06 22:31:36 wiz Exp $ +# $NetBSD: Makefile,v 1.7 2016/06/17 16:15:48 jaapb Exp $ -DISTNAME= cudf-0.7 +DISTNAME= cudf-0.8 PKGNAME= ocaml-${DISTNAME} -PKGREVISION= 3 CATEGORIES= misc -MASTER_SITES= https://gforge.inria.fr/frs/download.php/file/33593/ +MASTER_SITES= https://gforge.inria.fr/frs/download.php/file/34659/ MAINTAINER= jaapb@NetBSD.org -HOMEPAGE= http://www.mancoosi.org/cudf/ +HOMEPAGE= http://gforge.inria.fr/projects/cudf COMMENT= OCaml library for the Common Upgradeability Description Format LICENSE= gnu-lgpl-v3 diff --git a/misc/ocaml-cudf/buildlink3.mk b/misc/ocaml-cudf/buildlink3.mk index 4bfe2a0d335..ceb6f2ba050 100644 --- a/misc/ocaml-cudf/buildlink3.mk +++ b/misc/ocaml-cudf/buildlink3.mk @@ -1,11 +1,11 @@ -# $NetBSD: buildlink3.mk,v 1.1 2014/10/26 14:15:45 jaapb Exp $ +# $NetBSD: buildlink3.mk,v 1.2 2016/06/17 16:15:48 jaapb Exp $ BUILDLINK_TREE+= ocaml-cudf .if !defined(OCAML_CUDF_BUILDLINK3_MK) OCAML_CUDF_BUILDLINK3_MK:= -BUILDLINK_API_DEPENDS.ocaml-cudf+= ocaml-cudf>=0.7 +BUILDLINK_API_DEPENDS.ocaml-cudf+= ocaml-cudf>=0.8 BUILDLINK_PKGSRCDIR.ocaml-cudf?= ../../misc/ocaml-cudf .include "../../devel/ocaml-extlib/buildlink3.mk" diff --git a/misc/ocaml-cudf/distinfo b/misc/ocaml-cudf/distinfo index fbc6956b4da..faa94031c02 100644 --- a/misc/ocaml-cudf/distinfo +++ b/misc/ocaml-cudf/distinfo @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.2 2015/11/03 23:49:44 agc Exp $ +$NetBSD: distinfo,v 1.3 2016/06/17 16:15:48 jaapb Exp $ -SHA1 (cudf-0.7.tar.gz) = 33d6942caf5f008d6696c1200a2589e28ff7e7fa -RMD160 (cudf-0.7.tar.gz) = dd9c5097a627856e0e74fe3052c2f5ee1fd1bec5 -SHA512 (cudf-0.7.tar.gz) = 6adf17c076c0308416f6f8bccb361d03645909f535e6cd0ba34860706e5f26628d33ab4f208fb8def28de1499649279febafd895bdde498f35a77e06128e64fa -Size (cudf-0.7.tar.gz) = 54821 bytes -SHA1 (patch-Makefile) = 3680470731d72c9bd0f19ebe3f58522aa743d5fc +SHA1 (cudf-0.8.tar.gz) = 34233ffc70e706a70637f406106ed0e7c1d8c7c0 +RMD160 (cudf-0.8.tar.gz) = 2930da6a6c7ac0ccfedd187020a51d09fdcf51e4 +SHA512 (cudf-0.8.tar.gz) = cea9e51094076089b1beb657f6b2ccc6ac5f49660e06743f8ec646b277beb4c830f90156ae240a6903de55d09caee78fb0dc75efd76ca65fd2b40ab8756301e3 +Size (cudf-0.8.tar.gz) = 55147 bytes +SHA1 (patch-Makefile) = d313a5a0b2c6bce9f2343971b165c94067a3733c diff --git a/misc/ocaml-cudf/patches/patch-Makefile b/misc/ocaml-cudf/patches/patch-Makefile index dc0605c1457..f813acd0ad4 100644 --- a/misc/ocaml-cudf/patches/patch-Makefile +++ b/misc/ocaml-cudf/patches/patch-Makefile @@ -1,5 +1,6 @@ -$NetBSD: patch-Makefile,v 1.1 2014/10/26 14:14:09 jaapb Exp $ +$NetBSD: patch-Makefile,v 1.2 2016/06/17 16:15:48 jaapb Exp $ +Correct installation procedure --- Makefile.orig 2014-04-29 18:52:44.000000000 +0000 +++ Makefile @@ -18,13 +18,13 @@ OCAMLBUILD = ocamlbuild |