Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=eTu8rjaK; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=qTZIJy9R Received: by mail.netbsd.org (Postfix, from userid 605) id D1F6684E96; Sun, 14 Apr 2024 08:16:00 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1713082561; bh=qvllcIQqFD4hHdlLvVn1rHYe9Lb9LEUye6r4ybxwGxU=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=eTu8rjaKFRtPNzC83XfHYr+LuwaeTGoB55+aYnh+0abM/szgxYRN5EW8Z+rL1SjDT CW1S+URm1aKhY1XnfdR7i9KhGcVQAyiyoh0CFtEQsb35jZWKH2VUPsC5scYwr0x9Gl a6L6G2a1mbJlvjkeQG4Hh3FlUstI54RpZ4UQO1GI= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id C25AE84D26 for ; Sun, 14 Apr 2024 08:15:59 +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 G8h0w_zfFe-S for ; Sun, 14 Apr 2024 08:15:59 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 22F0984D14 for ; Sun, 14 Apr 2024 08:15:59 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1713082559; bh=qvllcIQqFD4hHdlLvVn1rHYe9Lb9LEUye6r4ybxwGxU=; h=Date:From:Subject:To:Reply-To; b=qTZIJy9RtomtGaTm9dXM9DuVf/LKZSd+rFFf1QhoFQ5IV/M1j8okqjakdWmm3oRRi fxTNHxwWFQiM8jRBhmpxSJbyjaLCRHGPPKDtGLJvX8jGJ2NYresM30klPIfUsZNu/u Ze6pVH6PhAH+5mQ+BRg+i/LQN3RcHeZBuWeLm7OA= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 1393CFA2C; Sun, 14 Apr 2024 08:15:59 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_171308255934200" MIME-Version: 1.0 Date: Sun, 14 Apr 2024 08:15:59 +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: <20240414081559.1393CFA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_171308255934200 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sun Apr 14 08:15:59 UTC 2024 Modified Files: pkgsrc/net/libcares: Makefile Log Message: libcares: fix pkg-config file Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.44 -r1.45 pkgsrc/net/libcares/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_171308255934200 Content-Disposition: inline Content-Length: 744 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.44 pkgsrc/net/libcares/Makefile:1.45 --- pkgsrc/net/libcares/Makefile:1.44 Fri Apr 5 11:17:03 2024 +++ pkgsrc/net/libcares/Makefile Sun Apr 14 08:15:58 2024 @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.44 2024/04/05 11:17:03 wiz Exp $ +# $NetBSD: Makefile,v 1.45 2024/04/14 08:15:58 wiz Exp $ DISTNAME= c-ares-1.28.1 PKGNAME= ${DISTNAME:S/c-/libc/1} +PKGREVISION= 1 CATEGORIES= net MASTER_SITES= https://c-ares.haxx.se/download/ @@ -12,5 +13,8 @@ LICENSE= mit CMAKE_ARGS+= -DCARES_STATIC=ON +PKGCONFIG_OVERRIDE+= libcares.pc.cmake +PKGCONFIG_OVERRIDE+= libcares.pc.in + .include "../../devel/cmake/build.mk" .include "../../mk/bsd.pkg.mk" --_----------=_171308255934200--