gentoo/dev-python/cgkit/files/cgkit-py2k-pillow.patch
Robin H. Johnson 56bd759df1
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.

This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.

Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.

Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
2015-08-08 17:38:18 -07:00

83 lines
2.0 KiB
Diff

From 83cb693954f6f56e50a1aa90d935e94e9e8bac8e Mon Sep 17 00:00:00 2001
From: Mike Gilbert <floppym@gentoo.org>
Date: Wed, 5 Jun 2013 20:39:05 -0400
Subject: [PATCH] Update PIL imports for compatibility with Pillow
---
cgkit/_Image.py | 2 +-
cgkit/_ImageDraw.py | 2 +-
cgkit/riutil.py | 2 +-
utilities/checkenv.py | 2 +-
utilities/postbake.py | 3 ++-
5 files changed, 6 insertions(+), 5 deletions(-)
diff --git a/cgkit/_Image.py b/cgkit/_Image.py
index 7266d4b..0122cd2 100644
--- a/cgkit/_Image.py
+++ b/cgkit/_Image.py
@@ -38,7 +38,7 @@
try:
# Try to import the original module...
- from Image import *
+ from PIL.Image import *
except ImportError:
diff --git a/cgkit/_ImageDraw.py b/cgkit/_ImageDraw.py
index dfd6cf8..d1d3cff 100644
--- a/cgkit/_ImageDraw.py
+++ b/cgkit/_ImageDraw.py
@@ -38,7 +38,7 @@
try:
# Try to import the original module...
- from ImageDraw import *
+ from PIL.ImageDraw import *
except ImportError:
diff --git a/cgkit/riutil.py b/cgkit/riutil.py
index 301e0f6..ae373c3 100644
--- a/cgkit/riutil.py
+++ b/cgkit/riutil.py
@@ -38,7 +38,7 @@ import types, sys, getpass
from cgtypes import vec3
from ri import *
try:
- import Image
+ from PIL import Image
_PIL_installed = 1
except ImportError:
_PIL_installed = 0
diff --git a/utilities/checkenv.py b/utilities/checkenv.py
index b95dbf7..c93235e 100644
--- a/utilities/checkenv.py
+++ b/utilities/checkenv.py
@@ -96,7 +96,7 @@ visualize them. You can obtain PyOpenGL at http://pyopengl.sourceforge.net/
# Check PIL
chkmsg("PIL")
try:
- import Image
+ from PIL import Image
print "is installed"
except:
print "missing"
diff --git a/utilities/postbake.py b/utilities/postbake.py
index cadd11d..74f894a 100644
--- a/utilities/postbake.py
+++ b/utilities/postbake.py
@@ -34,7 +34,8 @@
#
# ***** END LICENSE BLOCK *****
-import sys, optparse, Image
+import sys, optparse
+from PIL import Image
# shift
def shift(img, dx, dy):
--
1.8.2.1