Received: by mail.netbsd.org (Postfix, from userid 605) id 3D0A384E2F; Fri, 4 Jan 2019 23:09:40 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8991B84E2E for ; Fri, 4 Jan 2019 23:09:39 +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 KB-2k9BKDUi4 for ; Fri, 4 Jan 2019 23:09:38 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id D764F84D04 for ; Fri, 4 Jan 2019 23:09:38 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id C7006FB16; Fri, 4 Jan 2019 23:09:38 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_154664337852270" MIME-Version: 1.0 Date: Fri, 4 Jan 2019 23:09:38 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/libev To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20190104230938.C7006FB16@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. --_----------=_154664337852270 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Fri Jan 4 23:09:38 UTC 2019 Modified Files: pkgsrc/devel/libev: Makefile distinfo Log Message: libev: updated to 4.25 4.25: - INCOMPATIBLE CHANGE: EV_THROW was renamed to EV_NOEXCEPT (EV_THROW sitll provided) and now uses noexcept on C++11 or newer. - move the darwin select workaround highe rin ev.c, as newer versions of darwin managed to break their broken select even more. - ANDROID => __ANDROID__ (reported by enh@google.com). - disable epoll_create1 on android because it has broken header files and google is unwilling to fix them (reported by enh@google.com). - avoid a minor compilation warning on win32. - c++: remove deprecated dynamic throw() specifications. - c++: improve the (unsupported) bad_loop exception class. - backport perl ev_periodic example to C, untested. - update libecb, biggets change is to include a memory fence in ECB_MEMORY_FENCE_RELEASE on x86/amd64. - minor autoconf/automake modernisation. To generate a diff of this commit: cvs rdiff -u -r1.16 -r1.17 pkgsrc/devel/libev/Makefile cvs rdiff -u -r1.12 -r1.13 pkgsrc/devel/libev/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_154664337852270 Content-Disposition: inline Content-Length: 1533 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/libev/Makefile diff -u pkgsrc/devel/libev/Makefile:1.16 pkgsrc/devel/libev/Makefile:1.17 --- pkgsrc/devel/libev/Makefile:1.16 Fri Jul 14 09:54:59 2017 +++ pkgsrc/devel/libev/Makefile Fri Jan 4 23:09:38 2019 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.16 2017/07/14 09:54:59 adam Exp $ +# $NetBSD: Makefile,v 1.17 2019/01/04 23:09:38 adam Exp $ -DISTNAME= libev-4.24 +DISTNAME= libev-4.25 CATEGORIES= devel MASTER_SITES= http://dist.schmorp.de/libev/ Index: pkgsrc/devel/libev/distinfo diff -u pkgsrc/devel/libev/distinfo:1.12 pkgsrc/devel/libev/distinfo:1.13 --- pkgsrc/devel/libev/distinfo:1.12 Fri Jul 14 09:54:59 2017 +++ pkgsrc/devel/libev/distinfo Fri Jan 4 23:09:38 2019 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.12 2017/07/14 09:54:59 adam Exp $ +$NetBSD: distinfo,v 1.13 2019/01/04 23:09:38 adam Exp $ -SHA1 (libev-4.24.tar.gz) = 436dd8eff00a45f8805b8cacfe4dd3bd993caedb -RMD160 (libev-4.24.tar.gz) = ec1da8e223322ac7e05d82250b5a2d0db8c144fe -SHA512 (libev-4.24.tar.gz) = e4cb3b5dd4b9828d5b8da840c73ae4604258a8c4330aafa5472298b83bf944628f36918f0ddd47d9069d255639f0b24a2cf8d349f0644ffd50de823bcb54a31a -Size (libev-4.24.tar.gz) = 524264 bytes +SHA1 (libev-4.25.tar.gz) = f78a1338a0b975fb396b0b6558709211b6ccd794 +RMD160 (libev-4.25.tar.gz) = c5f63fa05d08f9778faf5e053e1f169dbcdaeee1 +SHA512 (libev-4.25.tar.gz) = 83455d4dcb626a28d8477aaea27cdee6bc88b273fae926a57eed9f6a59d4b0ea2eef0f41ad09ff711aea2956ed83a591aa53cfe8aa242f7d0a4da19180d764c4 +Size (libev-4.25.tar.gz) = 545817 bytes --_----------=_154664337852270--