Commit graph

20 commits

Author SHA1 Message Date
drochner
45a8d52ac2 pull in https://github.com/python-pillow/Pillow/pull/1706
fixed buffer overflow in PcdDecode
bump PKGREV
2016-02-16 20:17:41 +00:00
agc
7f810a359f Add SHA512 digests for distfiles for graphics category
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.
2015-11-03 21:33:50 +00:00
joerg
f394698114 Don't try to detect libz and friends, explicitly use them. Avoids
failing detection on SLES11.
2014-12-17 15:22:44 +00:00
spz
2a524c1caf Icns DOS fix -- CVE-2014-3589
from 205e056f8f
2014-09-07 09:37:46 +00:00
spz
c7ce9edcea patches for CVE-2014-1932 and CVE-2014-1933 taken from
4e9f367dfd
2014-05-15 06:23:05 +00:00
markd
15ec7f2356 Fix a freetype 2.0 hangover. Allows build with freetype 2.5.x. 2013-12-11 23:55:11 +00:00
adam
930d06e62f Fix building and disable TKINTER on Darwin. 2011-01-03 12:17:30 +00:00
drochner
3bc57359d1 recognize a 16bit greyscale format with "white is zero" (which is
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
2010-07-19 17:45:02 +00:00
drochner
b687717a78 update to 1.1.7
changes: misc bugfixes and improvements, too much to list here, see
the CHANGES file for details
2009-12-11 21:37:30 +00:00
drochner
31a0d4ff14 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
2007-03-23 20:47:56 +00:00
joerg
0c0f09f97e Include the FreeType2 component of PIL. Bump revision. 2007-01-20 15:17:20 +00:00
drochner
cd00f1eb31 update to 1.1.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-10-12 14:48:44 +00:00
agc
6a7b384635 Add RMD160 digests 2005-02-24 08:45:01 +00:00
drochner
8b72258c6c build libImaging.a with -fPIC, it goes into a dynamic object 2004-02-26 17:43:21 +00:00
drochner
a255fa18f6 update to 1.1.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-27 10:11:59 +00:00
jmmv
e478bd1a52 Use @JPEGDIR@ in patch file instead of hardcoding /usr/pkg. 2003-06-07 15:11:21 +00:00
drochner
9155113d08 update to 1.1.3
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-09-03 20:31:02 +00:00
drochner
b66588e939 update to 1.1.2
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.
2002-02-14 11:39:46 +00:00
wiz
a4f21a5507 Move to sha1 digests, and/or add distfile sizes. 2001-04-21 09:54:06 +00:00
agc
fb467f5ac2 + move the distfile digest/checksum value from files/md5 to distinfo
+ move the patch digest/checksum values from files/patch-sum to distinfo
2001-04-17 11:22:34 +00:00