summaryrefslogtreecommitdiff
path: root/graphics/py-imaging/distinfo
AgeCommit message (Collapse)AuthorFilesLines
2021-10-26graphics: Replace RMD160 checksums with BLAKE2s checksumsnia1-2/+2
All checksums have been double-checked against existing RMD160 and SHA512 hashes
2021-10-07graphics: Remove SHA1 hashes for distfilesnia1-2/+1
2016-02-16pull in https://github.com/python-pillow/Pillow/pull/1706drochner1-1/+2
fixed buffer overflow in PcdDecode bump PKGREV
2015-11-03Add SHA512 digests for distfiles for graphics categoryagc1-1/+2
Problems found with existing digests: Package fotoxx distfile fotoxx-14.03.1.tar.gz ac2033f87de2c23941261f7c50160cddf872c110 [recorded] 118e98a8cc0414676b3c4d37b8df407c28a1407c [calculated] Package ploticus-examples distfile ploticus-2.00/plnode200.tar.gz 34274a03d0c41fae5690633663e3d4114b9d7a6d [recorded] da39a3ee5e6b4b0d3255bfef95601890afd80709 [calculated] Problems found locating distfiles: Package AfterShotPro: missing distfile AfterShotPro-1.1.0.30/AfterShotPro_i386.deb Package pgraf: missing distfile pgraf-20010131.tar.gz Package qvplay: missing distfile qvplay-0.95.tar.gz Otherwise, existing SHA1 digests verified and found to be the same on the machine holding the existing distfiles (morden). All existing SHA1 digests retained for now as an audit trail.
2014-12-17Don't try to detect libz and friends, explicitly use them. Avoidsjoerg1-2/+2
failing detection on SLES11.
2014-09-07Icns DOS fix -- CVE-2014-3589spz1-1/+2
from https://github.com/python-pillow/Pillow/commit/205e056f8f9b06ed7b925cf8aa0874bc4aaf8a7d
2014-05-15patches for CVE-2014-1932 and CVE-2014-1933 taken fromspz1-1/+5
https://github.com/python-imaging/Pillow/commit/4e9f367dfd3f04c8f5d23f7f759ec12782e10ee7
2013-12-11Fix a freetype 2.0 hangover. Allows build with freetype 2.5.x.markd1-1/+2
2011-01-03Fix building and disable TKINTER on Darwin.adam1-2/+2
2010-07-19recognize a 16bit greyscale format with "white is zero" (which isdrochner1-1/+2
generated by some neutron image plate detector) -- PIL is lacking some infrastructure here so it gets treated like "black is zero" but this is fine for me because I don't want to interpret it photometrically anyway
2009-12-11update to 1.1.7drochner1-5/+5
changes: misc bugfixes and improvements, too much to list here, see the CHANGES file for details
2007-03-23update to 1.1.6drochner1-4/+4
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
2007-01-20Include the FreeType2 component of PIL. Bump revision.joerg1-2/+2
2005-10-12update to 1.1.5drochner1-6/+5
changes: + Runs under Python 1.5.2 and newer, including 2.4. You may need additional libraries to build under 1.5.2; see instructions below. + New build procedure. The setup.py file now configures and builds the core library as well as the bindings, in one step. + Added stub drivers for BUFR, FITS, GRIB, HDF5, and WMF files. Stub drivers can identify the file format, but relies on application-provided drivers to read or write images in that format. + Added experimental "LA" mode support. An "LA" image is an "L" image with an attached transparency layer. + Added "RankFilter", "MinFilter", "MedianFilter", and "MaxFilter" classes to the ImageFilter module. + Improved support for applications using multiple threads on systems with multiple processors and/or hyperthreading processors. + Added EXIF GPSInfo read support for JPEG files. + Lots of bug fixes and performance tweaks. pkgsrc note: freetype and tiff support isn't built yet, should be separate pkgs
2005-02-24Add RMD160 digestsagc1-1/+2
2004-02-26build libImaging.a with -fPIC, it goes into a dynamic objectdrochner1-2/+2
2003-06-27update to 1.1.4drochner1-4/+4
changes: Version 1.1.4 adds improved build scripts, truetype/opentype font support, memory mapping support also for non-Windows platforms, screen and clipboard grabbing on Windows, support for CSS-style color strings, support for IPTC/NAA and EXIF metadata, and more. pkgsrc note: We don't build the truetype component yet -- this might go into a separate pkg to get more finegrained dependencies. (Py-Imaging is supposed to work offline to, ie w/o X11.)
2003-06-07Use @JPEGDIR@ in patch file instead of hardcoding /usr/pkg.jmmv1-2/+2
2002-09-03update to 1.1.3drochner1-4/+5
changes: + Adapted to Python 1.6, 2.0, 2.1 and 2.2. This version also runs under 1.5.2, but probably not under versions older than that. + To reduce module dependencies, the Tkinter support has been moved to a separate binary module. + The JPEG decoder is more tolerant for broken files. As long as all image data can be read, it won't complain. + An ANTIALIAS downsampling filter has been added. + Includes distutils build script (setup.py) for 2.0 and later. + The usual crop of bug fixes and performance tweaks.
2002-02-14update to 1.1.2drochner1-3/+3
Changes: + Adapted to Python 2.1. Among other things, all uses of the "regex" module has been repleased with "re". + Fixed attribute error when reading large PNG files (this bug was introduced in maintenance code released after the 1.1.1 release) + Ignore non-string objects in sys.path + Fixed Image.transform(EXTENT) for negative xoffsets + Fixed loading of image plugins if PIL is installed as a package. (The plugin loader now always looks in the directory where the Image.py module itself is found, even if that directory isn't on the standard search path) + The Png plugin has been added to the list of preloaded standard formats + Fixed bitmap/text drawing in fill mode. + Fixed "getextrema" to work also for multiband images. + Added transparency support for L and P images to the PNG codec. + Improved support for read-only images. The "load" method now sets the "readonly" attribute for memory-mapped images. Operations that modifies an image in place (such as "paste" and drawing operations) creates an in-memory copy of the image, if necessary. (before this change, any attempt to modify a memory-mapped image resulted in a core dump...) + Added special cases for lists everywhere PIL expects a sequence. This should speed up things like "putdata" and drawing operations. + The Image.offset method is deprecated. Use the ImageChops.offset function instead. + Changed ImageChops operators to copy palette and info dictionary from the first image argument.
2001-04-21Move to sha1 digests, and/or add distfile sizes.wiz1-1/+2
2001-04-17+ move the distfile digest/checksum value from files/md5 to distinfoagc1-0/+4
+ move the patch digest/checksum values from files/patch-sum to distinfo