diff options
author | tonio <tonio@pkgsrc.org> | 2010-10-11 21:27:54 +0000 |
---|---|---|
committer | tonio <tonio@pkgsrc.org> | 2010-10-11 21:27:54 +0000 |
commit | fa8f74ef2a2b15a845f563117c5b7ef6004e2e6b (patch) | |
tree | cfeea29685ffe0a786f056acc95757e2d7bae204 /lang | |
parent | 504c7195139291723e68bf7d727c782dd9fe5b46 (diff) | |
download | pkgsrc-fa8f74ef2a2b15a845f563117c5b7ef6004e2e6b.tar.gz |
Update lang/camlp5 to 5.15
This version is compatible with the ocaml 3.12.0 in tree
Fix pkg/43956 and pkg/43957
Changes:
Camlp5 Version 5.15:
* [09 Aug 10] Updated compatibility for OCaml current version 3.12.1.
* [09 Aug 10] Upgraded compatibility for OCaml released version 3.12.0.
* [29 Jul 10] Added ability to write AST quotations with a colon before
the '<' (e.g. "<:expr:< foo >>") which, in pattern position, generates
a binding of the variable "loc" at the top node:
1/ normal usage (still working):
"fun [ <:expr< x >> -> 0 ]"
which is equivalent to:
"fun [ MLast.ExLid _ (Ploc.VaVal "x") -> 0 ]
2/ new usage:
"fun [ <:expr:< x >> -> 0 ]"
which is equivalent to:
"fun [ MLast.ExLid loc (Ploc.VaVal "x") -> 0 ]
* [21 Jun 10] Added compatibility for OCaml trunk version 3.13.0.
* [29 Apr 10] Fixed bug in pr_depend.cmo: a.B.c did not add module B.
Camlp5 Version 5.14:
* [28 Apr 10] Updated compatibility for OCaml current version 3.12.0.
* [31 Mar 10] Fixed bug in pr_o.cmo: error message when using "#use"
Diffstat (limited to 'lang')
-rw-r--r-- | lang/camlp5/Makefile | 4 | ||||
-rw-r--r-- | lang/camlp5/distinfo | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/lang/camlp5/Makefile b/lang/camlp5/Makefile index 9b489423b4f..0941132b70c 100644 --- a/lang/camlp5/Makefile +++ b/lang/camlp5/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.11 2010/04/24 18:40:43 tonio Exp $ +# $NetBSD: Makefile,v 1.12 2010/10/11 21:27:54 tonio Exp $ # -DISTNAME= camlp5-5.13 +DISTNAME= camlp5-5.15 CATEGORIES= lang MASTER_SITES= http://pauillac.inria.fr/~ddr/camlp5/distrib/src/ EXTRACT_SUFX= .tgz diff --git a/lang/camlp5/distinfo b/lang/camlp5/distinfo index f512d73ce9a..150d1b93d49 100644 --- a/lang/camlp5/distinfo +++ b/lang/camlp5/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.5 2010/04/24 18:40:43 tonio Exp $ +$NetBSD: distinfo,v 1.6 2010/10/11 21:27:54 tonio Exp $ -SHA1 (camlp5-5.13.tgz) = b7aba330497a47d99efae8fb0646f9f86bbaef0c -RMD160 (camlp5-5.13.tgz) = a648e0c381d0778ec8e5371c685a495bccb44b6b -Size (camlp5-5.13.tgz) = 684951 bytes +SHA1 (camlp5-5.15.tgz) = 7ccde66923e2ecb07981a2742dd315e637e37e67 +RMD160 (camlp5-5.15.tgz) = 48f9f409f85e9c1f9a5057e0869fba71c70e969c +Size (camlp5-5.15.tgz) = 714641 bytes |