pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/devel/ocaml-ppx_type_conv
Module Name: pkgsrc
Committed By: jaapb
Date: Thu Aug 18 11:23:48 UTC 2016
Modified Files:
pkgsrc/devel/ocaml-ppx_type_conv: Makefile PLIST distinfo
Removed Files:
pkgsrc/devel/ocaml-ppx_type_conv/patches: patch-Makefile
Log Message:
Updated package to unreleased version, 114.01+04. This was necessary
because the version in pkgsrc currently does not compile, and the changes
needed are not yet in the release.
Changes include:
* Use the new context-free API
* Change a behavior in ppx_type_conv: attributes inside the type definition
such as @default are not removed. This is not really a big deal as we still
check that they are used. We could restore this bevavior with a full pass
at the end to remove used attributes.
To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 pkgsrc/devel/ocaml-ppx_type_conv/Makefile
cvs rdiff -u -r1.2 -r1.3 pkgsrc/devel/ocaml-ppx_type_conv/PLIST \
pkgsrc/devel/ocaml-ppx_type_conv/distinfo
cvs rdiff -u -r1.1 -r0 \
pkgsrc/devel/ocaml-ppx_type_conv/patches/patch-Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/devel/ocaml-ppx_type_conv/Makefile
diff -u pkgsrc/devel/ocaml-ppx_type_conv/Makefile:1.4 pkgsrc/devel/ocaml-ppx_type_conv/Makefile:1.5
--- pkgsrc/devel/ocaml-ppx_type_conv/Makefile:1.4 Mon Jun 20 19:06:29 2016
+++ pkgsrc/devel/ocaml-ppx_type_conv/Makefile Thu Aug 18 11:23:48 2016
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.4 2016/06/20 19:06:29 jaapb Exp $
+# $NetBSD: Makefile,v 1.5 2016/08/18 11:23:48 jaapb Exp $
-VERSION= 113.33.01
+VERSION= 114.01+04
GITHUB_PROJECT= ppx_type_conv
-GITHUB_TAG= ${VERSION}+4.03
+GITHUB_TAG= f481969
DISTNAME= ${GITHUB_PROJECT}-${VERSION}
PKGNAME= ocaml-${DISTNAME}
CATEGORIES= devel
@@ -13,16 +13,19 @@ HOMEPAGE= https://github.com/janestreet/
COMMENT= Support library for type-driven code generators
LICENSE= apache-2.0
-WRKSRC= ${WRKDIR}/${DISTNAME}-4.03
+WRKSRC= ${WRKDIR}/${GITHUB_PROJECT}-f4819697dc28759dd9a5b71e876bb6c0cfce0944
HAS_CONFIGURE= yes
USE_LANGUAGES= # none
-OCAML_USE_FINDLIB= yes
+OCAML_USE_OASIS_DYNRUN= yes
+
+post-extract:
+ ${MV} ${WRKSRC}/META.ab ${WRKSRC}/src
.include "../../mk/ocaml.mk"
-.include "../../devel/ocaml-oasis/buildlink3.mk"
+#.include "../../devel/ocaml-oasis/buildlink3.mk"
.include "../../devel/ocaml-ppx_deriving/buildlink3.mk"
.include "../../devel/ocaml-ppx_driver/buildlink3.mk"
.include "../../devel/ocaml-ppx_tools/buildlink3.mk"
.include "../../devel/ocamlbuild/buildlink3.mk"
-.include "../../misc/ocaml-opam/buildlink3.mk"
+#.include "../../misc/ocaml-opam/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
Index: pkgsrc/devel/ocaml-ppx_type_conv/PLIST
diff -u pkgsrc/devel/ocaml-ppx_type_conv/PLIST:1.2 pkgsrc/devel/ocaml-ppx_type_conv/PLIST:1.3
--- pkgsrc/devel/ocaml-ppx_type_conv/PLIST:1.2 Mon Jun 20 19:06:29 2016
+++ pkgsrc/devel/ocaml-ppx_type_conv/PLIST Thu Aug 18 11:23:48 2016
@@ -1,8 +1,9 @@
-@comment $NetBSD: PLIST,v 1.2 2016/06/20 19:06:29 jaapb Exp $
+@comment $NetBSD: PLIST,v 1.3 2016/08/18 11:23:48 jaapb Exp $
${OCAML_SITELIB}/ppx_type_conv/META
${OCAML_SITELIB}/ppx_type_conv/ignore_unused_warning.annot
${OCAML_SITELIB}/ppx_type_conv/ignore_unused_warning.cmt
${OCAML_SITELIB}/ppx_type_conv/ignore_unused_warning.cmti
+${OCAML_SITELIB}/ppx_type_conv/ignore_unused_warning.mli
${PLIST.ocaml-opt}${OCAML_SITELIB}/ppx_type_conv/ppx_type_conv.a
${OCAML_SITELIB}/ppx_type_conv/ppx_type_conv.cma
${OCAML_SITELIB}/ppx_type_conv/ppx_type_conv.cmi
@@ -18,8 +19,11 @@ ${OCAML_SITELIB}/ppx_type_conv/ppx_type_
${PLIST.ocaml-opt}${OCAML_SITELIB}/ppx_type_conv/ppx_type_conv_deriving.cmx
${PLIST.ocaml-opt}${OCAML_SITELIB}/ppx_type_conv/ppx_type_conv_deriving.cmxa
${PLIST.ocaml-opt}${OCAML_SITELIB}/ppx_type_conv/ppx_type_conv_deriving.cmxs
+${OCAML_SITELIB}/ppx_type_conv/ppx_type_conv_deriving.ml
${OCAML_SITELIB}/ppx_type_conv/std.annot
${OCAML_SITELIB}/ppx_type_conv/std.cmt
+${OCAML_SITELIB}/ppx_type_conv/std.ml
${OCAML_SITELIB}/ppx_type_conv/type_conv.annot
${OCAML_SITELIB}/ppx_type_conv/type_conv.cmt
${OCAML_SITELIB}/ppx_type_conv/type_conv.cmti
+${OCAML_SITELIB}/ppx_type_conv/type_conv.mli
Index: pkgsrc/devel/ocaml-ppx_type_conv/distinfo
diff -u pkgsrc/devel/ocaml-ppx_type_conv/distinfo:1.2 pkgsrc/devel/ocaml-ppx_type_conv/distinfo:1.3
--- pkgsrc/devel/ocaml-ppx_type_conv/distinfo:1.2 Mon Jun 20 19:06:29 2016
+++ pkgsrc/devel/ocaml-ppx_type_conv/distinfo Thu Aug 18 11:23:48 2016
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.2 2016/06/20 19:06:29 jaapb Exp $
+$NetBSD: distinfo,v 1.3 2016/08/18 11:23:48 jaapb Exp $
-SHA1 (ppx_type_conv-113.33.01.tar.gz) = 280dbfce2ce20c321c7ab3cad4fdaa39a994ac0f
-RMD160 (ppx_type_conv-113.33.01.tar.gz) = 0e1eb5e739ce11c3eec2059e13f6b1771f724bc4
-SHA512 (ppx_type_conv-113.33.01.tar.gz) = dacc99666a97d9021a83df74b25a8d54f7ed324e9dc76dd8447298944ba9c31e6320598486a260b1461ecf98e32be38d3a26de7b797f4462277ad780f8864f6c
-Size (ppx_type_conv-113.33.01.tar.gz) = 16693 bytes
-SHA1 (patch-Makefile) = 24b01c95d5324652289e903d965db6a1ffc27f0e
+SHA1 (ppx_type_conv-114.01+04-f481969.tar.gz) = 943449b02b8c2855793f60e1d460f5f18f0ef1b4
+RMD160 (ppx_type_conv-114.01+04-f481969.tar.gz) = 1209b0242414d990e6c733a0cb09f23963e3dcde
+SHA512 (ppx_type_conv-114.01+04-f481969.tar.gz) = 9d05ce9dab91a49de9e65d2a9db59ee82606c9700ad9c7311f906228d19d22ba8bafc0e3cc06a98740a94ac101449b1fd094b98548e89729b1d7acb6d556543b
+Size (ppx_type_conv-114.01+04-f481969.tar.gz) = 15502 bytes
+SHA1 (patch-_oasis) = 7f45b4b5e4d0767b82ac86219c63526b5ca6b218
Home |
Main Index |
Thread Index |
Old Index