Received: by mail.netbsd.org (Postfix, from userid 605) id 26EE184F98; Mon, 25 Mar 2019 09:38:59 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id A211484F92 for ; Mon, 25 Mar 2019 09:38:58 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id tRGwpkP-tPbb for ; Mon, 25 Mar 2019 09:38:58 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id E696F84DDD for ; Mon, 25 Mar 2019 09:38:57 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id E11C7FB16; Mon, 25 Mar 2019 09:38:57 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1553506737234080" MIME-Version: 1.0 Date: Mon, 25 Mar 2019 09:38:57 +0000 From: "Jaap Boender" Subject: CVS commit: pkgsrc To: pkgsrc-changes@NetBSD.org Reply-To: jaapb@netbsd.org X-Mailer: log_accum Message-Id: <20190325093857.E11C7FB16@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1553506737234080 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jaapb Date: Mon Mar 25 09:38:57 UTC 2019 Modified Files: pkgsrc/devel/ocaml-async_extra: Makefile pkgsrc/devel/ocaml-async_rpc_kernel: Makefile pkgsrc/devel/ocaml-async_unix: Makefile pkgsrc/devel/ocaml-core_kernel: Makefile pkgsrc/devel/ocaml-digestif: Makefile pkgsrc/devel/ocaml-ppx_jane: Makefile pkgsrc/textproc/ocaml-textutils: Makefile Log Message: Removed comments in ocaml Makefiles for now-added dependencies To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/devel/ocaml-async_extra/Makefile cvs rdiff -u -r1.2 -r1.3 pkgsrc/devel/ocaml-async_rpc_kernel/Makefile cvs rdiff -u -r1.2 -r1.3 pkgsrc/devel/ocaml-async_unix/Makefile cvs rdiff -u -r1.2 -r1.3 pkgsrc/devel/ocaml-core_kernel/Makefile cvs rdiff -u -r1.2 -r1.3 pkgsrc/devel/ocaml-digestif/Makefile cvs rdiff -u -r1.2 -r1.3 pkgsrc/devel/ocaml-ppx_jane/Makefile cvs rdiff -u -r1.2 -r1.3 pkgsrc/textproc/ocaml-textutils/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1553506737234080 Content-Disposition: inline Content-Length: 5996 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/ocaml-async_extra/Makefile diff -u pkgsrc/devel/ocaml-async_extra/Makefile:1.2 pkgsrc/devel/ocaml-async_extra/Makefile:1.3 --- pkgsrc/devel/ocaml-async_extra/Makefile:1.2 Thu Mar 21 14:56:45 2019 +++ pkgsrc/devel/ocaml-async_extra/Makefile Mon Mar 25 09:38:57 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2019/03/21 14:56:45 jaapb Exp $ +# $NetBSD: Makefile,v 1.3 2019/03/25 09:38:57 jaapb Exp $ GITHUB_PROJECT= async_extra GITHUB_TAG= v${PKGVERSION_NOREV} @@ -19,6 +19,6 @@ OCAML_USE_DUNE= yes .include "../../devel/ocaml-async_kernel/buildlink3.mk" .include "../../devel/ocaml-async_rpc_kernel/buildlink3.mk" .include "../../devel/ocaml-async_unix/buildlink3.mk" -#.include "../../devel/ocaml-core/buildlink3.mk" +.include "../../devel/ocaml-core/buildlink3.mk" .include "../../devel/ocaml-ppx_jane/buildlink3.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/ocaml-async_rpc_kernel/Makefile diff -u pkgsrc/devel/ocaml-async_rpc_kernel/Makefile:1.2 pkgsrc/devel/ocaml-async_rpc_kernel/Makefile:1.3 --- pkgsrc/devel/ocaml-async_rpc_kernel/Makefile:1.2 Thu Mar 21 14:56:45 2019 +++ pkgsrc/devel/ocaml-async_rpc_kernel/Makefile Mon Mar 25 09:38:57 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2019/03/21 14:56:45 jaapb Exp $ +# $NetBSD: Makefile,v 1.3 2019/03/25 09:38:57 jaapb Exp $ GITHUB_PROJECT= async_rpc_kernel GITHUB_TAG= v${PKGVERSION_NOREV} @@ -19,5 +19,5 @@ OCAML_USE_DUNE= yes .include "../../devel/ocaml-async_kernel/buildlink3.mk" .include "../../devel/ocaml-core_kernel/buildlink3.mk" .include "../../devel/ocaml-ppx_jane/buildlink3.mk" -#.include "../../net/ocaml-protocol_version_header/buildlink3.mk" +.include "../../net/ocaml-protocol_version_header/buildlink3.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/ocaml-async_unix/Makefile diff -u pkgsrc/devel/ocaml-async_unix/Makefile:1.2 pkgsrc/devel/ocaml-async_unix/Makefile:1.3 --- pkgsrc/devel/ocaml-async_unix/Makefile:1.2 Thu Mar 21 14:56:45 2019 +++ pkgsrc/devel/ocaml-async_unix/Makefile Mon Mar 25 09:38:57 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2019/03/21 14:56:45 jaapb Exp $ +# $NetBSD: Makefile,v 1.3 2019/03/25 09:38:57 jaapb Exp $ GITHUB_PROJECT= async_unix GITHUB_TAG= v${PKGVERSION_NOREV} @@ -17,7 +17,7 @@ OCAML_USE_DUNE= yes .include "../../mk/ocaml.mk" .include "../../devel/ocaml-async_kernel/buildlink3.mk" -#.include "../../devel/ocaml-core/buildlink3.mk" +.include "../../devel/ocaml-core/buildlink3.mk" .include "../../devel/ocaml-core_kernel/buildlink3.mk" .include "../../devel/ocaml-ppx_jane/buildlink3.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/ocaml-core_kernel/Makefile diff -u pkgsrc/devel/ocaml-core_kernel/Makefile:1.2 pkgsrc/devel/ocaml-core_kernel/Makefile:1.3 --- pkgsrc/devel/ocaml-core_kernel/Makefile:1.2 Thu Mar 21 14:56:45 2019 +++ pkgsrc/devel/ocaml-core_kernel/Makefile Mon Mar 25 09:38:57 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2019/03/21 14:56:45 jaapb Exp $ +# $NetBSD: Makefile,v 1.3 2019/03/25 09:38:57 jaapb Exp $ GITHUB_PROJECT= core_kernel GITHUB_TAG= v${PKGVERSION_NOREV} @@ -17,7 +17,7 @@ OCAML_USE_DUNE= yes .include "../../mk/ocaml.mk" .include "../../devel/ocaml-base/buildlink3.mk" -#.include "../../devel/ocaml-base_bigstring/buildlink3.mk" +.include "../../devel/ocaml-base_bigstring/buildlink3.mk" .include "../../devel/ocaml-base_quickcheck/buildlink3.mk" .include "../../devel/ocaml-bin_prot/buildlink3.mk" .include "../../devel/ocaml-fieldslib/buildlink3.mk" Index: pkgsrc/devel/ocaml-digestif/Makefile diff -u pkgsrc/devel/ocaml-digestif/Makefile:1.2 pkgsrc/devel/ocaml-digestif/Makefile:1.3 --- pkgsrc/devel/ocaml-digestif/Makefile:1.2 Thu Mar 21 14:56:45 2019 +++ pkgsrc/devel/ocaml-digestif/Makefile Mon Mar 25 09:38:57 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2019/03/21 14:56:45 jaapb Exp $ +# $NetBSD: Makefile,v 1.3 2019/03/25 09:38:57 jaapb Exp $ GITHUB_PROJECT= digestif GITHUB_TAG= v${PKGVERSION_NOREV} @@ -16,6 +16,6 @@ USE_LANGUAGES= # none OCAML_USE_DUNE= yes .include "../../mk/ocaml.mk" -#.include "../../devel/ocaml-eqaf/buildlink3.mk" +.include "../../devel/ocaml-eqaf/buildlink3.mk" .include "../../devel/ocaml-fmt/buildlink3.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/ocaml-ppx_jane/Makefile diff -u pkgsrc/devel/ocaml-ppx_jane/Makefile:1.2 pkgsrc/devel/ocaml-ppx_jane/Makefile:1.3 --- pkgsrc/devel/ocaml-ppx_jane/Makefile:1.2 Sun Mar 24 18:48:07 2019 +++ pkgsrc/devel/ocaml-ppx_jane/Makefile Mon Mar 25 09:38:57 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2019/03/24 18:48:07 wiz Exp $ +# $NetBSD: Makefile,v 1.3 2019/03/25 09:38:57 jaapb Exp $ GITHUB_PROJECT= ppx_jane GITHUB_TAG= v${PKGVERSION_NOREV} @@ -32,7 +32,7 @@ OCAML_USE_DUNE= yes .include "../../devel/ocaml-ppx_optional/buildlink3.mk" .include "../../devel/ocaml-ppx_pipebang/buildlink3.mk" .include "../../devel/ocaml-ppx_sexp_message/buildlink3.mk" -#.include "../../devel/ocaml-ppx_sexp_value/buildlink3.mk" +.include "../../devel/ocaml-ppx_sexp_value/buildlink3.mk" .include "../../devel/ocaml-ppx_stable/buildlink3.mk" .include "../../devel/ocaml-ppx_typerep_conv/buildlink3.mk" .include "../../devel/ocaml-ppx_variants_conv/buildlink3.mk" Index: pkgsrc/textproc/ocaml-textutils/Makefile diff -u pkgsrc/textproc/ocaml-textutils/Makefile:1.2 pkgsrc/textproc/ocaml-textutils/Makefile:1.3 --- pkgsrc/textproc/ocaml-textutils/Makefile:1.2 Thu Mar 21 14:56:45 2019 +++ pkgsrc/textproc/ocaml-textutils/Makefile Mon Mar 25 09:38:57 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2019/03/21 14:56:45 jaapb Exp $ +# $NetBSD: Makefile,v 1.3 2019/03/25 09:38:57 jaapb Exp $ GITHUB_PROJECT= textutils GITHUB_TAG= v${PKGVERSION_NOREV} @@ -16,6 +16,6 @@ USE_LANGUAGES= # none OCAML_USE_DUNE= yes .include "../../mk/ocaml.mk" -#.include "../../devel/ocaml-core/buildlink3.mk" +.include "../../devel/ocaml-core/buildlink3.mk" .include "../../devel/ocaml-ppx_jane/buildlink3.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1553506737234080--