Received: by mail.netbsd.org (Postfix, from userid 605) id B691484F90; Fri, 23 Feb 2024 12:58:36 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1708693116; bh=WcxOrePNJvdjdQEPCOJ6yH8nP1AUzlyumtT36O5DSQc=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=j6cMvgv/iuZnQFFTeQPSvfngTtwf5UN5onxlDNIYhpeJ09TEPhwdS4nYr2MtR6EXV K5s1WZT4TSHJMDbUYMbnzqeLoFEN+RB+IluA2eay0A1zwMf7JUmZLAJ+EVPT+4EXqo sxG28HZAEVy+7mAvm4OgMY5kf6ejPRSMplysi7+0= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id A6A5984F8E for ; Fri, 23 Feb 2024 12:58:35 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Authentication-Results: mail.netbsd.org (amavisd-new); dkim=pass (1024-bit key) header.d=netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id 2bMzlA-AjI_g for ; Fri, 23 Feb 2024 12:58:35 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id DDF8184CF7 for ; Fri, 23 Feb 2024 12:58:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1708693114; bh=WcxOrePNJvdjdQEPCOJ6yH8nP1AUzlyumtT36O5DSQc=; h=Date:From:Subject:To:Reply-To; b=lpLrC2WA0rlaxdi1rDkUrIQ3lzrgS0hl3cApv8YekO/h75843z9M/Hji9A4neZSYu IyKEiVv+MHhwwrvW7IqlBzfaOIOqq1/EvHIR87eRykPE6aNbx0zLtLa+FZ2UEhCt3t T0dbuU21rXaPaDuibpYilPxmwA1aGF5Qx8D9TEMw= Received: by cvs.NetBSD.org (Postfix, from userid 500) id D0CFEF9F4; Fri, 23 Feb 2024 12:58:34 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1708693114161610" MIME-Version: 1.0 Date: Fri, 23 Feb 2024 12:58:34 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/net/libcares To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20240223125834.D0CFEF9F4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1708693114161610 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Fri Feb 23 12:58:34 UTC 2024 Modified Files: pkgsrc/net/libcares: Makefile PLIST distinfo Log Message: libcares: update to 1.27.0. This is a security, feature, and bugfix release. Security: Moderate. CVE-2024-25629. Reading malformatted /etc/resolv.conf, /etc/nsswitch.conf or the HOSTALIASES file could result in a crash. GHSA-mg26-v6qh-x48q Features: New function ares_queue_active_queries() to retrieve number of in-flight queries. PR #712 New function ares_queue_wait_empty() to wait for the number of in-flight queries to reach zero. PR #710 New ARES_FLAG_NO_DEFLT_SVR for ares_init_options() to return a failure if no DNS servers can be found rather than attempting to use 127.0.0.1. This also introduces a new ares status code of ARES_ENOSERVER. PR #713 Changes: EDNS Packet size should be 1232 as per DNS Flag Day. PR #705 Bugfixes: Windows DNS suffix search list memory leak. PR #711 Fix warning due to ignoring return code of write(). PR #709 CMake: don't override target output locations if not top-level. Issue #708 Fix building c-ares without thread support. PR #700 To generate a diff of this commit: cvs rdiff -u -r1.42 -r1.43 pkgsrc/net/libcares/Makefile cvs rdiff -u -r1.26 -r1.27 pkgsrc/net/libcares/PLIST cvs rdiff -u -r1.36 -r1.37 pkgsrc/net/libcares/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1708693114161610 Content-Disposition: inline Content-Length: 2155 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/libcares/Makefile diff -u pkgsrc/net/libcares/Makefile:1.42 pkgsrc/net/libcares/Makefile:1.43 --- pkgsrc/net/libcares/Makefile:1.42 Sun Jan 28 13:02:11 2024 +++ pkgsrc/net/libcares/Makefile Fri Feb 23 12:58:34 2024 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.42 2024/01/28 13:02:11 wiz Exp $ +# $NetBSD: Makefile,v 1.43 2024/02/23 12:58:34 wiz Exp $ -DISTNAME= c-ares-1.26.0 +DISTNAME= c-ares-1.27.0 PKGNAME= ${DISTNAME:S/c-/libc/1} CATEGORIES= net MASTER_SITES= https://c-ares.haxx.se/download/ Index: pkgsrc/net/libcares/PLIST diff -u pkgsrc/net/libcares/PLIST:1.26 pkgsrc/net/libcares/PLIST:1.27 --- pkgsrc/net/libcares/PLIST:1.26 Sun Jan 28 13:02:11 2024 +++ pkgsrc/net/libcares/PLIST Fri Feb 23 12:58:34 2024 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.26 2024/01/28 13:02:11 wiz Exp $ +@comment $NetBSD: PLIST,v 1.27 2024/02/23 12:58:34 wiz Exp $ bin/adig bin/ahost include/ares.h @@ -14,7 +14,7 @@ lib/cmake/c-ares/c-ares-targets-noconfig lib/cmake/c-ares/c-ares-targets.cmake lib/libcares.so lib/libcares.so.2 -lib/libcares.so.2.11.0 +lib/libcares.so.2.12.0 lib/libcares_static.a lib/pkgconfig/libcares.pc man/man1/adig.1 Index: pkgsrc/net/libcares/distinfo diff -u pkgsrc/net/libcares/distinfo:1.36 pkgsrc/net/libcares/distinfo:1.37 --- pkgsrc/net/libcares/distinfo:1.36 Sun Jan 28 13:02:11 2024 +++ pkgsrc/net/libcares/distinfo Fri Feb 23 12:58:34 2024 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.36 2024/01/28 13:02:11 wiz Exp $ +$NetBSD: distinfo,v 1.37 2024/02/23 12:58:34 wiz Exp $ -BLAKE2s (c-ares-1.26.0.tar.gz) = eda1579df16629c92658d39df8c94e4276f17318be2cc2fa35ee9e06a1015b01 -SHA512 (c-ares-1.26.0.tar.gz) = 81657b8b9840a565b04ecf87ef8f0fc3192a9594808e47aed5e5bbebf2b5f0066b0cd5fae70f0fe70b68d428b4cc75fba22d2ae7683c6d0f87979c414c072af1 -Size (c-ares-1.26.0.tar.gz) = 1298394 bytes +BLAKE2s (c-ares-1.27.0.tar.gz) = 836fc527d014700041a3c1e69afc9ec974d9aedf8d35551d00691bc4701c34a9 +SHA512 (c-ares-1.27.0.tar.gz) = d0bffeeabdc5f1d4cececd46bd495b8224a64eaaf6d2a91c5475517440effe0e096146a1ebf19ece07367198be576c61b11961d5e4c3f601c5c5529ce4fcb46a +Size (c-ares-1.27.0.tar.gz) = 1301440 bytes --_----------=_1708693114161610--