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.
This commit is contained in:
parent
5d2a90b886
commit
b58016f758
2 changed files with 6 additions and 6 deletions
|
@ -1,7 +1,7 @@
|
|||
# $NetBSD: Makefile,v 1.14 2009/01/07 21:06:02 wiz Exp $
|
||||
# $NetBSD: Makefile,v 1.15 2009/01/18 17:12:56 wiz Exp $
|
||||
#
|
||||
|
||||
DISTNAME= pycairo-1.8.0
|
||||
DISTNAME= pycairo-1.8.2
|
||||
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/py//}
|
||||
CATEGORIES= graphics
|
||||
MASTER_SITES= http://cairographics.org/releases/
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
$NetBSD: distinfo,v 1.8 2009/01/07 21:05:22 wiz Exp $
|
||||
$NetBSD: distinfo,v 1.9 2009/01/18 17:12:56 wiz Exp $
|
||||
|
||||
SHA1 (pycairo-1.8.0.tar.gz) = b9b50f4202b022365f30824459c2b39fb33e891f
|
||||
RMD160 (pycairo-1.8.0.tar.gz) = 0435c394cc343de21b7a0f00dab0f9f943912612
|
||||
Size (pycairo-1.8.0.tar.gz) = 517701 bytes
|
||||
SHA1 (pycairo-1.8.2.tar.gz) = b457949ccfa3af82afcffae8a396a1c840a9428a
|
||||
RMD160 (pycairo-1.8.2.tar.gz) = ce48a6b71b802f07d0e0d3cfa140fd39ab5fe4d7
|
||||
Size (pycairo-1.8.2.tar.gz) = 519064 bytes
|
||||
SHA1 (patch-aa) = 1177a5421d80273721a80603dbd4cfca0fdf1b18
|
||||
SHA1 (patch-ab) = e8fcf835f97b38df476f09d7bcfe1f84b0264aa3
|
||||
SHA1 (patch-ac) = 93cc7fa29f90872dad22b83bc783acf9f1279093
|
||||
|
|
Loading…
Reference in a new issue