diff options
author | Justin Lecher <jlec@gentoo.org> | 2013-06-10 15:13:20 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2013-06-10 15:13:20 +0000 |
commit | e7c52c77da000f9b3426d3f4d3ce2da11640fd08 (patch) | |
tree | 6062f47375644c0dca18b19263c433cc76f667c4 /media-gfx/qrencode-python/files | |
parent | version bump (diff) | |
download | historical-e7c52c77da000f9b3426d3f4d3ce2da11640fd08.tar.gz historical-e7c52c77da000f9b3426d3f4d3ce2da11640fd08.tar.bz2 historical-e7c52c77da000f9b3426d3f4d3ce2da11640fd08.zip |
media-gfx/qrencode-python: Move to new distutils eclass; add fix for PILimports, #472772
Package-Manager: portage-2.2.0_alpha179/cvs/Linux x86_64
Manifest-Sign-Key: 0x8009D6F070EB7916
Diffstat (limited to 'media-gfx/qrencode-python/files')
-rw-r--r-- | media-gfx/qrencode-python/files/qrencode-python-1.01-PIL.patch | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/media-gfx/qrencode-python/files/qrencode-python-1.01-PIL.patch b/media-gfx/qrencode-python/files/qrencode-python-1.01-PIL.patch new file mode 100644 index 000000000000..0f0b2d4912e0 --- /dev/null +++ b/media-gfx/qrencode-python/files/qrencode-python-1.01-PIL.patch @@ -0,0 +1,14 @@ + qrencode/__init__.py | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/qrencode/__init__.py b/qrencode/__init__.py +index 4ca5396..ba0c15e 100644 +--- a/qrencode/__init__.py ++++ b/qrencode/__init__.py +@@ -1,5 +1,5 @@ + from qr_encode import encode as _encode +-import Image ++from PIL import Image + + + QR_ECLEVEL_L = 0 |