Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id 546D21A921F for ; Mon, 14 Mar 2022 17:27:44 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 13CCF84ECA; Mon, 14 Mar 2022 17:27:44 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 4C3BF84D45 for ; Mon, 14 Mar 2022 17:27:43 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id d_EtYsqjMd-8 for ; Mon, 14 Mar 2022 17:27:42 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id B3C7E84D2E for ; Mon, 14 Mar 2022 17:27:42 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id AD8AEFB24; Mon, 14 Mar 2022 17:27:42 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_164727886281520" MIME-Version: 1.0 Date: Mon, 14 Mar 2022 17:27:42 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/pango To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20220314172742.AD8AEFB24@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_164727886281520 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Mon Mar 14 17:27:42 UTC 2022 Modified Files: pkgsrc/devel/pango: distinfo Added Files: pkgsrc/devel/pango/patches: patch-pango_pangocoretext-fontmap.c Log Message: pango: fix building on Darwin To generate a diff of this commit: cvs rdiff -u -r1.135 -r1.136 pkgsrc/devel/pango/distinfo cvs rdiff -u -r0 -r1.4 \ pkgsrc/devel/pango/patches/patch-pango_pangocoretext-fontmap.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_164727886281520 Content-Disposition: inline Content-Length: 2193 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/pango/distinfo diff -u pkgsrc/devel/pango/distinfo:1.135 pkgsrc/devel/pango/distinfo:1.136 --- pkgsrc/devel/pango/distinfo:1.135 Wed Mar 9 14:07:28 2022 +++ pkgsrc/devel/pango/distinfo Mon Mar 14 17:27:42 2022 @@ -1,10 +1,11 @@ -$NetBSD: distinfo,v 1.135 2022/03/09 14:07:28 ryoon Exp $ +$NetBSD: distinfo,v 1.136 2022/03/14 17:27:42 adam Exp $ BLAKE2s (pango-1.50.5.tar.xz) = daf8c629b301534e68148233fc15249be42379b903cf15f3f5710ef7b970a82a SHA512 (pango-1.50.5.tar.xz) = 6e898945ca9682ad113cea8a5702068d6141d39bc51a27093c6c1627c10825005155c73778cb5acab99551689dd1b47069f7d5ea102db11f00416ddcf747b8c6 Size (pango-1.50.5.tar.xz) = 4291708 bytes SHA1 (patch-pango_pangocairo-coretextfont.c) = cfef0e1372d5770d5988af411d435ee87fdfd0bd SHA1 (patch-pango_pangocairo-coretextfontmap.c) = 395cb1f8472a319c4b1c58ea137e36452bc44cc6 +SHA1 (patch-pango_pangocoretext-fontmap.c) = c6598d072707539d7a4af8a77b8c4199fb4987af SHA1 (patch-pango_pangocoretext-private.h) = 0d7d61cd7e7b9da34bf8a0d5d1c6e7734341cadf SHA1 (patch-pango_pangocoretext.c) = 465a66b5027c3dda5dd97c0cf33edebb4e173a1e SHA1 (patch-pango_pangocoretext.h) = d6817eb02f0020c102ab95d63202f9508a70e647 Added files: Index: pkgsrc/devel/pango/patches/patch-pango_pangocoretext-fontmap.c diff -u /dev/null pkgsrc/devel/pango/patches/patch-pango_pangocoretext-fontmap.c:1.4 --- /dev/null Mon Mar 14 17:27:42 2022 +++ pkgsrc/devel/pango/patches/patch-pango_pangocoretext-fontmap.c Mon Mar 14 17:27:42 2022 @@ -0,0 +1,17 @@ +$NetBSD: patch-pango_pangocoretext-fontmap.c,v 1.4 2022/03/14 17:27:42 adam Exp $ + +Fix for -Werror=unused-but-set-variable. + +--- pango/pangocoretext-fontmap.c.orig 2022-03-14 17:14:20.000000000 +0000 ++++ pango/pangocoretext-fontmap.c +@@ -1696,10 +1696,8 @@ static PangoFont * + pango_core_text_fontset_load_font (PangoCoreTextFontset *ctfontset, + CTFontDescriptorRef ctdescriptor) + { +- PangoCoreTextFontsetKey *key; + PangoCoreTextFont *font; + +- key = pango_core_text_fontset_get_key (ctfontset); + + /* For now, we will default the fallbacks to not have synthetic italic, + * in the future this may be improved. --_----------=_164727886281520--