pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/misc/ocaml-cudf Updated package to latest version, 0.8...
details: https://anonhg.NetBSD.org/pkgsrc/rev/de356a4bbe89
branches: trunk
changeset: 348669:de356a4bbe89
user: jaapb <jaapb%pkgsrc.org@localhost>
date: Fri Jun 17 16:15:48 2016 +0000
description:
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:
misc/ocaml-cudf/Makefile | 9 ++++-----
misc/ocaml-cudf/buildlink3.mk | 4 ++--
misc/ocaml-cudf/distinfo | 12 ++++++------
misc/ocaml-cudf/patches/patch-Makefile | 3 ++-
4 files changed, 14 insertions(+), 14 deletions(-)
diffs (66 lines):
diff -r fcd2b1826a27 -r de356a4bbe89 misc/ocaml-cudf/Makefile
--- a/misc/ocaml-cudf/Makefile Fri Jun 17 16:01:32 2016 +0000
+++ b/misc/ocaml-cudf/Makefile Fri Jun 17 16:15:48 2016 +0000
@@ -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@localhost
-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 -r fcd2b1826a27 -r de356a4bbe89 misc/ocaml-cudf/buildlink3.mk
--- a/misc/ocaml-cudf/buildlink3.mk Fri Jun 17 16:01:32 2016 +0000
+++ b/misc/ocaml-cudf/buildlink3.mk Fri Jun 17 16:15:48 2016 +0000
@@ -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 -r fcd2b1826a27 -r de356a4bbe89 misc/ocaml-cudf/distinfo
--- a/misc/ocaml-cudf/distinfo Fri Jun 17 16:01:32 2016 +0000
+++ b/misc/ocaml-cudf/distinfo Fri Jun 17 16:15:48 2016 +0000
@@ -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 -r fcd2b1826a27 -r de356a4bbe89 misc/ocaml-cudf/patches/patch-Makefile
--- a/misc/ocaml-cudf/patches/patch-Makefile Fri Jun 17 16:01:32 2016 +0000
+++ b/misc/ocaml-cudf/patches/patch-Makefile Fri Jun 17 16:15:48 2016 +0000
@@ -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
Home |
Main Index |
Thread Index |
Old Index