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 6D3D77A166 for ; Fri, 30 Sep 2016 22:44:39 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 1BE5685E7C; Fri, 30 Sep 2016 22:44:39 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9FBF585E79 for ; Fri, 30 Sep 2016 22:44:38 +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 bR_pPyc5bknG for ; Fri, 30 Sep 2016 22:44:38 +0000 (UTC) Received: from cvs.NetBSD.org (unknown [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 3349A85E6F for ; Fri, 30 Sep 2016 22:44:38 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 2DF48FBD2; Fri, 30 Sep 2016 22:44:38 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_14752754785910" MIME-Version: 1.0 Date: Fri, 30 Sep 2016 22:44:38 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/net/nanomsgxx To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20160930224438.2DF48FBD2@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. --_----------=_14752754785910 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Fri Sep 30 22:44:38 UTC 2016 Modified Files: pkgsrc/net/nanomsgxx: distinfo Added Files: pkgsrc/net/nanomsgxx/patches: patch-tests_wscript Log Message: Fix build with waf-1.9.x. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/net/nanomsgxx/distinfo cvs rdiff -u -r0 -r1.1 pkgsrc/net/nanomsgxx/patches/patch-tests_wscript Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_14752754785910 Content-Disposition: inline Content-Length: 1706 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/nanomsgxx/distinfo diff -u pkgsrc/net/nanomsgxx/distinfo:1.2 pkgsrc/net/nanomsgxx/distinfo:1.3 --- pkgsrc/net/nanomsgxx/distinfo:1.2 Fri Sep 30 15:01:11 2016 +++ pkgsrc/net/nanomsgxx/distinfo Fri Sep 30 22:44:37 2016 @@ -1,7 +1,8 @@ -$NetBSD: distinfo,v 1.2 2016/09/30 15:01:11 wiz Exp $ +$NetBSD: distinfo,v 1.3 2016/09/30 22:44:37 wiz Exp $ SHA1 (nanomsgxx-0.2.tar.gz) = aa86aa26cca89d5bcc7ec0804d4aa5610b448e44 RMD160 (nanomsgxx-0.2.tar.gz) = 265ec29fe3b397e5a22892e048ffbbde6a44508b SHA512 (nanomsgxx-0.2.tar.gz) = 6ee011e271d3d599467c518863499cb954a28d3e53037e31f64bcb9f577db3c070002e936027c5e21e439d9e3e217fac47a96403d41ada2acdbc89de24b59a0d Size (nanomsgxx-0.2.tar.gz) = 123780 bytes SHA1 (patch-src_nnxx_wscript) = 30cc6a28596d8c994426c147e0cc8cb784c75a79 +SHA1 (patch-tests_wscript) = 7a9615c1b836a507b2171fbffd015961eec29d39 Added files: Index: pkgsrc/net/nanomsgxx/patches/patch-tests_wscript diff -u /dev/null pkgsrc/net/nanomsgxx/patches/patch-tests_wscript:1.1 --- /dev/null Fri Sep 30 22:44:38 2016 +++ pkgsrc/net/nanomsgxx/patches/patch-tests_wscript Fri Sep 30 22:44:38 2016 @@ -0,0 +1,15 @@ +$NetBSD: patch-tests_wscript,v 1.1 2016/09/30 22:44:38 wiz Exp $ + +Fix build with waf-1.9.x. +https://github.com/achille-roussel/nanomsgxx/issues/10 + +--- tests/wscript.orig 2016-05-16 02:33:55.000000000 +0000 ++++ tests/wscript +@@ -12,6 +12,7 @@ def build(waf): + features = ['cxx', 'cxxprogram', 'test'] + lib = ['nanomsg', 'nanomsgext', 'nnxx'] + for f in waf.path.ant_glob('*.cpp'): ++ f = f.path_from(waf.path) + source = str(f) + target = str(f)[:-4] + conf = copy(waf.env.CXX_CONF_KWARGS) --_----------=_14752754785910--