Received: by mail.netbsd.org (Postfix, from userid 605) id 4066484ECB; Fri, 7 Apr 2023 21:26:06 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 706FC84EC1 for ; Fri, 7 Apr 2023 21:26:05 +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 g-t6YBV6RCtT for ; Fri, 7 Apr 2023 21:26:05 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id C2CB684EBE for ; Fri, 7 Apr 2023 21:26:04 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id C7D9AFA84; Fri, 7 Apr 2023 21:26:00 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1680902760219770" MIME-Version: 1.0 Date: Fri, 7 Apr 2023 21:26:00 +0000 From: "Niclas Rosenvik" Subject: CVS commit: pkgsrc/net/grpc To: pkgsrc-changes@NetBSD.org Reply-To: nros@netbsd.org X-Mailer: log_accum Message-Id: <20230407212600.C7D9AFA84@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1680902760219770 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nros Date: Fri Apr 7 21:26:00 UTC 2023 Modified Files: pkgsrc/net/grpc: buildlink3.mk Log Message: buildlink the plugin binaries of grpc so that using the cmake package files work To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 pkgsrc/net/grpc/buildlink3.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1680902760219770 Content-Disposition: inline Content-Length: 971 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/grpc/buildlink3.mk diff -u pkgsrc/net/grpc/buildlink3.mk:1.8 pkgsrc/net/grpc/buildlink3.mk:1.9 --- pkgsrc/net/grpc/buildlink3.mk:1.8 Fri Aug 19 06:25:22 2022 +++ pkgsrc/net/grpc/buildlink3.mk Fri Apr 7 21:26:00 2023 @@ -1,4 +1,4 @@ -# $NetBSD: buildlink3.mk,v 1.8 2022/08/19 06:25:22 wiz Exp $ +# $NetBSD: buildlink3.mk,v 1.9 2023/04/07 21:26:00 nros Exp $ BUILDLINK_TREE+= grpc @@ -9,6 +9,14 @@ BUILDLINK_API_DEPENDS.grpc+= grpc>=1.11. BUILDLINK_ABI_DEPENDS.grpc+= grpc>=1.48.0 BUILDLINK_PKGSRCDIR.grpc?= ../../net/grpc +BUILDLINK_FILES.grpc+= bin/grpc_cpp_plugin +BUILDLINK_FILES.grpc+= bin/grpc_csharp_plugin +BUILDLINK_FILES.grpc+= bin/grpc_node_plugin +BUILDLINK_FILES.grpc+= bin/grpc_objective_c_plugin +BUILDLINK_FILES.grpc+= bin/grpc_php_plugin +BUILDLINK_FILES.grpc+= bin/grpc_python_plugin +BUILDLINK_FILES.grpc+= bin/grpc_ruby_plugin + .include "../../devel/protobuf/buildlink3.mk" .endif # GRPC_BUILDLINK3_MK --_----------=_1680902760219770--