diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..bbe5e67
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+SOURCES/python-imaging-Pillow-2.0.0-105-gd1c6db8.tar.gz
diff --git a/.python-pillow.metadata b/.python-pillow.metadata
new file mode 100644
index 0000000..1dab9f4
--- /dev/null
+++ b/.python-pillow.metadata
@@ -0,0 +1 @@
+2bd8ee519b303dba6dc0bff335c994d3dc00cb87 SOURCES/python-imaging-Pillow-2.0.0-105-gd1c6db8.tar.gz
diff --git a/README.md b/README.md
deleted file mode 100644
index 0e7897f..0000000
--- a/README.md
+++ /dev/null
@@ -1,5 +0,0 @@
-The master branch has no content
- 
-Look at the c7 branch if you are working with CentOS-7, or the c4/c5/c6 branch for CentOS-4, 5 or 6
- 
-If you find this file in a distro specific branch, it means that no content has been checked in yet
diff --git a/SOURCES/python-pillow-2.0.0_bytearray.patch b/SOURCES/python-pillow-2.0.0_bytearray.patch
new file mode 100644
index 0000000..1b8d2f0
--- /dev/null
+++ b/SOURCES/python-pillow-2.0.0_bytearray.patch
@@ -0,0 +1,37 @@
+diff --git a/PIL/Image.py b/PIL/Image.py
+index cafc5a2..794ee49 100644
+--- a/PIL/Image.py
++++ b/PIL/Image.py
+@@ -718,7 +718,7 @@ class Image:
+         if self.mode == "L" and mode == "RGBA" and "transparency" in self.info:
+             from PIL import ImagePalette
+             self.mode = "P"
+-            bytePalette = bytes([i//3 for i in range(768)])
++            bytePalette = bytes(bytearray([i//3 for i in range(768)]))
+             self.palette = ImagePalette.raw("RGB", bytePalette)
+             self.palette.dirty = 1
+             self.load()
+diff --git a/_imaging.c b/_imaging.c
+index 2ee7eef..6ec7346 100644
+--- a/_imaging.c
++++ b/_imaging.c
+@@ -286,6 +286,7 @@ static const char* wrong_mode = "unrecognized image mode";
+ static const char* wrong_raw_mode = "unrecognized raw mode";
+ static const char* outside_image = "image index out of range";
+ static const char* outside_palette = "palette index out of range";
++static const char* wrong_palette_size = "invalid palette size";
+ static const char* no_palette = "image has no palette";
+ static const char* readonly = "image is readonly";
+ /* static const char* no_content = "image has no content"; */
+@@ -1412,6 +1413,11 @@ _putpalette(ImagingObject* self, PyObject* args)
+     return NULL;
+     }
+ 
++    if ( palettesize * 8 / bits > 256) {
++    PyErr_SetString(PyExc_ValueError, wrong_palette_size);
++    return NULL;
++    }
++
+     ImagingPaletteDelete(self->image->palette);
+ 
+     strcpy(self->image->mode, "P");
diff --git a/SOURCES/python-pillow-2.0.0_memleaks.patch b/SOURCES/python-pillow-2.0.0_memleaks.patch
new file mode 100644
index 0000000..366cec7
--- /dev/null
+++ b/SOURCES/python-pillow-2.0.0_memleaks.patch
@@ -0,0 +1,37 @@
+Index: python-imaging-Pillow-d1c6db8/libImaging/Antialias.c
+===================================================================
+--- python-imaging-Pillow-d1c6db8.orig/libImaging/Antialias.c
++++ python-imaging-Pillow-d1c6db8/libImaging/Antialias.c
+@@ -216,6 +216,7 @@ ImagingStretch(Imaging imOut, Imaging im
+                     break;
+                 default:
+                     ImagingSectionLeave(&cookie);
++                    free(k);
+                     return (Imaging) ImagingError_ModeError();
+                 }
+         }
+@@ -295,6 +296,7 @@ ImagingStretch(Imaging imOut, Imaging im
+                     break;
+                 default:
+                     ImagingSectionLeave(&cookie);
++                    free(k);
+                     return (Imaging) ImagingError_ModeError();
+                 }
+         }
+Index: python-imaging-Pillow-d1c6db8/libImaging/UnsharpMask.c
+===================================================================
+--- python-imaging-Pillow-d1c6db8.orig/libImaging/UnsharpMask.c
++++ python-imaging-Pillow-d1c6db8/libImaging/UnsharpMask.c
+@@ -141,8 +141,10 @@ gblur(Imaging im, Imaging imOut, float f
+     /* don't bother about alpha/padding */
+     buffer = calloc((size_t) (im->xsize * im->ysize * channels),
+ 		    sizeof(float));
+-    if (buffer == NULL)
+-	return ImagingError_MemoryError();
++    if (buffer == NULL) {
++        free(maskData);
++        return ImagingError_MemoryError();
++    }
+ 
+     /* be nice to other threads while you go off to lala land */
+     ImagingSectionEnter(&cookie);
diff --git a/SOURCES/python-pillow-archs.patch b/SOURCES/python-pillow-archs.patch
new file mode 100644
index 0000000..465dadf
--- /dev/null
+++ b/SOURCES/python-pillow-archs.patch
@@ -0,0 +1,34 @@
+diff -rupN python-imaging-Pillow-2f4207c/setup.py python-imaging-Pillow-2f4207c-new/setup.py
+--- python-imaging-Pillow-2f4207c/setup.py	2013-03-18 22:22:00.000000000 +0100
++++ python-imaging-Pillow-2f4207c-new/setup.py	2013-03-19 00:58:58.629486821 +0100
+@@ -138,6 +138,30 @@ class pil_build_ext(build_ext):
+                 elif platform_ in ["i386", "i686", "32bit"]:
+                     _add_directory(library_dirs, "/usr/lib/i386-linux-gnu")
+                     break
++                elif platform_ in ["aarch64", "64bit"]:
++                    _add_directory(library_dirs, "/lib64")
++                    _add_directory(library_dirs, "/usr/lib64")
++                    _add_directory(library_dirs, "/usr/lib/aarch64-linux-gnu")
++                    break
++                elif platform_ in ["arm", "armv7l", "32bit"]:
++                    _add_directory(library_dirs, "/usr/lib/arm-linux-gnueabi")
++                    break
++                elif platform_ in ["ppc64", "64bit"]:
++                    _add_directory(library_dirs, "/lib64")
++                    _add_directory(library_dirs, "/usr/lib64")
++                    _add_directory(library_dirs, "/usr/lib/ppc64-linux-gnu")
++                    break
++                elif platform_ in ["ppc", "32bit"]:
++                    _add_directory(library_dirs, "/usr/lib/ppc-linux-gnu")
++                    break
++                elif platform_ in ["s390x", "64bit"]:
++                    _add_directory(library_dirs, "/lib64")
++                    _add_directory(library_dirs, "/usr/lib64")
++                    _add_directory(library_dirs, "/usr/lib/s390x-linux-gnu")
++                    break
++                elif platform_ in ["s390", "32bit"]:
++                    _add_directory(library_dirs, "/usr/lib/s390-linux-gnu")
++                    break
+             else:
+                 raise ValueError("Unable to identify Linux platform: `%s`" % platform_)
+ 
diff --git a/SOURCES/python-pillow_endian.patch b/SOURCES/python-pillow_endian.patch
new file mode 100644
index 0000000..20e4dd7
--- /dev/null
+++ b/SOURCES/python-pillow_endian.patch
@@ -0,0 +1,14 @@
+--- python-imaging-Pillow-d1c6db8/Tests/test_numpy.py	2013-04-19 02:11:52.000000000 +0200
++++ python-imaging-Pillow-d1c6db8/Tests/test_numpy.py	2013-05-07 23:50:38.425987793 +0200
+@@ -41,7 +41,10 @@ def test_numpy_to_image():
+     assert_exception(TypeError, lambda: to_image(numpy.uint64))
+ 
+     assert_image(to_image(numpy.int8), "I", (10, 10))
+-    assert_image(to_image(numpy.int16), "I;16", (10, 10))
++    if Image._ENDIAN == '<': # Little endian
++        assert_image(to_image(numpy.int16), "I;16", (10, 10))
++    else:
++        assert_image(to_image(numpy.int16), "I;16B", (10, 10))
+     assert_image(to_image(numpy.int32), "I", (10, 10))
+     assert_exception(TypeError, lambda: to_image(numpy.int64))
+ 
diff --git a/SPECS/python-pillow.spec b/SPECS/python-pillow.spec
new file mode 100644
index 0000000..bb1381b
--- /dev/null
+++ b/SPECS/python-pillow.spec
@@ -0,0 +1,460 @@
+%global py2_incdir %{_includedir}/python%{python_version}
+%global py3_incdir %{_includedir}/python%{python3_version}
+
+%global name3 python3-pillow
+
+# RHEL-7 doesn't have python 3
+%if 0%{?rhel} == 7
+  %global with_python3 0
+%else
+  %global with_python3 1
+%endif
+
+# Refer to the comment for Source0 below on how to obtain the source tarball
+# The saved file has format python-imaging-Pillow-$version-$ahead-g$shortcommit.tar.gz
+%global commit d1c6db88d4dee462c6bbf4e22555e3ddd410d06a
+%global shortcommit %(c=%{commit}; echo ${c:0:7})
+%global ahead 105
+
+# If ahead is 0, the tarball corresponds to a release version, otherwise to a git snapshot
+%if %{ahead} > 0
+%global snap .git%{shortcommit}
+%endif
+
+Name:           python-pillow
+Version:        2.0.0
+Release:        19%{?snap}%{?dist}
+Summary:        Python image processing library
+
+# License: see http://www.pythonware.com/products/pil/license.htm
+License:        MIT
+URL:            http://python-pillow.github.io/
+
+# Obtain the tarball for a certain commit via:
+#  wget --content-disposition https://github.com/python-imaging/Pillow/tarball/$commit
+Source0:        https://github.com/python-imaging/Pillow/tarball/%{commit}/python-imaging-Pillow-%{version}-%{ahead}-g%{shortcommit}.tar.gz
+
+# Add s390* and ppc* archs
+Patch0:         python-pillow-archs.patch
+# Fix test hardcoded for little-endian
+Patch1:         python-pillow_endian.patch
+Patch2:         python-pillow-2.0.0_bytearray.patch
+Patch3:         python-pillow-2.0.0_memleaks.patch
+
+BuildRequires:  python2-devel
+BuildRequires:  python-setuptools
+BuildRequires:  tkinter
+BuildRequires:  tk-devel
+BuildRequires:  python-sphinx
+BuildRequires:  libjpeg-devel
+BuildRequires:  zlib-devel
+BuildRequires:  freetype-devel
+BuildRequires:  sane-backends-devel
+# Don't build with webp support on s390* and ppc* archs
+# see bug #962091 and #1127230
+%ifnarch s390 s390x ppc ppc64
+BuildRequires:  libwebp-devel
+%endif
+BuildRequires:  PyQt4
+BuildRequires:  numpy
+
+%if %{with_python3}
+BuildRequires:  python3-devel
+BuildRequires:  python3-setuptools
+BuildRequires:  python3-tkinter
+BuildRequires:  python3-PyQt4
+BuildRequires:  python3-numpy
+%endif
+
+Provides:       python-imaging = %{version}-%{release}
+Obsoletes:      python-imaging <= 1.1.7-12
+
+%if %{with_python3}
+Provides:       python3-imaging = %{version}-%{release}
+%endif
+
+%filter_provides_in %{python_sitearch}
+%filter_provides_in %{python3_sitearch}
+%filter_setup
+
+%description
+Python image processing library, fork of the Python Imaging Library (PIL)
+
+This library provides extensive file format support, an efficient
+internal representation, and powerful image processing capabilities.
+
+There are five subpackages: tk (tk interface), qt (PIL image wrapper for Qt),
+sane (scanning devices interface), devel (development) and doc (documentation).
+
+
+%package devel
+Summary:        Development files for %{name}
+Group:          Development/Libraries
+Requires:       %{name}%{?_isa} = %{version}-%{release}
+Requires:       python-devel, libjpeg-devel, zlib-devel
+Provides:       python-imaging-devel = %{version}-%{release}
+Obsoletes:      python-imaging-devel <= 1.1.7-12
+
+%description devel
+Development files for %{name}.
+
+
+%package doc
+Summary:        Documentation for %{name}
+Group:          Documentation
+Requires:       %{name} = %{version}-%{release}
+
+%description doc
+Documentation for %{name}.
+
+
+%package sane
+Summary:        Python module for using scanners
+Group:          System Environment/Libraries
+Requires:       %{name}%{?_isa} = %{version}-%{release}
+Provides:       python-imaging-sane = %{version}-%{release}
+Obsoletes:      python-imaging-sane <= 1.1.7-12
+
+%description sane
+This package contains the sane module for Python which provides access to
+various raster scanning devices such as flatbed scanners and digital cameras.
+
+
+%package tk
+Summary:        Tk interface for %{name}
+Group:          System Environment/Libraries
+Requires:       %{name}%{?_isa} = %{version}-%{release}
+Requires:       tkinter
+Provides:       python-imaging-tk = %{version}-%{release}
+Obsoletes:      python-imaging-tk <= 1.1.7-12
+
+%description tk
+Tk interface for %{name}.
+
+%package qt
+Summary:        PIL image wrapper for Qt
+Group:          System Environment/Libraries
+Requires:       %{name}%{?_isa} = %{version}-%{release}
+Requires:       PyQt4
+Provides:       python-imaging-qt = %{version}-%{release}
+
+%description qt
+PIL image wrapper for Qt.
+
+
+%if %{with_python3}
+%package -n %{name3}
+Summary:        Python 3 image processing library
+
+%description -n %{name3}
+%{_description}
+
+
+%package -n %{name3}-devel
+Summary:        Development files for %{name3}
+Group:          Development/Libraries
+Requires:       %{name3}%{?_isa} = %{version}-%{release}
+Requires:       python3-devel, libjpeg-devel, zlib-devel
+
+%description -n %{name3}-devel
+Development files for %{name3}.
+
+
+%package -n %{name3}-doc
+Summary:        Documentation for %{name3}
+Group:          Documentation
+Requires:       %{name3} = %{version}-%{release}
+
+%description -n %{name3}-doc
+Documentation for %{name3}.
+
+
+%package -n %{name3}-sane
+Summary:        Python module for using scanners
+Group:          System Environment/Libraries
+Requires:       %{name3}%{?_isa} = %{version}-%{release}
+
+%description -n %{name3}-sane
+This package contains the sane module for Python which provides access to
+various raster scanning devices such as flatbed scanners and digital cameras.
+
+
+%package -n %{name3}-tk
+Summary:        Tk interface for %{name3}
+Group:          System Environment/Libraries
+Requires:       %{name3}%{?_isa} = %{version}-%{release}
+Requires:       tkinter
+
+%description -n %{name3}-tk
+Tk interface for %{name3}.
+
+%package -n %{name3}-qt
+Summary:        PIL image wrapper for Qt
+Group:          System Environment/Libraries
+Obsoletes:      %{name3} <= 2.0.0-5.git93a488e8
+Requires:       %{name3}%{?_isa} = %{version}-%{release}
+Requires:       python3-PyQt4
+
+%description -n %{name3}-qt
+PIL image wrapper for Qt.
+
+%endif
+
+
+%prep
+%setup -q -n python-imaging-Pillow-%{shortcommit}
+%patch0 -p1 -b .archs
+%patch1 -p1 -b .endian
+%patch2 -p1 -b .byte_array
+%patch3 -p1 -b .memleaks
+
+%if %{with_python3}
+# Create Python 3 source tree
+rm -rf %{py3dir}
+cp -a . %{py3dir}
+%endif
+
+
+%build
+# Build Python 2 modules
+find -name '*.py' | xargs sed -i '1s|^#!.*python|#!%{__python}|'
+CFLAGS="$RPM_OPT_FLAGS" %{__python} setup.py build
+
+pushd Sane
+CFLAGS="$RPM_OPT_FLAGS" %{__python} setup.py build
+popd
+
+pushd docs
+PYTHONPATH=$PWD/.. make html
+rm -f _build/html/.buildinfo
+popd
+
+%if %{with_python3}
+# Build Python 3 modules
+pushd %{py3dir}
+find -name '*.py' | xargs sed -i '1s|^#!.*python|#!%{__python3}|'
+CFLAGS="$RPM_OPT_FLAGS" %{__python3} setup.py build
+
+pushd Sane
+CFLAGS="$RPM_OPT_FLAGS" %{__python3} setup.py build
+popd
+
+pushd docs
+PYTHONPATH=$PWD/.. make html
+rm -f _build/html/.buildinfo
+popd
+popd
+%endif
+
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+# Install Python 2 modules
+install -d $RPM_BUILD_ROOT/%{py2_incdir}/Imaging
+install -m 644 libImaging/*.h $RPM_BUILD_ROOT/%{py2_incdir}/Imaging
+%{__python} setup.py install --skip-build --root $RPM_BUILD_ROOT
+pushd Sane
+%{__python} setup.py install --skip-build --root $RPM_BUILD_ROOT
+popd
+
+%if %{with_python3}
+# Install Python 3 modules
+pushd %{py3dir}
+install -d $RPM_BUILD_ROOT/%{py3_incdir}/Imaging
+install -m 644 libImaging/*.h $RPM_BUILD_ROOT/%{py3_incdir}/Imaging
+%{__python3} setup.py install --skip-build --root $RPM_BUILD_ROOT
+pushd Sane
+%{__python3} setup.py install --skip-build --root $RPM_BUILD_ROOT
+popd
+popd
+%endif
+
+# The scripts are packaged in %%doc
+rm -rf $RPM_BUILD_ROOT%{_bindir}
+
+
+%check
+# Check Python 2 modules
+ln -s $PWD/Images $RPM_BUILD_ROOT%{python_sitearch}/Images
+ln -s $PWD/Tests $RPM_BUILD_ROOT%{python_sitearch}/Tests
+ln -s $PWD/selftest.py $RPM_BUILD_ROOT%{python_sitearch}/selftest.py
+pushd $RPM_BUILD_ROOT%{python_sitearch}
+%{__python} selftest.py
+%{__python} Tests/run.py
+popd
+rm $RPM_BUILD_ROOT%{python_sitearch}/Images
+rm $RPM_BUILD_ROOT%{python_sitearch}/Tests
+rm $RPM_BUILD_ROOT%{python_sitearch}/selftest.py*
+
+%if %{with_python3}
+# Check Python 3 modules
+pushd %{py3dir}
+ln -s $PWD/Images $RPM_BUILD_ROOT%{python3_sitearch}/Images
+ln -s $PWD/Tests $RPM_BUILD_ROOT%{python3_sitearch}/Tests
+ln -s $PWD/selftest.py $RPM_BUILD_ROOT%{python3_sitearch}/selftest.py
+pushd $RPM_BUILD_ROOT%{python3_sitearch}
+%{__python3} selftest.py
+%{__python3} Tests/run.py
+popd
+rm $RPM_BUILD_ROOT%{python3_sitearch}/Images
+rm $RPM_BUILD_ROOT%{python3_sitearch}/Tests
+rm $RPM_BUILD_ROOT%{python3_sitearch}/selftest.py*
+popd
+%endif
+
+
+%files
+%doc README.rst docs/HISTORY.txt COPYING
+%{python_sitearch}/*
+# These are in subpackages
+%exclude %{python_sitearch}/*sane*
+%exclude %{python_sitearch}/_imagingtk*
+%exclude %{python_sitearch}/PIL/ImageTk*
+%exclude %{python_sitearch}/PIL/SpiderImagePlugin*
+%exclude %{python_sitearch}/PIL/ImageQt*
+
+%files devel
+%{py2_incdir}/Imaging/
+
+%files doc
+%doc Scripts Images docs/_build/html
+
+%files sane
+%doc Sane/CHANGES Sane/demo*.py Sane/sanedoc.txt
+%{python_sitearch}/*sane*
+
+%files tk
+%{python_sitearch}/_imagingtk*
+%{python_sitearch}/PIL/ImageTk*
+%{python_sitearch}/PIL/SpiderImagePlugin*
+
+%files qt
+%{python_sitearch}/PIL/ImageQt*
+
+%if %{with_python3}
+%files -n %{name3}
+%doc README.rst docs/HISTORY.txt COPYING
+%{python3_sitearch}/*
+# These are in subpackages
+%exclude %{python3_sitearch}/*sane*
+%exclude %{python3_sitearch}/_imagingtk*
+%exclude %{python3_sitearch}/PIL/ImageTk*
+%exclude %{python3_sitearch}/PIL/SpiderImagePlugin*
+%exclude %{python3_sitearch}/PIL/ImageQt*
+
+%files -n %{name3}-devel
+%{py3_incdir}/Imaging/
+
+%files -n %{name3}-doc
+%doc Scripts Images docs/_build/html
+
+%files -n %{name3}-sane
+%doc Sane/CHANGES Sane/demo*.py Sane/sanedoc.txt
+%{python3_sitearch}/*sane*
+
+%files -n %{name3}-tk
+%{python3_sitearch}/_imagingtk*
+%{python3_sitearch}/PIL/ImageTk*
+%{python3_sitearch}/PIL/SpiderImagePlugin*
+
+%files -n %{name3}-qt
+%{python3_sitearch}/PIL/ImageQt*
+
+%endif
+
+%changelog
+* Mon Oct 06 2014 Michal Minar <miminar@redhat.com> 2.0.0-19gitd1c6db8
+- Reenabled webp support on little endian archs.
+
+* Mon Aug 18 2014 Michal Minar <miminar@redhat.com> 2.0.0-18gitd1c6db8
+- Disabled webp support on ppc64le due to #962091 and #1127230.
+- Updated URL.
+
+* Fri Feb 21 2014 Michal Minar <miminar@redhat.com> 2.0.0-17gitd1c6db8
+- Wiped out some memory leaks.
+
+* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 2.0.0-15.gitd1c6db8
+- Mass rebuild 2014-01-24
+
+* Tue Jan 14 2014 Michal Minar <miminar@redhat.com> 2.0.0-14gitd1c6db8
+- Fixed memory corruption.
+- Resolves: rhbz#1001122
+
+* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 2.0.0-13.gitd1c6db8
+- Mass rebuild 2013-12-27
+
+* Mon Jul 29 2013 Roman Rakus <rrakus@redhat.com> - 2.0.0-12
+- Mark doc subpackage arch dependent. Docs are built depending on supported
+  features, which are different across archs.
+  Resolves: rhbz#987839
+
+* Wed Jul 24 2013 Roman Rakus <rrakus@redhat.com> - 2.0.0-11
+- Drop lcms support
+  Resolves: rhbz#987839
+
+* Mon May 13 2013 Roman Rakus <rrakus@redhat.com> - 2.0.0-10
+- Build without webp support on s390* archs
+  Resolves: rhbz#962059
+
+* Sat May 11 2013 Roman Rakus <rrakus@redhat.com> - 2.0.0-9.gitd1c6db8
+- Conditionaly disable build of python3 parts on RHEL system
+
+* Wed May 08 2013 Sandro Mani <manisandro@gmail.com> - 2.0.0-8.gitd1c6db8
+- Add patch to fix test failure on big-endian
+
+* Thu Apr 25 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 2.0.0-7.gitd1c6db8
+- Remove Obsoletes in the python-pillow-qt subpackage. Obsoletes isn't
+  appropriate since qt support didn't exist in the previous python-pillow
+  package so there's no reason to drag in python-pillow-qt when updating
+  python-pillow.
+
+* Fri Apr 19 2013 Sandro Mani <manisandro@gmail.com> - 2.0.0-6.gitd1c6db8
+- Update to latest git
+- python-pillow_quantization.patch now upstream
+- python-pillow_endianness.patch now upstream
+- Add subpackage for ImageQt module, with correct dependencies
+- Add PyQt4 and numpy BR (for generating docs / running tests)
+
+* Mon Apr 08 2013 Sandro Mani <manisandro@gmail.com> - 2.0.0-5.git93a488e
+- Reenable tests on bigendian, add patches for #928927
+
+* Sun Apr 07 2013 Sandro Mani <manisandro@gmail.com> - 2.0.0-4.git93a488e
+- Update to latest git
+- disable tests on bigendian (PPC*, S390*) until rhbz#928927 is fixed
+
+* Fri Mar 22 2013 Sandro Mani <manisandro@gmail.com> - 2.0.0-3.gitde210a2
+- python-pillow_tempfile.patch now upstream
+- Add python3-imaging provides (bug #924867)
+
+* Fri Mar 22 2013 Sandro Mani <manisandro@gmail.com> - 2.0.0-2.git2e88848
+- Update to latest git
+- Remove python-pillow-disable-test.patch, gcc is now fixed
+- Add python-pillow_tempfile.patch to prevent a temporary file from getting packaged
+
+* Tue Mar 19 2013 Sandro Mani <manisandro@gmail.com> - 2.0.0-1.git2f4207c
+- Update to 2.0.0 git snapshot
+- Enable python3 packages
+- Add libwebp-devel BR for Pillow 2.0.0
+
+* Wed Mar 13 2013 Peter Robinson <pbrobinson@fedoraproject.org> 1.7.8-6.20130305git
+- Add ARM support
+
+* Tue Mar 12 2013 Karsten Hopp <karsten@redhat.com> 1.7.8-5.20130305git
+- add s390* and ppc* to arch detection
+
+* Tue Mar 05 2013 Sandro Mani <manisandro@gmail.com> - 1.7.8-4.20130305git7866759
+- Update to latest git snapshot
+- 0001-Cast-hash-table-values-to-unsigned-long.patch now upstream
+- Pillow-1.7.8-selftest.patch now upstream
+
+* Mon Feb 25 2013 Sandro Mani <manisandro@gmail.com> - 1.7.8-3.20130210gite09ff61
+- Really remove -fno-strict-aliasing
+- Place comment on how to retreive source just above the Source0 line
+
+* Mon Feb 18 2013 Sandro Mani <manisandro@gmail.com> - 1.7.8-2.20130210gite09ff61
+- Rebuild without -fno-strict-aliasing
+- Add patch for upstream issue #52
+
+* Sun Feb 10 2013 Sandro Mani <manisandro@gmail.com> - 1.7.8-1.20130210gite09ff61
+- Initial RPM package