diff options
author | drochner <drochner@pkgsrc.org> | 2007-03-23 20:47:56 +0000 |
---|---|---|
committer | drochner <drochner@pkgsrc.org> | 2007-03-23 20:47:56 +0000 |
commit | 31a0d4ff14cb482c50674bf68102fdee3fdfc261 (patch) | |
tree | 31356dc18c72e87d71eb19b9c9a44e6347b915e6 /graphics/py-imagingtk | |
parent | 1c33fcebc15541187e0271561f5f1d35e31baccc (diff) | |
download | pkgsrc-31a0d4ff14cb482c50674bf68102fdee3fdfc261.tar.gz |
update to 1.1.6
changes:
+ Added buffer interface support to the Path constructor
+ Added new ImageMath module.
+ Added pixel access object
+ Added support for duplex scanning to the Sane interface
+ Added save support for Spider images
+ Added float/double support to the TIFF loader
+ Added NumPy array interface support
+ Added experimental "floodfill" function to the ImageDraw module
+ Added threading support for the Sane driver
-bugfixes
Diffstat (limited to 'graphics/py-imagingtk')
-rw-r--r-- | graphics/py-imagingtk/Makefile | 7 | ||||
-rw-r--r-- | graphics/py-imagingtk/distinfo | 10 | ||||
-rw-r--r-- | graphics/py-imagingtk/patches/patch-aa | 14 |
3 files changed, 15 insertions, 16 deletions
diff --git a/graphics/py-imagingtk/Makefile b/graphics/py-imagingtk/Makefile index 025a5003a6c..0be56ea0305 100644 --- a/graphics/py-imagingtk/Makefile +++ b/graphics/py-imagingtk/Makefile @@ -1,9 +1,8 @@ -# $NetBSD: Makefile,v 1.21 2007/02/22 19:26:36 wiz Exp $ +# $NetBSD: Makefile,v 1.22 2007/03/23 20:47:57 drochner Exp $ # -DISTNAME= Imaging-1.1.5 -PKGNAME= ${PYPKGPREFIX}-imagingtk-1.1.5 -PKGREVISION= 1 +DISTNAME= Imaging-1.1.6 +PKGNAME= ${PYPKGPREFIX}-imagingtk-1.1.6 CATEGORIES= graphics python MASTER_SITES= http://effbot.org/downloads/ diff --git a/graphics/py-imagingtk/distinfo b/graphics/py-imagingtk/distinfo index 40dd38018db..e04a18c8fb7 100644 --- a/graphics/py-imagingtk/distinfo +++ b/graphics/py-imagingtk/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.7 2005/10/12 14:48:44 drochner Exp $ +$NetBSD: distinfo,v 1.8 2007/03/23 20:47:58 drochner Exp $ -SHA1 (python/Imaging-1.1.5.tar.gz) = 06705b31b534a15aef827bccc87dceb9ebc51b9f -RMD160 (python/Imaging-1.1.5.tar.gz) = 99ca581f2f96d1112f6c36eccdf96da1ac014a04 -Size (python/Imaging-1.1.5.tar.gz) = 429570 bytes -SHA1 (patch-aa) = 1576267cd4274307d7f680c1e834930477e7603f +SHA1 (python/Imaging-1.1.6.tar.gz) = 952d241e4af8ba09f74e6926108b7c0c748d0f89 +RMD160 (python/Imaging-1.1.6.tar.gz) = 336bb92482eb833e5bb1c9e8c1e585c9bdc338d1 +Size (python/Imaging-1.1.6.tar.gz) = 435854 bytes +SHA1 (patch-aa) = 1bd23b386fc9b42a20e6f67689a5277a6912e9a7 diff --git a/graphics/py-imagingtk/patches/patch-aa b/graphics/py-imagingtk/patches/patch-aa index 9c6a1114d57..36e62569643 100644 --- a/graphics/py-imagingtk/patches/patch-aa +++ b/graphics/py-imagingtk/patches/patch-aa @@ -1,8 +1,8 @@ -$NetBSD: patch-aa,v 1.2 2005/10/12 14:48:44 drochner Exp $ +$NetBSD: patch-aa,v 1.3 2007/03/23 20:47:58 drochner Exp $ ---- setup.py.orig 2005-03-23 19:16:40.000000000 +0100 +--- setup.py.orig 2006-12-03 12:37:29.000000000 +0100 +++ setup.py -@@ -177,9 +177,6 @@ class pil_build_ext(build_ext): +@@ -193,9 +193,6 @@ class pil_build_ext(build_ext): # # add standard directories @@ -12,7 +12,7 @@ $NetBSD: patch-aa,v 1.2 2005/10/12 14:48:44 drochner Exp $ add_directory(library_dirs, "/usr/lib") add_directory(include_dirs, "/usr/include") -@@ -210,7 +207,7 @@ class pil_build_ext(build_ext): +@@ -226,7 +223,7 @@ class pil_build_ext(build_ext): if find_library_file(self, "tiff"): feature.tiff = "tiff" @@ -20,8 +20,8 @@ $NetBSD: patch-aa,v 1.2 2005/10/12 14:48:44 drochner Exp $ + if 0: # look for freetype2 include files freetype_version = 0 - for dir in include_dirs: -@@ -265,9 +262,10 @@ class pil_build_ext(build_ext): + for dir in self.compiler.include_dirs: +@@ -281,9 +278,10 @@ class pil_build_ext(build_ext): if struct.unpack("h", "\0\1")[0] == 1: defs.append(("WORDS_BIGENDIAN", None)) @@ -35,7 +35,7 @@ $NetBSD: patch-aa,v 1.2 2005/10/12 14:48:44 drochner Exp $ # # additional libraries -@@ -430,10 +428,10 @@ if __name__ == "__main__": +@@ -448,10 +446,10 @@ if __name__ == "__main__": license="Python (MIT style)", long_description=DESCRIPTION, name=NAME, |