Received: by mail.netbsd.org (Postfix, from userid 605) id 5819F84DA1; Fri, 8 Sep 2017 07:21:45 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id DF86C84D86 for ; Fri, 8 Sep 2017 07:21:44 +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 bu9Mz29JzEW7 for ; Fri, 8 Sep 2017 07:21:44 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 6B4AA84D41 for ; Fri, 8 Sep 2017 07:21:44 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 66951FA97; Fri, 8 Sep 2017 07:21:44 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1504855304221970" MIME-Version: 1.0 Date: Fri, 8 Sep 2017 07:21:44 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/libuv To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20170908072144.66951FA97@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. --_----------=_1504855304221970 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Fri Sep 8 07:21:44 UTC 2017 Modified Files: pkgsrc/devel/libuv: Makefile distinfo Log Message: v1.14.1: * fs, win: add support for user symlinks * cygwin: include uv-posix.h header * zos: fix semaphore initialization * zos: improve loop_count benchmark performance * zos, test: flush out the oob data in callback * unix,win: check for bad flags in uv_fs_copyfile() * unix: modify argv[0] when process title is set * unix: don't use req->loop in uv__fs_copyfile() * doc: fix a trivial typo * android: fix uv_cond_timedwait on API level < 21 * win: add uv__once_init() calls * unix,windows: init all requests in fs calls * unix,windows: return UV_EINVAL on NULL fs reqs * windows: add POST macro to fs functions * unix: handle partial sends in uv_fs_copyfile() * Revert "win, test: fix double close in test runner" * win, test: remove surplus CloseHandle To generate a diff of this commit: cvs rdiff -u -r1.22 -r1.23 pkgsrc/devel/libuv/Makefile cvs rdiff -u -r1.18 -r1.19 pkgsrc/devel/libuv/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1504855304221970 Content-Disposition: inline Content-Length: 1764 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/libuv/Makefile diff -u pkgsrc/devel/libuv/Makefile:1.22 pkgsrc/devel/libuv/Makefile:1.23 --- pkgsrc/devel/libuv/Makefile:1.22 Thu Aug 17 20:06:47 2017 +++ pkgsrc/devel/libuv/Makefile Fri Sep 8 07:21:44 2017 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.22 2017/08/17 20:06:47 adam Exp $ +# $NetBSD: Makefile,v 1.23 2017/09/08 07:21:44 adam Exp $ -DISTNAME= libuv-1.14.0 +DISTNAME= libuv-1.14.1 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GITHUB:=libuv/} Index: pkgsrc/devel/libuv/distinfo diff -u pkgsrc/devel/libuv/distinfo:1.18 pkgsrc/devel/libuv/distinfo:1.19 --- pkgsrc/devel/libuv/distinfo:1.18 Thu Aug 17 20:06:47 2017 +++ pkgsrc/devel/libuv/distinfo Fri Sep 8 07:21:44 2017 @@ -1,9 +1,9 @@ -$NetBSD: distinfo,v 1.18 2017/08/17 20:06:47 adam Exp $ +$NetBSD: distinfo,v 1.19 2017/09/08 07:21:44 adam Exp $ -SHA1 (libuv-1.14.0.tar.gz) = 9b270eeacd161489f014c626c6f0492975c639bd -RMD160 (libuv-1.14.0.tar.gz) = a3e1d2a254fc8859f72912a32937adbff8fda27b -SHA512 (libuv-1.14.0.tar.gz) = a838f2e97250a78861b72458d9278935d9e8151d69de21de19499dfe9d7304d65ce578c007356b75cd4ce2c17735292d93cdb2fcc206d4e2430ee3f9a2fc7222 -Size (libuv-1.14.0.tar.gz) = 1156650 bytes +SHA1 (libuv-1.14.1.tar.gz) = 4e6b927fdf01de025bcbf41adf64a3589eca3ef1 +RMD160 (libuv-1.14.1.tar.gz) = e80e8c78a98681eaedfdf43164ba8f5ebd7a3999 +SHA512 (libuv-1.14.1.tar.gz) = de78909e92757ce024a48d5a12a1aedd8015d7135cee374965dc38c07c29352ea411a31921910653728b3f73aca0275382cbf2130144da65e50a472b17849ade +Size (libuv-1.14.1.tar.gz) = 1157777 bytes SHA1 (patch-autogen.sh) = a5f48189bfb17624c545a80626ea311b7755d232 SHA1 (patch-configure.ac) = e6636d522dc9218fc9aee62846426645473cb6cd SHA1 (patch-src_unix_fs.c) = 21fffa99df9528aedee0c6fe299d28ff5110d2ba --_----------=_1504855304221970--