Received: by mail.netbsd.org (Postfix, from userid 605) id 924B284D6F; Mon, 22 Mar 2021 07:14:53 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id CDEDE84D6D for ; Mon, 22 Mar 2021 07:14:52 +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 u-rocLR0FE5f for ; Mon, 22 Mar 2021 07:14:52 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 4336084CDB for ; Mon, 22 Mar 2021 07:14:52 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 3C56AFA95; Mon, 22 Mar 2021 07:14:52 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1616397292135860" MIME-Version: 1.0 Date: Mon, 22 Mar 2021 07:14:52 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/x11/gtk3 To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20210322071452.3C56AFA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1616397292135860 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Mon Mar 22 07:14:52 UTC 2021 Modified Files: pkgsrc/x11/gtk3: Makefile distinfo Log Message: gtk3: updated to 3.24.27 Overview of Changes in GTK+ 3.24.27 =================================== * Input: Ensure preedit-start and preedit-end are emitted properly * GtkScrolledWindow: - Revert a change that broke touch scrolling * Theme: - Fix a problem with size changes in SSD decorations that caused mutter crashes - Use transparent black for window border in the dark theme * Windows: - Memory leak fixes - Fix unresponsive windows after tablet input - Add support for wheel and rotation axes * Translation updates: Belarusian German Kazakh Korean Latvian Turkish Overview of Changes in GTK+ 3.24.26 =================================== * Input: - Fix a few oversights in Compose file parsing - Fine-tune Compose preedit display * Theme: - Fine-tune scrollbar size and transitions - Reinstate invisible borders for tiled windows * Wayland: - Fix a problem with font settings not being found * Translation updates French Hungarian Turkish To generate a diff of this commit: cvs rdiff -u -r1.158 -r1.159 pkgsrc/x11/gtk3/Makefile cvs rdiff -u -r1.85 -r1.86 pkgsrc/x11/gtk3/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1616397292135860 Content-Disposition: inline Content-Length: 1801 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/x11/gtk3/Makefile diff -u pkgsrc/x11/gtk3/Makefile:1.158 pkgsrc/x11/gtk3/Makefile:1.159 --- pkgsrc/x11/gtk3/Makefile:1.158 Sun Feb 21 15:42:40 2021 +++ pkgsrc/x11/gtk3/Makefile Mon Mar 22 07:14:52 2021 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.158 2021/02/21 15:42:40 adam Exp $ +# $NetBSD: Makefile,v 1.159 2021/03/22 07:14:52 adam Exp $ -DISTNAME= gtk+-3.24.25 +DISTNAME= gtk+-3.24.27 PKGNAME= ${DISTNAME:S/gtk/gtk3/} CATEGORIES= x11 gnome MASTER_SITES= ${MASTER_SITE_GNOME:=sources/gtk+/${PKGVERSION_NOREV:R}/} Index: pkgsrc/x11/gtk3/distinfo diff -u pkgsrc/x11/gtk3/distinfo:1.85 pkgsrc/x11/gtk3/distinfo:1.86 --- pkgsrc/x11/gtk3/distinfo:1.85 Sun Feb 21 15:42:40 2021 +++ pkgsrc/x11/gtk3/distinfo Mon Mar 22 07:14:52 2021 @@ -1,9 +1,9 @@ -$NetBSD: distinfo,v 1.85 2021/02/21 15:42:40 adam Exp $ +$NetBSD: distinfo,v 1.86 2021/03/22 07:14:52 adam Exp $ -SHA1 (gtk+-3.24.25.tar.xz) = e4d95bbf940488f0c261d48ac0047b5c801319e8 -RMD160 (gtk+-3.24.25.tar.xz) = 231f0f535de9df56a76b30c4f4afcf9530fd3a41 -SHA512 (gtk+-3.24.25.tar.xz) = e476e7900d5694ca538a5b0acce088a1485560dd697efb8839be93741e0c1ddda90c9cc73fc64af68d7ffacbf9b5cf9a74ab08454d684f182beda9fd09b6132b -Size (gtk+-3.24.25.tar.xz) = 21417428 bytes +SHA1 (gtk+-3.24.27.tar.xz) = 6a3109d155f12a977b0f810e02ae061cf21c2f7b +RMD160 (gtk+-3.24.27.tar.xz) = 0fcd4082bf13ee5354f20f7d6c894ca7f19538a6 +SHA512 (gtk+-3.24.27.tar.xz) = e2cd02b8c7fd349b1866669ef2203e17e5c16a9d7caaa4e3b5787d1405a28e49847566df5870f04ce763a95d795b7486ee1d72c6e3f49404710c8adf2d9fa958 +Size (gtk+-3.24.27.tar.xz) = 21395764 bytes SHA1 (patch-Makefile.in) = 8edcfe2ff492d90138a24b680fe39814c3848d80 SHA1 (patch-config.h.in) = dc5f8741eed554f88c0b6834cadad95083e4dc8f SHA1 (patch-configure) = d531b33e52facf960058f1223b70db680da35300 --_----------=_1616397292135860--