pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/lang/camlp5 Updated package to latest version, 7.01 (w...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/6e53da22efab
branches:  trunk
changeset: 365191:6e53da22efab
user:      jaapb <jaapb%pkgsrc.org@localhost>
date:      Tue Jul 11 12:17:13 2017 +0000

description:
Updated package to latest version, 7.01 (we need support for ocaml 4.04.2).
Changes include:

Camlp5 Version 7.01:
--------------------

* [26 Jun 17] Fixed bug in associativity of entry levels in extensible
  grammars; was introduced by an old experiment, resulting a failure
  in Coq test-suite/success/rewrite_strat.v.
* [26 Jun 17] Fixed bug: compilation failed while using OCaml versions
  between 3.05 and 4.01.1, and jocaml versions.

Camlp5 Version 7.00:
--------------------

* [26 Jun 17] Release number is 7.00 instead of 6.18 because of big
  improvements on extensible grammars which can use now limited and
  full backtracking algorithms on demand.
* [16 Jun 17] Entry.parse_token has been renamed Entry.parse_token_stream.
* [04 Jun 17] Added limited backtracking (functional streams) to extensible
  grammars. Can be set with "Grammar.parse_algorithm Functional" or by
  setting the environment variable CAMLP5PARAM=f.
* [01 Jun 17] Backtrack parsing seems to work well now. Camlp5 and Coq can
  be compiled using it by setting CAMLP5PARAM=b.
* [31 May 17] Fixed bug: Entry.parse_token did not accept backtrack parsing.
* [31 May 17] Fixed ocaml parsing for case of record {foo () with ...}.
* [31 May 17] Fixed bug backtrack parsing for function Entry.of_parser.
* [28 Apr 17] Updated for ocaml 4.04.2 which was missing.
* [07 Apr 17] Updated for ocaml trunk 4.06.0
* [19 Feb 17] Fixed bug: locations of all identifiers were missing
  resulting of error messages giving "<none>" as source file name
  and no line and column number in the source.
* [04 Jan 17] Updated for ocaml trunk 4.05.0
* [09 Dec 16] Fixed bug: was not compatible with ocaml compiled with
  option -safe-string.
* [09 Dec 16] Fixed bug: make uninstall did not take DESTDIR into account.
* [07 Dec 16] Fixed bug virtual methods in signatures generated syntax
  tree of virtual val. Bug notified by Kakadu.
  Ex: "class foo : object method virtual bar : bool end"
* [07 Dec 16] Fixed bug not separated idents were not allowed in
  'let open' constructs. Bug notified by Kakadu.
  Ex: "let open Mod1.Mod2.Mod3 in ..."
* [06 Dec 16] Fixed bug dumping module definitions with constraints.
  Bug notified by Kakadu.
  Ex:
    module type Item = sig type t end
    module type Sig = sig type t module Node : Item end
    module Make (S : Sig) : Sig with module Node = S.Node and type t = S.t
* [06 Dec 16] Fixed bug extra option word during pr_dump for optional args.
  Bug notified by Kakadu.
  Ex: "class t : ?name:string -> object end"
* [05 Dec 16] Fixed bug dumping of open object types. Bug notified by Kakadu.
  Ex: "type t = <f:int; .. >"
* [05 Dec 16] Fixed bug dump parsetree without throughing away module type
  annotation. Bug notified by Kakadu.
  Ex: "module rec A : sig end = struct end"

diffstat:

 lang/camlp5/Makefile      |   8 ++++----
 lang/camlp5/buildlink3.mk |   4 ++--
 lang/camlp5/distinfo      |  10 +++++-----
 3 files changed, 11 insertions(+), 11 deletions(-)

diffs (55 lines):

diff -r 350535885951 -r 6e53da22efab lang/camlp5/Makefile
--- a/lang/camlp5/Makefile      Tue Jul 11 12:14:39 2017 +0000
+++ b/lang/camlp5/Makefile      Tue Jul 11 12:17:13 2017 +0000
@@ -1,14 +1,14 @@
-# $NetBSD: Makefile,v 1.27 2016/12/30 12:37:44 jaapb Exp $
+# $NetBSD: Makefile,v 1.28 2017/07/11 12:17:13 jaapb Exp $
 #
 
 GITHUB_PROJECT=        camlp5
-DISTNAME=      ${GITHUB_PROJECT}-6.17
+DISTNAME=      ${GITHUB_PROJECT}-7.01
 CATEGORIES=    lang
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=camlp5/}
-GITHUB_TAG=    rel617
+GITHUB_TAG=    rel701
 
 MAINTAINER=    tonio%NetBSD.org@localhost
-HOMEPAGE=      http://camlp5.github.io
+HOMEPAGE=      http://camlp5.github.io/
 COMMENT=       Camlp5 is a preprocessor-pretty-printer of ocaml
 LICENSE=       modified-bsd
 
diff -r 350535885951 -r 6e53da22efab lang/camlp5/buildlink3.mk
--- a/lang/camlp5/buildlink3.mk Tue Jul 11 12:14:39 2017 +0000
+++ b/lang/camlp5/buildlink3.mk Tue Jul 11 12:17:13 2017 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: buildlink3.mk,v 1.15 2016/12/30 12:37:44 jaapb Exp $
+# $NetBSD: buildlink3.mk,v 1.16 2017/07/11 12:17:13 jaapb Exp $
 #
 
 BUILDLINK_TREE+=       camlp5
@@ -7,7 +7,7 @@
 CAMLP5_BUILDLINK3_MK:=
 
 BUILDLINK_API_DEPENDS.camlp5+= camlp5>=5.01
-BUILDLINK_ABI_DEPENDS.camlp5+= camlp5>=6.17
+BUILDLINK_ABI_DEPENDS.camlp5+= camlp5>=7.01
 BUILDLINK_PKGSRCDIR.camlp5?=   ../../lang/camlp5
 
 .include "../../lang/ocaml/buildlink3.mk"
diff -r 350535885951 -r 6e53da22efab lang/camlp5/distinfo
--- a/lang/camlp5/distinfo      Tue Jul 11 12:14:39 2017 +0000
+++ b/lang/camlp5/distinfo      Tue Jul 11 12:17:13 2017 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.15 2016/12/30 12:37:44 jaapb Exp $
+$NetBSD: distinfo,v 1.16 2017/07/11 12:17:13 jaapb Exp $
 
-SHA1 (camlp5-6.17.tar.gz) = cfe65be4bb6334ffad742a3060a6fee7bb0b5bf3
-RMD160 (camlp5-6.17.tar.gz) = a2875ab3f908d015452382e301093b8c4310381a
-SHA512 (camlp5-6.17.tar.gz) = c4bf32eb79202d6127375b940fe77fc57c7dc5f8c6763b50ba23ab52ae9f3edb0ba15148109af2f6f4808619348d78e927cfdf29901bf1141b17de0d3fd8ff30
-Size (camlp5-6.17.tar.gz) = 718935 bytes
+SHA1 (camlp5-7.01.tar.gz) = eff833fe21fc0e4d5c70b22635437b3785799d4b
+RMD160 (camlp5-7.01.tar.gz) = 6450dc1e9f13b11247bd63e30eaac989cca31660
+SHA512 (camlp5-7.01.tar.gz) = 9930957f707d9d2c8903f87f5f3444f71bad3d84c944436c7abc6de19209595c974098cd60a6a391f8ae87c4fb53b5122cba8e42e34fcf46d798dbdc28840008
+Size (camlp5-7.01.tar.gz) = 757118 bytes



Home | Main Index | Thread Index | Old Index