Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id A1D1C84E82 for ; Sat, 17 Jun 2023 12:11:00 +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 YVl8lI5rfIwo for ; Sat, 17 Jun 2023 12:11:00 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 0A60284CF8 for ; Sat, 17 Jun 2023 12:11:00 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 07F1EFA89; Sat, 17 Jun 2023 12:11:00 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1687003860299600" MIME-Version: 1.0 Date: Sat, 17 Jun 2023 12:11:00 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/memcached To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20230617121100.07F1EFA89@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1687003860299600 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Sat Jun 17 12:10:59 UTC 2023 Modified Files: pkgsrc/devel/memcached: Makefile distinfo Log Message: memcached: updated to 1.6.21 Memcached 1.6.21 Bugfix and community contribution release. As usual most fixes are for the new proxy code, along with a lot of community contributed tests for proxy. A data corruption issue for extstore was fixed. Requires overriding item_age to a low number of seconds and re-writing the same keys frequently. Fixes a meta protocol ms bug introduced in 1.6.20 with the s flag being returned when only asking for the c (cas) flag. Fixes a compilation issue for proxy due to build artifacts being accidentally included into the release tarball. Fixes build: avoid disting build artifacts from vendor/* extstore: fix data bugs on high overwrite key proxy: fixes for memory tracking meta: fix ms c flag reflecting s flag extstore: fail to start if given no disk space extstore: Handle incorrect units gracefully proxy: mcp.internal() support ascii multiget proxy: fix segfault for reqs with too few tokens proxy: fix per-worker-thread backend mode batching proxy: fix meta set M flag for mcp.internal() proxy: add await tests in proxyunits.t proxy: add response API tests in proxyunits.t To generate a diff of this commit: cvs rdiff -u -r1.86 -r1.87 pkgsrc/devel/memcached/Makefile cvs rdiff -u -r1.55 -r1.56 pkgsrc/devel/memcached/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1687003860299600 Content-Disposition: inline Content-Length: 1734 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/memcached/Makefile diff -u pkgsrc/devel/memcached/Makefile:1.86 pkgsrc/devel/memcached/Makefile:1.87 --- pkgsrc/devel/memcached/Makefile:1.86 Wed May 17 16:54:22 2023 +++ pkgsrc/devel/memcached/Makefile Sat Jun 17 12:10:59 2023 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.86 2023/05/17 16:54:22 adam Exp $ +# $NetBSD: Makefile,v 1.87 2023/06/17 12:10:59 adam Exp $ -DISTNAME= memcached-1.6.20 +DISTNAME= memcached-1.6.21 CATEGORIES= devel MASTER_SITES= https://memcached.org/files/ Index: pkgsrc/devel/memcached/distinfo diff -u pkgsrc/devel/memcached/distinfo:1.55 pkgsrc/devel/memcached/distinfo:1.56 --- pkgsrc/devel/memcached/distinfo:1.55 Wed May 17 16:54:22 2023 +++ pkgsrc/devel/memcached/distinfo Sat Jun 17 12:10:59 2023 @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.55 2023/05/17 16:54:22 adam Exp $ +$NetBSD: distinfo,v 1.56 2023/06/17 12:10:59 adam Exp $ -BLAKE2s (memcached-1.6.20.tar.gz) = 02245346124e6da17965e88976cf546600a11097b43b26425ee3cfe9e81eecbd -SHA512 (memcached-1.6.20.tar.gz) = 518784e7ea1f919e3cd67afe394c9435b18f63b612e528d12f554a806ee479139db08ee8ab8e176ee0e88cee6e732cf311fbe6942fc0ca5b1a2286638e1cfcb9 -Size (memcached-1.6.20.tar.gz) = 2615902 bytes +BLAKE2s (memcached-1.6.21.tar.gz) = e8dd32f7970f5b64422c50b5a2065ffe44bbe0375a9d92618ea6a12b92169bd8 +SHA512 (memcached-1.6.21.tar.gz) = 9d8ba8964474e7ed40095e414747a3ce76860ee32b9d8bac19fc7932a79d4bb9947e4cbe810933b6d271f4b0ee5576e25089ca40f414b25faf9245733bfbd369 +Size (memcached-1.6.21.tar.gz) = 1127623 bytes SHA1 (patch-Makefile.in) = d0dce85040734a2532d4dced9daed0032433e80f SHA1 (patch-items.c) = 33e9ff564f755fa2ef201978cb509800ea400fa0 SHA1 (patch-logger.h) = 130c573e07b7d9b6caff1c98e40b36a96cb3c064 --_----------=_1687003860299600--