Received: by mail.netbsd.org (Postfix, from userid 605) id DFDCF84CFC; Mon, 11 Nov 2019 04:16:35 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 6807B84CDC for ; Mon, 11 Nov 2019 04:16:35 +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 JDSNcNXGFlxT for ; Mon, 11 Nov 2019 04:16:34 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id DBF5F84CD5 for ; Mon, 11 Nov 2019 04:16:34 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id CF866FA95; Mon, 11 Nov 2019 04:16:34 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_157344579473130" MIME-Version: 1.0 Date: Mon, 11 Nov 2019 04:16:34 +0000 From: "David H. Gutteridge" Subject: CVS commit: pkgsrc/devel/p5-EV To: pkgsrc-changes@NetBSD.org Reply-To: gutteridge@netbsd.org X-Mailer: log_accum Message-Id: <20191111041634.CF866FA95@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. --_----------=_157344579473130 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gutteridge Date: Mon Nov 11 04:16:34 UTC 2019 Modified Files: pkgsrc/devel/p5-EV: distinfo Added Files: pkgsrc/devel/p5-EV/patches: patch-libev_ev__port.c Log Message: p5-EV: fix SunOS build To generate a diff of this commit: cvs rdiff -u -r1.15 -r1.16 pkgsrc/devel/p5-EV/distinfo cvs rdiff -u -r0 -r1.1 pkgsrc/devel/p5-EV/patches/patch-libev_ev__port.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_157344579473130 Content-Disposition: inline Content-Length: 1645 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/p5-EV/distinfo diff -u pkgsrc/devel/p5-EV/distinfo:1.15 pkgsrc/devel/p5-EV/distinfo:1.16 --- pkgsrc/devel/p5-EV/distinfo:1.15 Thu Oct 17 13:59:08 2019 +++ pkgsrc/devel/p5-EV/distinfo Mon Nov 11 04:16:34 2019 @@ -1,7 +1,8 @@ -$NetBSD: distinfo,v 1.15 2019/10/17 13:59:08 mef Exp $ +$NetBSD: distinfo,v 1.16 2019/11/11 04:16:34 gutteridge Exp $ SHA1 (EV-4.27.tar.gz) = 1222776a668586d16ca8e2f59aac3a5464e2ee0d RMD160 (EV-4.27.tar.gz) = 4dcc9dc2a96f63ecf5ea00a369e10fc16e78e2b6 SHA512 (EV-4.27.tar.gz) = 076dde2a2e4c7d325f3c09b4fb3f04440f96e0ec79dcf86e16ec446471d2d0dc35d357fcdf5209a74271536461dc278f1a3ca698582374322bcd36a62ec28f51 Size (EV-4.27.tar.gz) = 205272 bytes SHA1 (patch-libev_ev.h) = 4a64abdc7d4d936623ad7a6a68195bf65218e1ed +SHA1 (patch-libev_ev__port.c) = 7c710afeb7c620e1ecfe97261fdbfa5d933eeeca Added files: Index: pkgsrc/devel/p5-EV/patches/patch-libev_ev__port.c diff -u /dev/null pkgsrc/devel/p5-EV/patches/patch-libev_ev__port.c:1.1 --- /dev/null Mon Nov 11 04:16:34 2019 +++ pkgsrc/devel/p5-EV/patches/patch-libev_ev__port.c Mon Nov 11 04:16:34 2019 @@ -0,0 +1,15 @@ +$NetBSD: patch-libev_ev__port.c,v 1.1 2019/11/11 04:16:34 gutteridge Exp $ + +Fix assert() syntax. + +--- libev/ev_port.c.orig 2019-06-25 23:42:03.000000000 +0000 ++++ libev/ev_port.c +@@ -70,7 +70,7 @@ port_associate_and_check (EV_P_ int fd, + { + if (errno == EBADFD) + { +- assert (("libev: port_associate found invalid fd", errno != EBADFD); ++ assert (("libev: port_associate found invalid fd", errno != EBADFD)); + fd_kill (EV_A_ fd); + } + else --_----------=_157344579473130--