Changes 4.0.0:
- Refactor out postprocessing hack to load_end in PcdImageFile
- Add center and translate option to Image.rotate. 2328
- Test: Relax WMF test condition, fixes 2323
- Allow 0 size images, Fixes 2259, Reverts to pre-3.4 behavior.
- SGI: Save uncompressed SGI/BW/RGB/RGBA files 2325
- Depends: Updated pngquant to 2.8.2 2319
- Test: Added correctness tests for opening SGI images 2324
- Allow passing a list or tuple of individual frame durations when saving a GIF 2298
- Unified different GIF optimize conditions 2196
- Build: Refactor dependency installation 2305
- Test: Add python 3.6 to travis, tox 2304
- Test: Fix coveralls coverage for Python+C 2300
- Remove executable bit and shebang from OleFileIO.py 2308
- PyPy: Buffer interface workaround 2294
- Test: Switch to Ubuntu Trusty 14.04 on Travis CI 2294
- Remove vendored version of olefile Python package in favor of upstream 2199
- Updated comments to use print as a function 2234
- Set executable flag on selftest.py, setup.py and added shebang line 2282, 2277
- Test: Increase epsilon for FreeType 2.7 as rendering is slightly different. 2286
- Test: Faster assert_image_similar 2279
- Removed depreciated internal "stretch" method 2276
- Removed the handles_eof flag in decode.c 2223
- Tiff: Fix for writing Tiff to BytesIO using libtiff 2263
- Doc: Design docs 2269
- Test: Move tests requiring libtiff to test_file_libtiff 2273
- Update Maxblock heuristic 2275
- Fix for 2-bit palette corruption 2274
- Tiff: Update info.icc_profile when using libtiff reader. 2193
- Test: Fix bug in test_ifd_rational_save when libtiff is not available 2270
- ICO: Only save relevant sizes 2267
- ICO: Allow saving .ico files of 256x256 instead of 255x255 2265
- Fix TIFFImagePlugin ICC color profile saving. 2087
- Doc: Improved description of ImageOps.deform resample parameter 2256
- EMF: support negative bounding box coordinates 2249
- Close file if opened in WalImageFile 2216
- Use Image._new() instead of _makeself() 2248
- SunImagePlugin fixes 2241
- Use minimal scale for jpeg drafts 2240
- Updated dependency scripts to use FreeType 2.7, OpenJpeg 2.1.2, WebP 0.5.2 and Tcl/Tk 8.6.6 2235, 2236, 2237, 2290, 2302
- Fix "invalid escape sequence" bytestring warnings in Python 3.6 2186
- Removed support for Python 2.6 and Python 3.2 2192
- Setup: Raise custom exceptions when required/requested dependencies are not found 2213
- Use a context manager in FontFile.save() to ensure file is always closed 2226
- Fixed bug in saving to fp-objects in Python >= 3.4 2227
- Use a context manager in ImageFont._load_pilfont() to ensure file is always closed 2232
- Use generator expressions instead of list comprehension 2225
- Close file after reading in ImagePalette.load() 2215
- Changed behaviour of default box argument for paste method to match docs 2211
- Add support for another BMP bitfield 2221
- Added missing top-level test __main__ 2222
- Replaced range(len()) 2197
- Fix for ImageQt Segfault, fixes 1370 2182
- Setup: Close file in setup.py after finished reading 2208
- Setup: optionally use pkg-config (when present) to detect dependencies 2074
- Search for tkinter first in builtins 2210
- Tests: Replace try/except/fail pattern with TestCase.assertRaises() 2200
- Tests: Remove unused, open files at top level of tests 2188
- Replace type() equality checks with isinstance 2184
- Doc: Move ICO out of the list of read-only file formats 2180
- Doc: Fix formatting, too-short title underlines and malformed table 2175
- Fix BytesWarnings 2172
- Use Integer division to eliminate deprecation warning. 2168
- Doc: Update compatibility matrix
2017-01-29 13:46:45 +01:00
|
|
|
@comment $NetBSD: PLIST,v 1.11 2017/01/29 12:46:45 adam Exp $
|
2013-12-07 13:56:52 +01:00
|
|
|
${PYSITELIB}/PIL/BdfFontFile.py
|
|
|
|
${PYSITELIB}/PIL/BdfFontFile.pyc
|
|
|
|
${PYSITELIB}/PIL/BdfFontFile.pyo
|
|
|
|
${PYSITELIB}/PIL/BmpImagePlugin.py
|
|
|
|
${PYSITELIB}/PIL/BmpImagePlugin.pyc
|
|
|
|
${PYSITELIB}/PIL/BmpImagePlugin.pyo
|
|
|
|
${PYSITELIB}/PIL/BufrStubImagePlugin.py
|
|
|
|
${PYSITELIB}/PIL/BufrStubImagePlugin.pyc
|
|
|
|
${PYSITELIB}/PIL/BufrStubImagePlugin.pyo
|
|
|
|
${PYSITELIB}/PIL/ContainerIO.py
|
|
|
|
${PYSITELIB}/PIL/ContainerIO.pyc
|
|
|
|
${PYSITELIB}/PIL/ContainerIO.pyo
|
|
|
|
${PYSITELIB}/PIL/CurImagePlugin.py
|
|
|
|
${PYSITELIB}/PIL/CurImagePlugin.pyc
|
|
|
|
${PYSITELIB}/PIL/CurImagePlugin.pyo
|
|
|
|
${PYSITELIB}/PIL/DcxImagePlugin.py
|
|
|
|
${PYSITELIB}/PIL/DcxImagePlugin.pyc
|
|
|
|
${PYSITELIB}/PIL/DcxImagePlugin.pyo
|
Update graphics/py-Pillow to 3.2.0
pkgsrc changes:
o Simplify MASTER_SITES
o Add LICENSE
o Disable the tests for now (that were also broken for 3.1.2 version).
All the modules are builded in build/lib.*/PIL/ while selftest.py just
checks in PIL/. Manually cp(1)-ing all the build/lib.*/PIL/ files in PIL/
work as a workaround (and all test are passed) although implementing a
similar (distutils.cmd) logic will be easily buggy.
Changes:
3.2.0 (2016-04-01)
------------------
- Added install docs for Fedora 23 and FreeBSD #1729, #1739, #1792
[koobs, zandermartin, wiredfool]
- Fixed TIFF multiframe load when the frames have different compression types #1782
[radarhere, geka000]
- Added __copy__ method to Image #1772
[radarhere]
- Updated dates in PIL license in OleFileIO README #1787
[radarhere]
- Corrected Tiff tag names #1786
[radarhere]
- Fixed documented name of JPEG property #1783
[radarhere]
- Fixed UnboundLocalErrorwhen loading a corrupt jpeg2k file #1780
[wiredfool]
- Fixed integer overflow in path.c #1773
[wiredfool, nedwill]
- Added debug to command line help text for pilprint #1766
[radarhere]
- Expose many more fields in ICC Profiles #1756
[lambdafu]
- Documentation changes, URL update, transpose, release checklist
[radarhere]
- Fixed saving to nonexistant files specified by pathlib.Path objects, fixes #1747
[radarhere]
- Round Image.crop arguments to the nearest integer, fixes #1744
[hugovk]
- Fix uninitialized variable warning in _imaging.c:getink, fixes #486
[wiredfool]
- Disable multiprocessing install on cygwin, fixes #1690
[wiredfool]
- Fix the error reported when libz is not found #1764
[wiredfool]
- More general error check to avoid Symbol not found: _PyUnicodeUCS2_AsLatin1String on OS X #1761
[wiredfool]
- Added py35 to tox envlist #1724
[radarhere]
- Fix EXIF tag name typos #1736
[zarlant, radarhere]
- Updated freetype to 2.6.3, Tk/Tcl to 8.6.5 and 8.5.19
[radarhere]
- Add a loader for the FTEX format from Independence War 2: Edge of Chaos #1688
[jleclanche]
- Improved alpha_composite documentation #1698
[radarhere]
- Extend ImageDraw.text method to pass on multiline_text method specific arguments #1647
[radarhere]
- Allow ImageSequence to seek to zero #1686
[radarhere]
- ImageSequence Iterator is now an iterator #1649
[radarhere]
- Updated windows test builds to jpeg9b
[radarhere]
- Fixed support for .gbr version 1 images, added support for version 2 in GbrImagePlugin #1653
[wiredfool]
- Clarified which YCbCr format is used #1677
[radarhere]
- Added TiffTags documentation, Moved windows build documentation to winbuild/ #1667
[wiredfool]
- Add tests for OLE file based formats #1678
[radarhere]
- Add TIFF IFD test #1671
[radarhere]
- Add a basic DDS image plugin with more tests #1654
[jleclanche, hugovk, wiredfool]
- Fix incorrect conditional in encode.c #1638
[manisandro]
2016-04-21 10:13:50 +02:00
|
|
|
${PYSITELIB}/PIL/DdsImagePlugin.py
|
|
|
|
${PYSITELIB}/PIL/DdsImagePlugin.pyc
|
|
|
|
${PYSITELIB}/PIL/DdsImagePlugin.pyo
|
2013-12-07 13:56:52 +01:00
|
|
|
${PYSITELIB}/PIL/EpsImagePlugin.py
|
|
|
|
${PYSITELIB}/PIL/EpsImagePlugin.pyc
|
|
|
|
${PYSITELIB}/PIL/EpsImagePlugin.pyo
|
|
|
|
${PYSITELIB}/PIL/ExifTags.py
|
|
|
|
${PYSITELIB}/PIL/ExifTags.pyc
|
|
|
|
${PYSITELIB}/PIL/ExifTags.pyo
|
|
|
|
${PYSITELIB}/PIL/FitsStubImagePlugin.py
|
|
|
|
${PYSITELIB}/PIL/FitsStubImagePlugin.pyc
|
|
|
|
${PYSITELIB}/PIL/FitsStubImagePlugin.pyo
|
|
|
|
${PYSITELIB}/PIL/FliImagePlugin.py
|
|
|
|
${PYSITELIB}/PIL/FliImagePlugin.pyc
|
|
|
|
${PYSITELIB}/PIL/FliImagePlugin.pyo
|
|
|
|
${PYSITELIB}/PIL/FontFile.py
|
|
|
|
${PYSITELIB}/PIL/FontFile.pyc
|
|
|
|
${PYSITELIB}/PIL/FontFile.pyo
|
|
|
|
${PYSITELIB}/PIL/FpxImagePlugin.py
|
|
|
|
${PYSITELIB}/PIL/FpxImagePlugin.pyc
|
|
|
|
${PYSITELIB}/PIL/FpxImagePlugin.pyo
|
Update graphics/py-Pillow to 3.2.0
pkgsrc changes:
o Simplify MASTER_SITES
o Add LICENSE
o Disable the tests for now (that were also broken for 3.1.2 version).
All the modules are builded in build/lib.*/PIL/ while selftest.py just
checks in PIL/. Manually cp(1)-ing all the build/lib.*/PIL/ files in PIL/
work as a workaround (and all test are passed) although implementing a
similar (distutils.cmd) logic will be easily buggy.
Changes:
3.2.0 (2016-04-01)
------------------
- Added install docs for Fedora 23 and FreeBSD #1729, #1739, #1792
[koobs, zandermartin, wiredfool]
- Fixed TIFF multiframe load when the frames have different compression types #1782
[radarhere, geka000]
- Added __copy__ method to Image #1772
[radarhere]
- Updated dates in PIL license in OleFileIO README #1787
[radarhere]
- Corrected Tiff tag names #1786
[radarhere]
- Fixed documented name of JPEG property #1783
[radarhere]
- Fixed UnboundLocalErrorwhen loading a corrupt jpeg2k file #1780
[wiredfool]
- Fixed integer overflow in path.c #1773
[wiredfool, nedwill]
- Added debug to command line help text for pilprint #1766
[radarhere]
- Expose many more fields in ICC Profiles #1756
[lambdafu]
- Documentation changes, URL update, transpose, release checklist
[radarhere]
- Fixed saving to nonexistant files specified by pathlib.Path objects, fixes #1747
[radarhere]
- Round Image.crop arguments to the nearest integer, fixes #1744
[hugovk]
- Fix uninitialized variable warning in _imaging.c:getink, fixes #486
[wiredfool]
- Disable multiprocessing install on cygwin, fixes #1690
[wiredfool]
- Fix the error reported when libz is not found #1764
[wiredfool]
- More general error check to avoid Symbol not found: _PyUnicodeUCS2_AsLatin1String on OS X #1761
[wiredfool]
- Added py35 to tox envlist #1724
[radarhere]
- Fix EXIF tag name typos #1736
[zarlant, radarhere]
- Updated freetype to 2.6.3, Tk/Tcl to 8.6.5 and 8.5.19
[radarhere]
- Add a loader for the FTEX format from Independence War 2: Edge of Chaos #1688
[jleclanche]
- Improved alpha_composite documentation #1698
[radarhere]
- Extend ImageDraw.text method to pass on multiline_text method specific arguments #1647
[radarhere]
- Allow ImageSequence to seek to zero #1686
[radarhere]
- ImageSequence Iterator is now an iterator #1649
[radarhere]
- Updated windows test builds to jpeg9b
[radarhere]
- Fixed support for .gbr version 1 images, added support for version 2 in GbrImagePlugin #1653
[wiredfool]
- Clarified which YCbCr format is used #1677
[radarhere]
- Added TiffTags documentation, Moved windows build documentation to winbuild/ #1667
[wiredfool]
- Add tests for OLE file based formats #1678
[radarhere]
- Add TIFF IFD test #1671
[radarhere]
- Add a basic DDS image plugin with more tests #1654
[jleclanche, hugovk, wiredfool]
- Fix incorrect conditional in encode.c #1638
[manisandro]
2016-04-21 10:13:50 +02:00
|
|
|
${PYSITELIB}/PIL/FtexImagePlugin.py
|
|
|
|
${PYSITELIB}/PIL/FtexImagePlugin.pyc
|
|
|
|
${PYSITELIB}/PIL/FtexImagePlugin.pyo
|
2013-12-07 13:56:52 +01:00
|
|
|
${PYSITELIB}/PIL/GbrImagePlugin.py
|
|
|
|
${PYSITELIB}/PIL/GbrImagePlugin.pyc
|
|
|
|
${PYSITELIB}/PIL/GbrImagePlugin.pyo
|
|
|
|
${PYSITELIB}/PIL/GdImageFile.py
|
|
|
|
${PYSITELIB}/PIL/GdImageFile.pyc
|
|
|
|
${PYSITELIB}/PIL/GdImageFile.pyo
|
|
|
|
${PYSITELIB}/PIL/GifImagePlugin.py
|
|
|
|
${PYSITELIB}/PIL/GifImagePlugin.pyc
|
|
|
|
${PYSITELIB}/PIL/GifImagePlugin.pyo
|
|
|
|
${PYSITELIB}/PIL/GimpGradientFile.py
|
|
|
|
${PYSITELIB}/PIL/GimpGradientFile.pyc
|
|
|
|
${PYSITELIB}/PIL/GimpGradientFile.pyo
|
|
|
|
${PYSITELIB}/PIL/GimpPaletteFile.py
|
|
|
|
${PYSITELIB}/PIL/GimpPaletteFile.pyc
|
|
|
|
${PYSITELIB}/PIL/GimpPaletteFile.pyo
|
|
|
|
${PYSITELIB}/PIL/GribStubImagePlugin.py
|
|
|
|
${PYSITELIB}/PIL/GribStubImagePlugin.pyc
|
|
|
|
${PYSITELIB}/PIL/GribStubImagePlugin.pyo
|
|
|
|
${PYSITELIB}/PIL/Hdf5StubImagePlugin.py
|
|
|
|
${PYSITELIB}/PIL/Hdf5StubImagePlugin.pyc
|
|
|
|
${PYSITELIB}/PIL/Hdf5StubImagePlugin.pyo
|
|
|
|
${PYSITELIB}/PIL/IcnsImagePlugin.py
|
|
|
|
${PYSITELIB}/PIL/IcnsImagePlugin.pyc
|
|
|
|
${PYSITELIB}/PIL/IcnsImagePlugin.pyo
|
|
|
|
${PYSITELIB}/PIL/IcoImagePlugin.py
|
|
|
|
${PYSITELIB}/PIL/IcoImagePlugin.pyc
|
|
|
|
${PYSITELIB}/PIL/IcoImagePlugin.pyo
|
|
|
|
${PYSITELIB}/PIL/ImImagePlugin.py
|
|
|
|
${PYSITELIB}/PIL/ImImagePlugin.pyc
|
|
|
|
${PYSITELIB}/PIL/ImImagePlugin.pyo
|
|
|
|
${PYSITELIB}/PIL/Image.py
|
|
|
|
${PYSITELIB}/PIL/Image.pyc
|
|
|
|
${PYSITELIB}/PIL/Image.pyo
|
|
|
|
${PYSITELIB}/PIL/ImageChops.py
|
|
|
|
${PYSITELIB}/PIL/ImageChops.pyc
|
|
|
|
${PYSITELIB}/PIL/ImageChops.pyo
|
|
|
|
${PYSITELIB}/PIL/ImageCms.py
|
|
|
|
${PYSITELIB}/PIL/ImageCms.pyc
|
|
|
|
${PYSITELIB}/PIL/ImageCms.pyo
|
|
|
|
${PYSITELIB}/PIL/ImageColor.py
|
|
|
|
${PYSITELIB}/PIL/ImageColor.pyc
|
|
|
|
${PYSITELIB}/PIL/ImageColor.pyo
|
|
|
|
${PYSITELIB}/PIL/ImageDraw.py
|
|
|
|
${PYSITELIB}/PIL/ImageDraw.pyc
|
|
|
|
${PYSITELIB}/PIL/ImageDraw.pyo
|
|
|
|
${PYSITELIB}/PIL/ImageDraw2.py
|
|
|
|
${PYSITELIB}/PIL/ImageDraw2.pyc
|
|
|
|
${PYSITELIB}/PIL/ImageDraw2.pyo
|
|
|
|
${PYSITELIB}/PIL/ImageEnhance.py
|
|
|
|
${PYSITELIB}/PIL/ImageEnhance.pyc
|
|
|
|
${PYSITELIB}/PIL/ImageEnhance.pyo
|
|
|
|
${PYSITELIB}/PIL/ImageFile.py
|
|
|
|
${PYSITELIB}/PIL/ImageFile.pyc
|
|
|
|
${PYSITELIB}/PIL/ImageFile.pyo
|
|
|
|
${PYSITELIB}/PIL/ImageFilter.py
|
|
|
|
${PYSITELIB}/PIL/ImageFilter.pyc
|
|
|
|
${PYSITELIB}/PIL/ImageFilter.pyo
|
|
|
|
${PYSITELIB}/PIL/ImageFont.py
|
|
|
|
${PYSITELIB}/PIL/ImageFont.pyc
|
|
|
|
${PYSITELIB}/PIL/ImageFont.pyo
|
|
|
|
${PYSITELIB}/PIL/ImageGrab.py
|
|
|
|
${PYSITELIB}/PIL/ImageGrab.pyc
|
|
|
|
${PYSITELIB}/PIL/ImageGrab.pyo
|
|
|
|
${PYSITELIB}/PIL/ImageMath.py
|
|
|
|
${PYSITELIB}/PIL/ImageMath.pyc
|
|
|
|
${PYSITELIB}/PIL/ImageMath.pyo
|
|
|
|
${PYSITELIB}/PIL/ImageMode.py
|
|
|
|
${PYSITELIB}/PIL/ImageMode.pyc
|
|
|
|
${PYSITELIB}/PIL/ImageMode.pyo
|
2014-07-06 14:15:53 +02:00
|
|
|
${PYSITELIB}/PIL/ImageMorph.py
|
|
|
|
${PYSITELIB}/PIL/ImageMorph.pyc
|
|
|
|
${PYSITELIB}/PIL/ImageMorph.pyo
|
2013-12-07 13:56:52 +01:00
|
|
|
${PYSITELIB}/PIL/ImageOps.py
|
|
|
|
${PYSITELIB}/PIL/ImageOps.pyc
|
|
|
|
${PYSITELIB}/PIL/ImageOps.pyo
|
|
|
|
${PYSITELIB}/PIL/ImagePalette.py
|
|
|
|
${PYSITELIB}/PIL/ImagePalette.pyc
|
|
|
|
${PYSITELIB}/PIL/ImagePalette.pyo
|
|
|
|
${PYSITELIB}/PIL/ImagePath.py
|
|
|
|
${PYSITELIB}/PIL/ImagePath.pyc
|
|
|
|
${PYSITELIB}/PIL/ImagePath.pyo
|
|
|
|
${PYSITELIB}/PIL/ImageQt.py
|
|
|
|
${PYSITELIB}/PIL/ImageQt.pyc
|
|
|
|
${PYSITELIB}/PIL/ImageQt.pyo
|
|
|
|
${PYSITELIB}/PIL/ImageSequence.py
|
|
|
|
${PYSITELIB}/PIL/ImageSequence.pyc
|
|
|
|
${PYSITELIB}/PIL/ImageSequence.pyo
|
|
|
|
${PYSITELIB}/PIL/ImageShow.py
|
|
|
|
${PYSITELIB}/PIL/ImageShow.pyc
|
|
|
|
${PYSITELIB}/PIL/ImageShow.pyo
|
|
|
|
${PYSITELIB}/PIL/ImageStat.py
|
|
|
|
${PYSITELIB}/PIL/ImageStat.pyc
|
|
|
|
${PYSITELIB}/PIL/ImageStat.pyo
|
|
|
|
${PYSITELIB}/PIL/ImageTk.py
|
|
|
|
${PYSITELIB}/PIL/ImageTk.pyc
|
|
|
|
${PYSITELIB}/PIL/ImageTk.pyo
|
|
|
|
${PYSITELIB}/PIL/ImageTransform.py
|
|
|
|
${PYSITELIB}/PIL/ImageTransform.pyc
|
|
|
|
${PYSITELIB}/PIL/ImageTransform.pyo
|
|
|
|
${PYSITELIB}/PIL/ImageWin.py
|
|
|
|
${PYSITELIB}/PIL/ImageWin.pyc
|
|
|
|
${PYSITELIB}/PIL/ImageWin.pyo
|
|
|
|
${PYSITELIB}/PIL/ImtImagePlugin.py
|
|
|
|
${PYSITELIB}/PIL/ImtImagePlugin.pyc
|
|
|
|
${PYSITELIB}/PIL/ImtImagePlugin.pyo
|
|
|
|
${PYSITELIB}/PIL/IptcImagePlugin.py
|
|
|
|
${PYSITELIB}/PIL/IptcImagePlugin.pyc
|
|
|
|
${PYSITELIB}/PIL/IptcImagePlugin.pyo
|
Update py-Pillow to 2.4.0.
* Based on patch from adam@.
* Add self test target.
Changelog (Pillow)
==================
2.4.0 (04/01/2014)
------------------
- Indexed Transparency handled for conversions between L, RGB, and P modes. Fixes #510
[wiredfool]
- Conversions enabled from RGBA->P, Fixes #544
[wiredfool]
- Improved icns support
[al45tair]
- Fix libtiff leaking open files, fixes #580
[wiredfool]
- Fixes for Jpeg encoding in Python 3, fixes #577
[wiredfool]
- Added support for JPEG 2000
[al45tair]
- Add more detailed error messages to Image.py
[larsmans]
- Avoid conflicting _expand functions in PIL & MINGW, fixes #538
[aclark]
- Merge from Philippe Lagadec’s OleFileIO_PL fork
[vadmium]
- Fix ImageColor.getcolor
[homm]
- Make ICO files work with the ImageFile.Parser interface, fixes #522
[wiredfool]
- Handle 32bit compiled python on 64bit architecture
[choppsv1]
- Fix support for characters >128 using .pcf or .pil fonts in Py3k. Fixes #505
[wiredfool]
- Skip CFFI test earlier if it's not installed
[wiredfool]
- Fixed opening and saving odd sized .pcx files, fixes #523
[wiredfool]
- Fixed palette handling when converting from mode P->RGB->P
[d_schmidt]
- Fixed saving mode P image as a PNG with transparency = palette color 0
[d-schmidt]
- Improve heuristic used when saving progressive and optimized JPEGs with high quality values
[e98cuenc]
- Fixed DOS with invalid palette size or invalid image size in BMP file
[wiredfool]
- Added support for BMP version 4 and 5
[eddwardo, wiredfool]
- Fix segfault in getfont when passed a memory resident font
[wiredfool]
- Fix crash on Saving a PNG when icc-profile is None
[brutasse]
- Cffi+Python implementation of the PixelAccess object
[wiredfool]
- PixelAccess returns unsigned ints for I16 mode
[wiredfool]
- Minor patch on booleans + Travis
[sciunto]
- Look in multiarch paths in GNU platforms
[pinotree]
- Add arch support for pcc64, s390, s390x, armv7l, aarch64
[manisandro]
- Add arch support for ppc
[wiredfool]
- Correctly quote file names for WindowsViewer command
[cgohlke]
- Prefer homebrew freetype over X11 freetype (but still allow both)
[dmckeone]
2014-04-18 15:00:49 +02:00
|
|
|
${PYSITELIB}/PIL/Jpeg2KImagePlugin.py
|
|
|
|
${PYSITELIB}/PIL/Jpeg2KImagePlugin.pyc
|
|
|
|
${PYSITELIB}/PIL/Jpeg2KImagePlugin.pyo
|
2013-12-07 13:56:52 +01:00
|
|
|
${PYSITELIB}/PIL/JpegImagePlugin.py
|
|
|
|
${PYSITELIB}/PIL/JpegImagePlugin.pyc
|
|
|
|
${PYSITELIB}/PIL/JpegImagePlugin.pyo
|
|
|
|
${PYSITELIB}/PIL/JpegPresets.py
|
|
|
|
${PYSITELIB}/PIL/JpegPresets.pyc
|
|
|
|
${PYSITELIB}/PIL/JpegPresets.pyo
|
|
|
|
${PYSITELIB}/PIL/McIdasImagePlugin.py
|
|
|
|
${PYSITELIB}/PIL/McIdasImagePlugin.pyc
|
|
|
|
${PYSITELIB}/PIL/McIdasImagePlugin.pyo
|
|
|
|
${PYSITELIB}/PIL/MicImagePlugin.py
|
|
|
|
${PYSITELIB}/PIL/MicImagePlugin.pyc
|
|
|
|
${PYSITELIB}/PIL/MicImagePlugin.pyo
|
|
|
|
${PYSITELIB}/PIL/MpegImagePlugin.py
|
|
|
|
${PYSITELIB}/PIL/MpegImagePlugin.pyc
|
|
|
|
${PYSITELIB}/PIL/MpegImagePlugin.pyo
|
2014-11-30 11:11:31 +01:00
|
|
|
${PYSITELIB}/PIL/MpoImagePlugin.py
|
|
|
|
${PYSITELIB}/PIL/MpoImagePlugin.pyc
|
|
|
|
${PYSITELIB}/PIL/MpoImagePlugin.pyo
|
2013-12-07 13:56:52 +01:00
|
|
|
${PYSITELIB}/PIL/MspImagePlugin.py
|
|
|
|
${PYSITELIB}/PIL/MspImagePlugin.pyc
|
|
|
|
${PYSITELIB}/PIL/MspImagePlugin.pyo
|
|
|
|
${PYSITELIB}/PIL/OleFileIO.py
|
|
|
|
${PYSITELIB}/PIL/OleFileIO.pyc
|
|
|
|
${PYSITELIB}/PIL/OleFileIO.pyo
|
|
|
|
${PYSITELIB}/PIL/PSDraw.py
|
|
|
|
${PYSITELIB}/PIL/PSDraw.pyc
|
|
|
|
${PYSITELIB}/PIL/PSDraw.pyo
|
|
|
|
${PYSITELIB}/PIL/PaletteFile.py
|
|
|
|
${PYSITELIB}/PIL/PaletteFile.pyc
|
|
|
|
${PYSITELIB}/PIL/PaletteFile.pyo
|
|
|
|
${PYSITELIB}/PIL/PalmImagePlugin.py
|
|
|
|
${PYSITELIB}/PIL/PalmImagePlugin.pyc
|
|
|
|
${PYSITELIB}/PIL/PalmImagePlugin.pyo
|
|
|
|
${PYSITELIB}/PIL/PcdImagePlugin.py
|
|
|
|
${PYSITELIB}/PIL/PcdImagePlugin.pyc
|
|
|
|
${PYSITELIB}/PIL/PcdImagePlugin.pyo
|
|
|
|
${PYSITELIB}/PIL/PcfFontFile.py
|
|
|
|
${PYSITELIB}/PIL/PcfFontFile.pyc
|
|
|
|
${PYSITELIB}/PIL/PcfFontFile.pyo
|
|
|
|
${PYSITELIB}/PIL/PcxImagePlugin.py
|
|
|
|
${PYSITELIB}/PIL/PcxImagePlugin.pyc
|
|
|
|
${PYSITELIB}/PIL/PcxImagePlugin.pyo
|
|
|
|
${PYSITELIB}/PIL/PdfImagePlugin.py
|
|
|
|
${PYSITELIB}/PIL/PdfImagePlugin.pyc
|
|
|
|
${PYSITELIB}/PIL/PdfImagePlugin.pyo
|
|
|
|
${PYSITELIB}/PIL/PixarImagePlugin.py
|
|
|
|
${PYSITELIB}/PIL/PixarImagePlugin.pyc
|
|
|
|
${PYSITELIB}/PIL/PixarImagePlugin.pyo
|
|
|
|
${PYSITELIB}/PIL/PngImagePlugin.py
|
|
|
|
${PYSITELIB}/PIL/PngImagePlugin.pyc
|
|
|
|
${PYSITELIB}/PIL/PngImagePlugin.pyo
|
|
|
|
${PYSITELIB}/PIL/PpmImagePlugin.py
|
|
|
|
${PYSITELIB}/PIL/PpmImagePlugin.pyc
|
|
|
|
${PYSITELIB}/PIL/PpmImagePlugin.pyo
|
|
|
|
${PYSITELIB}/PIL/PsdImagePlugin.py
|
|
|
|
${PYSITELIB}/PIL/PsdImagePlugin.pyc
|
|
|
|
${PYSITELIB}/PIL/PsdImagePlugin.pyo
|
Update py-Pillow to 2.4.0.
* Based on patch from adam@.
* Add self test target.
Changelog (Pillow)
==================
2.4.0 (04/01/2014)
------------------
- Indexed Transparency handled for conversions between L, RGB, and P modes. Fixes #510
[wiredfool]
- Conversions enabled from RGBA->P, Fixes #544
[wiredfool]
- Improved icns support
[al45tair]
- Fix libtiff leaking open files, fixes #580
[wiredfool]
- Fixes for Jpeg encoding in Python 3, fixes #577
[wiredfool]
- Added support for JPEG 2000
[al45tair]
- Add more detailed error messages to Image.py
[larsmans]
- Avoid conflicting _expand functions in PIL & MINGW, fixes #538
[aclark]
- Merge from Philippe Lagadec’s OleFileIO_PL fork
[vadmium]
- Fix ImageColor.getcolor
[homm]
- Make ICO files work with the ImageFile.Parser interface, fixes #522
[wiredfool]
- Handle 32bit compiled python on 64bit architecture
[choppsv1]
- Fix support for characters >128 using .pcf or .pil fonts in Py3k. Fixes #505
[wiredfool]
- Skip CFFI test earlier if it's not installed
[wiredfool]
- Fixed opening and saving odd sized .pcx files, fixes #523
[wiredfool]
- Fixed palette handling when converting from mode P->RGB->P
[d_schmidt]
- Fixed saving mode P image as a PNG with transparency = palette color 0
[d-schmidt]
- Improve heuristic used when saving progressive and optimized JPEGs with high quality values
[e98cuenc]
- Fixed DOS with invalid palette size or invalid image size in BMP file
[wiredfool]
- Added support for BMP version 4 and 5
[eddwardo, wiredfool]
- Fix segfault in getfont when passed a memory resident font
[wiredfool]
- Fix crash on Saving a PNG when icc-profile is None
[brutasse]
- Cffi+Python implementation of the PixelAccess object
[wiredfool]
- PixelAccess returns unsigned ints for I16 mode
[wiredfool]
- Minor patch on booleans + Travis
[sciunto]
- Look in multiarch paths in GNU platforms
[pinotree]
- Add arch support for pcc64, s390, s390x, armv7l, aarch64
[manisandro]
- Add arch support for ppc
[wiredfool]
- Correctly quote file names for WindowsViewer command
[cgohlke]
- Prefer homebrew freetype over X11 freetype (but still allow both)
[dmckeone]
2014-04-18 15:00:49 +02:00
|
|
|
${PYSITELIB}/PIL/PyAccess.py
|
|
|
|
${PYSITELIB}/PIL/PyAccess.pyc
|
|
|
|
${PYSITELIB}/PIL/PyAccess.pyo
|
2013-12-07 13:56:52 +01:00
|
|
|
${PYSITELIB}/PIL/SgiImagePlugin.py
|
|
|
|
${PYSITELIB}/PIL/SgiImagePlugin.pyc
|
|
|
|
${PYSITELIB}/PIL/SgiImagePlugin.pyo
|
|
|
|
${PYSITELIB}/PIL/SpiderImagePlugin.py
|
|
|
|
${PYSITELIB}/PIL/SpiderImagePlugin.pyc
|
|
|
|
${PYSITELIB}/PIL/SpiderImagePlugin.pyo
|
|
|
|
${PYSITELIB}/PIL/SunImagePlugin.py
|
|
|
|
${PYSITELIB}/PIL/SunImagePlugin.pyc
|
|
|
|
${PYSITELIB}/PIL/SunImagePlugin.pyo
|
|
|
|
${PYSITELIB}/PIL/TarIO.py
|
|
|
|
${PYSITELIB}/PIL/TarIO.pyc
|
|
|
|
${PYSITELIB}/PIL/TarIO.pyo
|
|
|
|
${PYSITELIB}/PIL/TgaImagePlugin.py
|
|
|
|
${PYSITELIB}/PIL/TgaImagePlugin.pyc
|
|
|
|
${PYSITELIB}/PIL/TgaImagePlugin.pyo
|
|
|
|
${PYSITELIB}/PIL/TiffImagePlugin.py
|
|
|
|
${PYSITELIB}/PIL/TiffImagePlugin.pyc
|
|
|
|
${PYSITELIB}/PIL/TiffImagePlugin.pyo
|
|
|
|
${PYSITELIB}/PIL/TiffTags.py
|
|
|
|
${PYSITELIB}/PIL/TiffTags.pyc
|
|
|
|
${PYSITELIB}/PIL/TiffTags.pyo
|
|
|
|
${PYSITELIB}/PIL/WalImageFile.py
|
|
|
|
${PYSITELIB}/PIL/WalImageFile.pyc
|
|
|
|
${PYSITELIB}/PIL/WalImageFile.pyo
|
|
|
|
${PYSITELIB}/PIL/WebPImagePlugin.py
|
|
|
|
${PYSITELIB}/PIL/WebPImagePlugin.pyc
|
|
|
|
${PYSITELIB}/PIL/WebPImagePlugin.pyo
|
|
|
|
${PYSITELIB}/PIL/WmfImagePlugin.py
|
|
|
|
${PYSITELIB}/PIL/WmfImagePlugin.pyc
|
|
|
|
${PYSITELIB}/PIL/WmfImagePlugin.pyo
|
|
|
|
${PYSITELIB}/PIL/XVThumbImagePlugin.py
|
|
|
|
${PYSITELIB}/PIL/XVThumbImagePlugin.pyc
|
|
|
|
${PYSITELIB}/PIL/XVThumbImagePlugin.pyo
|
|
|
|
${PYSITELIB}/PIL/XbmImagePlugin.py
|
|
|
|
${PYSITELIB}/PIL/XbmImagePlugin.pyc
|
|
|
|
${PYSITELIB}/PIL/XbmImagePlugin.pyo
|
|
|
|
${PYSITELIB}/PIL/XpmImagePlugin.py
|
|
|
|
${PYSITELIB}/PIL/XpmImagePlugin.pyc
|
|
|
|
${PYSITELIB}/PIL/XpmImagePlugin.pyo
|
|
|
|
${PYSITELIB}/PIL/__init__.py
|
|
|
|
${PYSITELIB}/PIL/__init__.pyc
|
|
|
|
${PYSITELIB}/PIL/__init__.pyo
|
|
|
|
${PYSITELIB}/PIL/_binary.py
|
|
|
|
${PYSITELIB}/PIL/_binary.pyc
|
|
|
|
${PYSITELIB}/PIL/_binary.pyo
|
|
|
|
${PYSITELIB}/PIL/_imaging.so
|
|
|
|
${PYSITELIB}/PIL/_imagingcms.so
|
|
|
|
${PYSITELIB}/PIL/_imagingft.so
|
|
|
|
${PYSITELIB}/PIL/_imagingmath.so
|
2014-07-06 14:15:53 +02:00
|
|
|
${PYSITELIB}/PIL/_imagingmorph.so
|
Update to 3.3.0
Upstream changes:
3.3.0 (2016-07-01)
Fixed enums for Resolution Unit and Predictor in TiffTags.py #1998 [wiredfool]
Fix issue converting P mode to LA #1986 [didrix]
Moved test_j2k_overflow to check_j2k_overflow, prevent DOS of our 32bit testing machines #1995 [wiredfool]
Skip CRC checks in PNG files when LOAD_TRUNCATED_IMAGES is enabled #1991 [kkopachev]
Added CMYK mode for opening EPS files #1826 [radarhere]
Docs: OSX build instruction clarification #1994 [wiredfool]
Docs: Filter comparison table #1993 [homm]
Removal of pthread based Incremental.c, new interface for file decoders/encoders to access the python file. Fixes assorted J2k Hangs. #1934 [wiredfool]
Skip unnecessary passes when resizing #1954 [homm]
Removed duplicate code in ImagePalette #1832 [radarhere]
test_imagecms: Reduce precision of extended info due to 32 bit machine precision #1990 [AbdealiJK]
Binary Tiff Metadata/ICC profile. #1988 [wiredfool]
Ignore large text blocks in PNG if LOAD_TRUNCATED_IMAGES is enabled #1970 [homm]
Replace index = index+1 in docs with +=1 [cclauss]
Skip extra 0xff00 in jpeg #1977 [kkopachev]
Use bytearray for palette mutable storage #1985 [radarhere, wiredfool]
Added additional uint modes for Image.fromarray, more extensive tests of fromarray #1984 [mairsbw, wiredfool]
Fix for program importing PyQt4 when PyQt5 also installed #1942 [hugovk]
Changed depends/install_*.sh urls to point to github pillow-depends repo #1983 [wiredfool]
Allow ICC profile from encoderinfo while saving PNGs #1909 [homm]
Fix integer overflow on ILP32 systems (32-bit Linux). #1975 [lambdafu]
Change function declaration to match Tcl_CmdProc type #1966 [homm]
Integer overflow checks on all calls to *alloc #1781 [wiredfool]
Change equals method on Image so it short circuits #1967 [mattBoros]
Runtime loading of TCL/TK libraries, eliminating build time dependency. #1932 [matthew-brett]
Cleanup of transform methods #1941 [homm]
Fix "Fatal Python error: UNREF invalid object" in debug builds #1936 [wiredfool]
Setup fixes for Alpine linux #1937 [wiredfool]
Split resample into horizontal + vertical passes #1933 [homm]
Box blur with premultiplied alpha #1914 [homm]
Add libimagequant support in quantize() #1889 [rr-]
Added internal Premultiplied luminosity (La) mode #1912 [homm]
Fixed point integer resample #1881 [homm]
Removed docs/BUILDME script #1924 [radarhere]
Moved comments to docstrings #1926 [hugovk]
Include Python.h before wchar.h so _GNU_SOURCE is set consistently #1906 [hugovk]
Updated example decoder in documentation #1899 [radarhere]
Added support for GIF comment extension #1896 [radarhere]
Removed support for pre- 1.5.2 list form of Image info in Image.new #1897 [radarhere]
Fix typos in TIFF tags #1918 [radarhere]
Skip tests that require libtiff if it is not installed, fixes #1866 [wiredfool]
Skip test when icc profile is not available, fixes #1887 [doko42]
Make deprecated functions raise NotImplementedError instead of Exception. #1862, #1890 [daniel-leicht, radarhere]
Replaced os.system with subprocess.call in setup.py #1879 [radarhere]
Corrected Image show documentation #1886 [radarhere]
Added check for executable permissions to ImageShow #1880 [radarhere]
Fixed tutorial code and added explanation #1877 [radarhere]
Added OS X support for ImageGrab grabclipboard #1837 [radarhere]
Combined duplicate code in ImageTk #1856 [radarhere]
Added --disable-platform-guessing option to setup.py build extension, #1861 [angeloc]
Fixed loading Transparent PNGs with a transparent black color #1840 [olt]
Add support for LA mode in Image.fromarray #1865 [pierriko]
Make ImageFile load images in read-only mode #1864 [hdante]
Added _accept hook for XVThumbImagePlugin #1853 [radarhere]
Test TIFF with LZW compression #1855, TGA RLE file #1854 [hugovk]
Improved SpiderImagePlugin help text #1863 [radarhere]
Updated Sphinx project description #1870 [radarhere]
Remove support for Python 3.0 from _imaging.c #1851 [radarhere]
Jpeg qtables are unsigned chars #1814, #1921 [thebostik]
Added additional EXIF tags #1841, TIFF Tags #1821 [radarhere]
Changed documentation to refer to ImageSequence Iterator #1833 [radarhere]
Fix Fedora prerequisites in installation docs, depends script #1842 [living180]
Added _accept hook for PixarImagePlugin #1843 [radarhere]
Removed outdated scanner classifier #1823 [radarhere]
Combined identical error messages in _imaging #1825 [radarhere]
Added debug option for setup.py to trace header and library finding #1790 [wiredfool]
Fix doc building on travis #1820, #1844 [wiredfool]
Fix for DIB/BMP images #1813, #1847 [wiredfool]
Add PixarImagePlugin file extension #1809 [radarhere]
Catch struct.errors when verifying png files #1805 [wiredfool]
SpiderImagePlugin: raise an error when seeking in a non-stack file #1794 [radarhere, jmichalon]
Added Support for 2/4 bpp Tiff Grayscale Images #1789 [zwhfly]
Removed unused variable from selftest #1788 [radarhere]
Added warning for as_dict method (deprecated in 3.0.0) #1799 [radarhere]
Removed powf support for older Python versions #1784 [radarhere]
Health fixes #1625 #1903 [radarhere]
2016-08-13 10:07:22 +02:00
|
|
|
${PYSITELIB}/PIL/_imagingtk.so
|
|
|
|
${PYSITELIB}/PIL/_tkinter_finder.py
|
|
|
|
${PYSITELIB}/PIL/_tkinter_finder.pyc
|
|
|
|
${PYSITELIB}/PIL/_tkinter_finder.pyo
|
2013-12-07 13:56:52 +01:00
|
|
|
${PYSITELIB}/PIL/_util.py
|
|
|
|
${PYSITELIB}/PIL/_util.pyc
|
|
|
|
${PYSITELIB}/PIL/_util.pyo
|
|
|
|
${PYSITELIB}/PIL/_webp.so
|
2015-07-07 16:29:50 +02:00
|
|
|
${PYSITELIB}/PIL/features.py
|
|
|
|
${PYSITELIB}/PIL/features.pyc
|
|
|
|
${PYSITELIB}/PIL/features.pyo
|
Update graphics/py-Pillow to 3.2.0
pkgsrc changes:
o Simplify MASTER_SITES
o Add LICENSE
o Disable the tests for now (that were also broken for 3.1.2 version).
All the modules are builded in build/lib.*/PIL/ while selftest.py just
checks in PIL/. Manually cp(1)-ing all the build/lib.*/PIL/ files in PIL/
work as a workaround (and all test are passed) although implementing a
similar (distutils.cmd) logic will be easily buggy.
Changes:
3.2.0 (2016-04-01)
------------------
- Added install docs for Fedora 23 and FreeBSD #1729, #1739, #1792
[koobs, zandermartin, wiredfool]
- Fixed TIFF multiframe load when the frames have different compression types #1782
[radarhere, geka000]
- Added __copy__ method to Image #1772
[radarhere]
- Updated dates in PIL license in OleFileIO README #1787
[radarhere]
- Corrected Tiff tag names #1786
[radarhere]
- Fixed documented name of JPEG property #1783
[radarhere]
- Fixed UnboundLocalErrorwhen loading a corrupt jpeg2k file #1780
[wiredfool]
- Fixed integer overflow in path.c #1773
[wiredfool, nedwill]
- Added debug to command line help text for pilprint #1766
[radarhere]
- Expose many more fields in ICC Profiles #1756
[lambdafu]
- Documentation changes, URL update, transpose, release checklist
[radarhere]
- Fixed saving to nonexistant files specified by pathlib.Path objects, fixes #1747
[radarhere]
- Round Image.crop arguments to the nearest integer, fixes #1744
[hugovk]
- Fix uninitialized variable warning in _imaging.c:getink, fixes #486
[wiredfool]
- Disable multiprocessing install on cygwin, fixes #1690
[wiredfool]
- Fix the error reported when libz is not found #1764
[wiredfool]
- More general error check to avoid Symbol not found: _PyUnicodeUCS2_AsLatin1String on OS X #1761
[wiredfool]
- Added py35 to tox envlist #1724
[radarhere]
- Fix EXIF tag name typos #1736
[zarlant, radarhere]
- Updated freetype to 2.6.3, Tk/Tcl to 8.6.5 and 8.5.19
[radarhere]
- Add a loader for the FTEX format from Independence War 2: Edge of Chaos #1688
[jleclanche]
- Improved alpha_composite documentation #1698
[radarhere]
- Extend ImageDraw.text method to pass on multiline_text method specific arguments #1647
[radarhere]
- Allow ImageSequence to seek to zero #1686
[radarhere]
- ImageSequence Iterator is now an iterator #1649
[radarhere]
- Updated windows test builds to jpeg9b
[radarhere]
- Fixed support for .gbr version 1 images, added support for version 2 in GbrImagePlugin #1653
[wiredfool]
- Clarified which YCbCr format is used #1677
[radarhere]
- Added TiffTags documentation, Moved windows build documentation to winbuild/ #1667
[wiredfool]
- Add tests for OLE file based formats #1678
[radarhere]
- Add TIFF IFD test #1671
[radarhere]
- Add a basic DDS image plugin with more tests #1654
[jleclanche, hugovk, wiredfool]
- Fix incorrect conditional in encode.c #1638
[manisandro]
2016-04-21 10:13:50 +02:00
|
|
|
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
|
|
|
|
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
|
|
|
|
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
|
Changes 4.0.0:
- Refactor out postprocessing hack to load_end in PcdImageFile
- Add center and translate option to Image.rotate. 2328
- Test: Relax WMF test condition, fixes 2323
- Allow 0 size images, Fixes 2259, Reverts to pre-3.4 behavior.
- SGI: Save uncompressed SGI/BW/RGB/RGBA files 2325
- Depends: Updated pngquant to 2.8.2 2319
- Test: Added correctness tests for opening SGI images 2324
- Allow passing a list or tuple of individual frame durations when saving a GIF 2298
- Unified different GIF optimize conditions 2196
- Build: Refactor dependency installation 2305
- Test: Add python 3.6 to travis, tox 2304
- Test: Fix coveralls coverage for Python+C 2300
- Remove executable bit and shebang from OleFileIO.py 2308
- PyPy: Buffer interface workaround 2294
- Test: Switch to Ubuntu Trusty 14.04 on Travis CI 2294
- Remove vendored version of olefile Python package in favor of upstream 2199
- Updated comments to use print as a function 2234
- Set executable flag on selftest.py, setup.py and added shebang line 2282, 2277
- Test: Increase epsilon for FreeType 2.7 as rendering is slightly different. 2286
- Test: Faster assert_image_similar 2279
- Removed depreciated internal "stretch" method 2276
- Removed the handles_eof flag in decode.c 2223
- Tiff: Fix for writing Tiff to BytesIO using libtiff 2263
- Doc: Design docs 2269
- Test: Move tests requiring libtiff to test_file_libtiff 2273
- Update Maxblock heuristic 2275
- Fix for 2-bit palette corruption 2274
- Tiff: Update info.icc_profile when using libtiff reader. 2193
- Test: Fix bug in test_ifd_rational_save when libtiff is not available 2270
- ICO: Only save relevant sizes 2267
- ICO: Allow saving .ico files of 256x256 instead of 255x255 2265
- Fix TIFFImagePlugin ICC color profile saving. 2087
- Doc: Improved description of ImageOps.deform resample parameter 2256
- EMF: support negative bounding box coordinates 2249
- Close file if opened in WalImageFile 2216
- Use Image._new() instead of _makeself() 2248
- SunImagePlugin fixes 2241
- Use minimal scale for jpeg drafts 2240
- Updated dependency scripts to use FreeType 2.7, OpenJpeg 2.1.2, WebP 0.5.2 and Tcl/Tk 8.6.6 2235, 2236, 2237, 2290, 2302
- Fix "invalid escape sequence" bytestring warnings in Python 3.6 2186
- Removed support for Python 2.6 and Python 3.2 2192
- Setup: Raise custom exceptions when required/requested dependencies are not found 2213
- Use a context manager in FontFile.save() to ensure file is always closed 2226
- Fixed bug in saving to fp-objects in Python >= 3.4 2227
- Use a context manager in ImageFont._load_pilfont() to ensure file is always closed 2232
- Use generator expressions instead of list comprehension 2225
- Close file after reading in ImagePalette.load() 2215
- Changed behaviour of default box argument for paste method to match docs 2211
- Add support for another BMP bitfield 2221
- Added missing top-level test __main__ 2222
- Replaced range(len()) 2197
- Fix for ImageQt Segfault, fixes 1370 2182
- Setup: Close file in setup.py after finished reading 2208
- Setup: optionally use pkg-config (when present) to detect dependencies 2074
- Search for tkinter first in builtins 2210
- Tests: Replace try/except/fail pattern with TestCase.assertRaises() 2200
- Tests: Remove unused, open files at top level of tests 2188
- Replace type() equality checks with isinstance 2184
- Doc: Move ICO out of the list of read-only file formats 2180
- Doc: Fix formatting, too-short title underlines and malformed table 2175
- Fix BytesWarnings 2172
- Use Integer division to eliminate deprecation warning. 2168
- Doc: Update compatibility matrix
2017-01-29 13:46:45 +01:00
|
|
|
${PYSITELIB}/${EGG_INFODIR}/requires.txt
|
Update graphics/py-Pillow to 3.2.0
pkgsrc changes:
o Simplify MASTER_SITES
o Add LICENSE
o Disable the tests for now (that were also broken for 3.1.2 version).
All the modules are builded in build/lib.*/PIL/ while selftest.py just
checks in PIL/. Manually cp(1)-ing all the build/lib.*/PIL/ files in PIL/
work as a workaround (and all test are passed) although implementing a
similar (distutils.cmd) logic will be easily buggy.
Changes:
3.2.0 (2016-04-01)
------------------
- Added install docs for Fedora 23 and FreeBSD #1729, #1739, #1792
[koobs, zandermartin, wiredfool]
- Fixed TIFF multiframe load when the frames have different compression types #1782
[radarhere, geka000]
- Added __copy__ method to Image #1772
[radarhere]
- Updated dates in PIL license in OleFileIO README #1787
[radarhere]
- Corrected Tiff tag names #1786
[radarhere]
- Fixed documented name of JPEG property #1783
[radarhere]
- Fixed UnboundLocalErrorwhen loading a corrupt jpeg2k file #1780
[wiredfool]
- Fixed integer overflow in path.c #1773
[wiredfool, nedwill]
- Added debug to command line help text for pilprint #1766
[radarhere]
- Expose many more fields in ICC Profiles #1756
[lambdafu]
- Documentation changes, URL update, transpose, release checklist
[radarhere]
- Fixed saving to nonexistant files specified by pathlib.Path objects, fixes #1747
[radarhere]
- Round Image.crop arguments to the nearest integer, fixes #1744
[hugovk]
- Fix uninitialized variable warning in _imaging.c:getink, fixes #486
[wiredfool]
- Disable multiprocessing install on cygwin, fixes #1690
[wiredfool]
- Fix the error reported when libz is not found #1764
[wiredfool]
- More general error check to avoid Symbol not found: _PyUnicodeUCS2_AsLatin1String on OS X #1761
[wiredfool]
- Added py35 to tox envlist #1724
[radarhere]
- Fix EXIF tag name typos #1736
[zarlant, radarhere]
- Updated freetype to 2.6.3, Tk/Tcl to 8.6.5 and 8.5.19
[radarhere]
- Add a loader for the FTEX format from Independence War 2: Edge of Chaos #1688
[jleclanche]
- Improved alpha_composite documentation #1698
[radarhere]
- Extend ImageDraw.text method to pass on multiline_text method specific arguments #1647
[radarhere]
- Allow ImageSequence to seek to zero #1686
[radarhere]
- ImageSequence Iterator is now an iterator #1649
[radarhere]
- Updated windows test builds to jpeg9b
[radarhere]
- Fixed support for .gbr version 1 images, added support for version 2 in GbrImagePlugin #1653
[wiredfool]
- Clarified which YCbCr format is used #1677
[radarhere]
- Added TiffTags documentation, Moved windows build documentation to winbuild/ #1667
[wiredfool]
- Add tests for OLE file based formats #1678
[radarhere]
- Add TIFF IFD test #1671
[radarhere]
- Add a basic DDS image plugin with more tests #1654
[jleclanche, hugovk, wiredfool]
- Fix incorrect conditional in encode.c #1638
[manisandro]
2016-04-21 10:13:50 +02:00
|
|
|
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
|
|
|
|
${PYSITELIB}/${EGG_INFODIR}/zip-safe
|