Received: from mail.netbsd.org (mail.netbsd.org [204.152.190.11]) by narn.NetBSD.org (Postfix) with ESMTP id 74DF563B8BA for ; Sun, 18 Jan 2009 17:12:57 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 0) id 20D1363B1CE; Sun, 18 Jan 2009 17:12:57 +0000 (UTC) Received: from cvs.netbsd.org (unknown [IPv6:2001:4f8:4:7:2e0:81ff:fe25:eab4]) by mail.netbsd.org (Postfix) with ESMTP id 3E30863B122 for ; Sun, 18 Jan 2009 17:12:56 +0000 (UTC) Received: by cvs.netbsd.org (Postfix, from userid 500) id 2BF13175D0; Sun, 18 Jan 2009 17:12:56 +0000 (UTC) From: Thomas Klausner Subject: CVS commit: pkgsrc/graphics/py-cairo To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org Message-Id: <20090118171256.2BF13175D0@cvs.netbsd.org> Date: Sun, 18 Jan 2009 17:12:56 +0000 (UTC) Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes Precedence: list Module Name: pkgsrc Committed By: wiz Date: Sun Jan 18 17:12:56 UTC 2009 Modified Files: pkgsrc/graphics/py-cairo: Makefile distinfo Log Message: Update to 1.8.2: Overview of changes from pycairo 1.8.0 to pycairo 1.8.2 ======================================================= Pycairo 1.8.0 resulted in crashes for some applications using threads. So upgrading to 1.8.2 is recommended for threaded applications. Bug Fixes: #19287: Threading support results in crashes in cairo.ImageSurface New Methods: Context.set_scaled_font API Changes: Matrix multiplication: old code: matrix3 = matrix1 * matrix2 new equivalent code: matrix3 = matrix1.multiply(matrix2) matrix3 = matrix1 * matrix2 is now equivalent to matrix3 = matrix2.multiply(matrix1) which is consistent with standard matrix multiplication. To generate a diff of this commit: cvs rdiff -r1.14 -r1.15 pkgsrc/graphics/py-cairo/Makefile cvs rdiff -r1.8 -r1.9 pkgsrc/graphics/py-cairo/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.