Received: by mail.netbsd.org (Postfix, from userid 605) id 0731184D9C; Mon, 29 Apr 2019 00:18:16 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7ED4584D80 for ; Mon, 29 Apr 2019 00:18:15 +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 WLZObvXWBF94 for ; Mon, 29 Apr 2019 00:18:14 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id AA85B84C82 for ; Mon, 29 Apr 2019 00:18:14 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 9FB37FB16; Mon, 29 Apr 2019 00:18:14 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_155649709450290" MIME-Version: 1.0 Date: Mon, 29 Apr 2019 00:18:14 +0000 From: "Greg Troxel" Subject: CVS commit: pkgsrc/devel/uthash To: pkgsrc-changes@NetBSD.org Reply-To: gdt@netbsd.org X-Mailer: log_accum Message-Id: <20190429001814.9FB37FB16@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. --_----------=_155649709450290 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gdt Date: Mon Apr 29 00:18:14 UTC 2019 Modified Files: pkgsrc/devel/uthash: Makefile PLIST distinfo Log Message: devel/uthash: Update to 2.1.0 Version 2.1.0 (2018-12-20) -------------------------- * silence some Clang static analysis warnings * add LL_INSERT_INORDER and LL_LOWER_BOUND etc (thanks, Jeffrey Lovitz and Mattias Eriksson!) * add uthash_bzero for platforms without * fix a missing HASH_BLOOM_ADD in HASH_SELECT (thanks, Pawel Veselov!) * permit malloc failure to be recoverable via HASH_NONFATAL_OOM (thanks, Pawel Veselov!) * avoid repeated calls to uthash_strlen in HASH_FIND_STR * rename uthash_memcmp to HASH_KEYCMP, leaving the old name for compatibility * add utstack.h * remove libut Version 2.0.2 (2017-03-02) -------------------------- * fix segfault in HASH_ADD_INORDER etc (thanks, Yana Kireyonok!) * remove spurious cast to unsigned in utstring_len (thanks, Michal Sestrienka!) * add uthash_memcmp and uthash_strlen for platforms without (thanks, Pawel Veselov!) * fix a C++ incompatibility in utringbuffer Version 2.0.1 (2016-07-05) -------------------------- * in-order insertion macros HASH_ADD_INORDER etc (thanks, Thilo Schulz!) * by-hashvalue insertion macros HASH_ADD_BYHASHVALUE etc * during key comparison, check hashvalue before doing a full memcmp * add utringbuffer.h Version 1.9.9.1 (2014-11-18) ---------------------------- * inclusion of experimental libut bundle with utvector in opt/ * use shift in Bernstein hash instead of multiply (thanks, Jimmy Zhuo!) * switch ssize_t types in utarray/utstring to size_t (thanks, Hong Xu!) * fix utstring pointer math on >4GB strings (thanks, Thomas Bottesch!) * change FNV hash to FNV-1a varation (thanks, dwest1975!) * fix bug in HASH_REPLACE_STR (thanks, Ilya Kaliman!) To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/uthash/Makefile \ pkgsrc/devel/uthash/PLIST cvs rdiff -u -r1.2 -r1.3 pkgsrc/devel/uthash/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_155649709450290 Content-Disposition: inline Content-Length: 2755 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/uthash/Makefile diff -u pkgsrc/devel/uthash/Makefile:1.1 pkgsrc/devel/uthash/Makefile:1.2 --- pkgsrc/devel/uthash/Makefile:1.1 Wed Oct 7 12:33:16 2015 +++ pkgsrc/devel/uthash/Makefile Mon Apr 29 00:18:14 2019 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.1 2015/10/07 12:33:16 adam Exp $ +# $NetBSD: Makefile,v 1.2 2019/04/29 00:18:14 gdt Exp $ -DISTNAME= uthash-1.9.9 +DISTNAME= uthash-2.1.0 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GITHUB:=troydhanson/} GITHUB_TAG= v${PKGVERSION_NOREV} Index: pkgsrc/devel/uthash/PLIST diff -u pkgsrc/devel/uthash/PLIST:1.1 pkgsrc/devel/uthash/PLIST:1.2 --- pkgsrc/devel/uthash/PLIST:1.1 Wed Oct 7 12:33:16 2015 +++ pkgsrc/devel/uthash/PLIST Mon Apr 29 00:18:14 2019 @@ -1,9 +1,10 @@ -@comment $NetBSD: PLIST,v 1.1 2015/10/07 12:33:16 adam Exp $ +@comment $NetBSD: PLIST,v 1.2 2019/04/29 00:18:14 gdt Exp $ include/utarray.h include/uthash.h include/utlist.h +include/utringbuffer.h +include/utstack.h include/utstring.h -share/doc/uthash/ChangeLog.html share/doc/uthash/ChangeLog.txt share/doc/uthash/Makefile share/doc/uthash/banner.png @@ -13,15 +14,13 @@ share/doc/uthash/index.html share/doc/uthash/license.html share/doc/uthash/rss.png share/doc/uthash/styles.css -share/doc/uthash/todo.txt -share/doc/uthash/userguide.html share/doc/uthash/userguide.txt -share/doc/uthash/utarray.html share/doc/uthash/utarray.txt share/doc/uthash/uthash-mini.png share/doc/uthash/uthash-mini.svg share/doc/uthash/uthash.png -share/doc/uthash/utlist.html share/doc/uthash/utlist.txt -share/doc/uthash/utstring.html +share/doc/uthash/utringbuffer.txt +share/doc/uthash/utstack.txt share/doc/uthash/utstring.txt + Index: pkgsrc/devel/uthash/distinfo diff -u pkgsrc/devel/uthash/distinfo:1.2 pkgsrc/devel/uthash/distinfo:1.3 --- pkgsrc/devel/uthash/distinfo:1.2 Tue Nov 3 03:29:38 2015 +++ pkgsrc/devel/uthash/distinfo Mon Apr 29 00:18:14 2019 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.2 2015/11/03 03:29:38 agc Exp $ +$NetBSD: distinfo,v 1.3 2019/04/29 00:18:14 gdt Exp $ -SHA1 (uthash-1.9.9.tar.gz) = 562f583d365ab21dc5dc0963241bea415fd26012 -RMD160 (uthash-1.9.9.tar.gz) = 031d5e7655238992595d9996c6c97d8796e79283 -SHA512 (uthash-1.9.9.tar.gz) = 40b888529db6baba7bdb0a11c3f782719c40470f6b8e4d75ed480c4c465606e990abf65786156a93f4e2f9c8805cbc098550cc3c62e33b7345fa5bf6d146a8c4 -Size (uthash-1.9.9.tar.gz) = 225620 bytes +SHA1 (uthash-2.1.0.tar.gz) = 8f287a2dcf38218c3180d122e10039e23fe8e4b8 +RMD160 (uthash-2.1.0.tar.gz) = d0f9bdab55b8a5ed549858ce1921b431a22aca12 +SHA512 (uthash-2.1.0.tar.gz) = c8005113a48ec7636715ecec0286a5d9086971a7267947aba9e0ad031b6113a4f38a1fb512d33d6fefb5891635fdd31169ce4d6ab04b938bda612ebbccb3eda0 +Size (uthash-2.1.0.tar.gz) = 191782 bytes --_----------=_155649709450290--