diff options
author | wiz <wiz> | 2015-04-02 22:37:32 +0000 |
---|---|---|
committer | wiz <wiz> | 2015-04-02 22:37:32 +0000 |
commit | 24b545d0d86a6d7ac8f749e5458e079b782be68b (patch) | |
tree | b2695c614d8556c36f8fb965556df92579df0ac0 /net | |
parent | 4e36d66d0f41a20365118211c400797c4970316b (diff) | |
download | pkgsrc-24b545d0d86a6d7ac8f749e5458e079b782be68b.tar.gz |
Update to 2.40.128 -- build fix for latest ocaml (pkgsrc already
had a patch for that).
Diffstat (limited to 'net')
-rw-r--r-- | net/unison2.40/Makefile | 7 | ||||
-rw-r--r-- | net/unison2.40/distinfo | 9 | ||||
-rw-r--r-- | net/unison2.40/patches/patch-ubase_util.ml | 16 |
3 files changed, 7 insertions, 25 deletions
diff --git a/net/unison2.40/Makefile b/net/unison2.40/Makefile index 8f8a9132c2b..06ee95eeede 100644 --- a/net/unison2.40/Makefile +++ b/net/unison2.40/Makefile @@ -1,9 +1,8 @@ -# $NetBSD: Makefile,v 1.1 2015/01/06 12:57:03 wiz Exp $ +# $NetBSD: Makefile,v 1.2 2015/04/02 22:37:32 wiz Exp $ -DISTNAME= unison-2.40.102 -PKGREVISION= 22 +DISTNAME= unison-2.40.128 CATEGORIES= net -MASTER_SITES= http://www.seas.upenn.edu/~bcpierce/unison/download/releases/stable/ +MASTER_SITES= http://www.seas.upenn.edu/~bcpierce/unison/download/releases/${DISTNAME}/ MAINTAINER= tonio@NetBSD.org HOMEPAGE= http://www.cis.upenn.edu/~bcpierce/unison/ diff --git a/net/unison2.40/distinfo b/net/unison2.40/distinfo index 34ea9aa5232..4926259a559 100644 --- a/net/unison2.40/distinfo +++ b/net/unison2.40/distinfo @@ -1,8 +1,7 @@ -$NetBSD: distinfo,v 1.1 2015/01/06 12:57:03 wiz Exp $ +$NetBSD: distinfo,v 1.2 2015/04/02 22:37:32 wiz Exp $ -SHA1 (unison-2.40.102.tar.gz) = bf18f64fa30bd04234e864d42190294e0d9a2910 -RMD160 (unison-2.40.102.tar.gz) = 0231fd41895bde97ad4ae15bdc4994f9c9e27ad6 -Size (unison-2.40.102.tar.gz) = 2694761 bytes +SHA1 (unison-2.40.128.tar.gz) = 392a573cbf331d71cac8ccb32f5440dceec88470 +RMD160 (unison-2.40.128.tar.gz) = ad3f4191af957aef1084e3ea9b99c17777e35596 +Size (unison-2.40.128.tar.gz) = 2717593 bytes SHA1 (patch-Makefile.OCaml) = 2872f07e323f23375b0b7ea5ec17fe387fe22a0f SHA1 (patch-aa) = dd1a001fb7071cd9141615b42a692e6d1d812081 -SHA1 (patch-ubase_util.ml) = d8ee8ea1cc1a5d0e8794623c24621f1a2d57d189 diff --git a/net/unison2.40/patches/patch-ubase_util.ml b/net/unison2.40/patches/patch-ubase_util.ml deleted file mode 100644 index c7f7b773d68..00000000000 --- a/net/unison2.40/patches/patch-ubase_util.ml +++ /dev/null @@ -1,16 +0,0 @@ -$NetBSD: patch-ubase_util.ml,v 1.1 2015/01/06 12:57:03 wiz Exp $ - -Fix incompatibility with ocaml-4.02.x, based on -http://caml.inria.fr/mantis/view.php?id=6621 - ---- ubase/util.ml.orig 2010-04-15 17:29:31.000000000 +0000 -+++ ubase/util.ml -@@ -62,7 +62,7 @@ let set_infos s = - if s <> !infos then begin clear_infos (); infos := s; show_infos () end - - let msg f = -- clear_infos (); Uprintf.eprintf (fun () -> flush stderr; show_infos ()) f -+ clear_infos (); Printf.kfprintf (fun c -> flush c; show_infos ()) stderr f - - let msg : ('a, out_channel, unit) format -> 'a = msg - |