Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id C459B7A266 for ; Wed, 17 Aug 2016 16:00:02 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 6F38685FA5; Wed, 17 Aug 2016 16:00:02 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id F41A685EDB for ; Wed, 17 Aug 2016 16:00:01 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id 4TBs2FDOtDIu for ; Wed, 17 Aug 2016 16:00:01 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 71C1685E6B for ; Wed, 17 Aug 2016 16:00:01 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 6C0E6FBC3; Wed, 17 Aug 2016 16:00:01 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_147144960187620" MIME-Version: 1.0 Date: Wed, 17 Aug 2016 16:00:01 +0000 From: "Jaap Boender" Subject: CVS commit: pkgsrc/devel/ocaml-ppx_deriving To: pkgsrc-changes@NetBSD.org Reply-To: jaapb@netbsd.org X-Mailer: log_accum Message-Id: <20160817160001.6C0E6FBC3@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_147144960187620 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jaapb Date: Wed Aug 17 16:00:01 UTC 2016 Modified Files: pkgsrc/devel/ocaml-ppx_deriving: Makefile buildlink3.mk distinfo Log Message: Updated package to latest version, 4.0. Changes include: Show, eq, ord, map, iter, fold: add support for Result.result. Ppx_deriving.Arg: use Result.result instead of polymorphic variants. Ppx_deriving.sanitize: parameterize over an opened module. Add support for [@@deriving] in module type declarations. Add support for loading findlib packages instead of just files in ppx_deriving_main. Treat types explicitly qualified with Pervasives also as builtin. Compatibility with statically linked ppx drivers. To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 pkgsrc/devel/ocaml-ppx_deriving/Makefile cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/ocaml-ppx_deriving/buildlink3.mk cvs rdiff -u -r1.2 -r1.3 pkgsrc/devel/ocaml-ppx_deriving/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_147144960187620 Content-Disposition: inline Content-Length: 3020 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/ocaml-ppx_deriving/Makefile diff -u pkgsrc/devel/ocaml-ppx_deriving/Makefile:1.7 pkgsrc/devel/ocaml-ppx_deriving/Makefile:1.8 --- pkgsrc/devel/ocaml-ppx_deriving/Makefile:1.7 Sat Jun 25 14:19:45 2016 +++ pkgsrc/devel/ocaml-ppx_deriving/Makefile Wed Aug 17 16:00:01 2016 @@ -1,9 +1,8 @@ -# $NetBSD: Makefile,v 1.7 2016/06/25 14:19:45 jaapb Exp $ +# $NetBSD: Makefile,v 1.8 2016/08/17 16:00:01 jaapb Exp $ GITHUB_PROJECT= ppx_deriving -DISTNAME= ${GITHUB_PROJECT}-3.3 +DISTNAME= ${GITHUB_PROJECT}-4.0 PKGNAME= ocaml-${DISTNAME} -PKGREVISION= 2 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GITHUB:=whitequark/} GITHUB_TAG= v${PKGVERSION_NOREV} @@ -22,6 +21,7 @@ OCAML_USE_FINDLIB= yes BUILD_TARGET= build .include "../../devel/ocaml-cppo/buildlink3.mk" +.include "../../devel/ocaml-result/buildlink3.mk" .include "../../devel/ocamlbuild/buildlink3.mk" .include "../../mk/ocaml.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/ocaml-ppx_deriving/buildlink3.mk diff -u pkgsrc/devel/ocaml-ppx_deriving/buildlink3.mk:1.1 pkgsrc/devel/ocaml-ppx_deriving/buildlink3.mk:1.2 --- pkgsrc/devel/ocaml-ppx_deriving/buildlink3.mk:1.1 Fri Mar 4 15:40:36 2016 +++ pkgsrc/devel/ocaml-ppx_deriving/buildlink3.mk Wed Aug 17 16:00:01 2016 @@ -1,11 +1,11 @@ -# $NetBSD: buildlink3.mk,v 1.1 2016/03/04 15:40:36 jaapb Exp $ +# $NetBSD: buildlink3.mk,v 1.2 2016/08/17 16:00:01 jaapb Exp $ BUILDLINK_TREE+= ocaml-ppx_deriving .if !defined(OCAML_PPX_DERIVING_BUILDLINK3_MK) OCAML_PPX_DERIVING_BUILDLINK3_MK:= -BUILDLINK_API_DEPENDS.ocaml-ppx_deriving+= ocaml-ppx_deriving>=3.1 +BUILDLINK_API_DEPENDS.ocaml-ppx_deriving+= ocaml-ppx_deriving>=4.0 BUILDLINK_PKGSRCDIR.ocaml-ppx_deriving?= ../../devel/ocaml-ppx_deriving .endif # OCAML_PPX_DERIVING_BUILDLINK3_MK Index: pkgsrc/devel/ocaml-ppx_deriving/distinfo diff -u pkgsrc/devel/ocaml-ppx_deriving/distinfo:1.2 pkgsrc/devel/ocaml-ppx_deriving/distinfo:1.3 --- pkgsrc/devel/ocaml-ppx_deriving/distinfo:1.2 Fri May 6 12:08:58 2016 +++ pkgsrc/devel/ocaml-ppx_deriving/distinfo Wed Aug 17 16:00:01 2016 @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.2 2016/05/06 12:08:58 jaapb Exp $ +$NetBSD: distinfo,v 1.3 2016/08/17 16:00:01 jaapb Exp $ -SHA1 (ppx_deriving-3.3.tar.gz) = c5c103a8c75c709d2111412d1000c7e90cfa9739 -RMD160 (ppx_deriving-3.3.tar.gz) = 8f14cf24927cdfd2c99c3b2066095fec2b9d6c4f -SHA512 (ppx_deriving-3.3.tar.gz) = d8c4a289c62f4b2e4a1affcf6225c5929dd45fb705714b7071b0c01609c0bf833b0367d35f95cac344ad9d06a954f86b8c440729193112d723442f790a5c2af3 -Size (ppx_deriving-3.3.tar.gz) = 43707 bytes +SHA1 (ppx_deriving-4.0.tar.gz) = 5931c6b8c2a82b81c4fdf69fabe1991960b6cd68 +RMD160 (ppx_deriving-4.0.tar.gz) = 368fe7d8051618bc15260e9c577013921697ceea +SHA512 (ppx_deriving-4.0.tar.gz) = 1487650ca70b5e7402f49d533aa9d6fb7d2dbf84d8c0e2a12b22659814e7c003577a793376f3848047423e6502e50e5be3714c8fca10bd518818e64c8a09f660 +Size (ppx_deriving-4.0.tar.gz) = 45941 bytes SHA1 (patch-Makefile) = 5c28a06e9669df38d220149964b5cdea2141b4bb --_----------=_147144960187620--