This commit is contained in:
parent
57a39f8244
commit
a945ea0232
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:eb6d14a582cd5055c52e8278641984c17945a8693733214a5d5a10b4f849ca4d
|
|
||||||
size 352625
|
|
3
pixman-0.15.2.tar.bz2
Normal file
3
pixman-0.15.2.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:5cfd22ec2dcc29b3ca41401fc1f19e0c5f1420b6e73e054d58282e8a6c28c47c
|
||||||
|
size 343022
|
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Apr 11 01:09:13 CEST 2009 - mboman@suse.de
|
||||||
|
|
||||||
|
- Update to version 0.15.2:
|
||||||
|
+ Reinstate SrcScaledNearest optimization
|
||||||
|
+ Implement PIXMAN_REPEAT_REFLECT for images
|
||||||
|
+ Add license and copyright holders to COPYING
|
||||||
|
+ Check for allocation errors during pixman_op()
|
||||||
|
+ Propagate the error returns from pixman_rect_alloc()
|
||||||
|
+ Check for failure when intersecting regions
|
||||||
|
+ Add support for BGRA and BGRx formats
|
||||||
|
+ Set srcRepeat = False when using fbCompositeSrcScaleNearest
|
||||||
|
+ Fix pixbuf_from_argb32() to take premultiplied alpha into
|
||||||
|
account
|
||||||
|
+ Replace custom type ullong with standard uint64_t in
|
||||||
|
pixman-mmx.c
|
||||||
|
+ Fix search and replace issue
|
||||||
|
- Remove custom CFLAGS
|
||||||
|
- Add %{version} to Requires in -devel package
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Feb 10 13:38:44 CET 2009 - mboman@suse.de
|
Tue Feb 10 13:38:44 CET 2009 - mboman@suse.de
|
||||||
|
|
||||||
|
27
pixman.spec
27
pixman.spec
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package pixman (Version 0.14.0)
|
# spec file for package pixman (Version 0.15.2)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
@ -19,8 +19,8 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: pixman
|
Name: pixman
|
||||||
Version: 0.14.0
|
Version: 0.15.2
|
||||||
Release: 2
|
Release: 1
|
||||||
License: X11/MIT
|
License: X11/MIT
|
||||||
BuildRequires: pkgconfig
|
BuildRequires: pkgconfig
|
||||||
Url: http://xorg.freedesktop.org/
|
Url: http://xorg.freedesktop.org/
|
||||||
@ -56,7 +56,7 @@ Authors:
|
|||||||
License: X11/MIT
|
License: X11/MIT
|
||||||
Summary: Pixel manipulation library - development files
|
Summary: Pixel manipulation library - development files
|
||||||
Group: Development/Libraries/X11
|
Group: Development/Libraries/X11
|
||||||
Requires: libpixman-1-0
|
Requires: libpixman-1-0 = %{version}
|
||||||
|
|
||||||
%description -n libpixman-1-0-devel
|
%description -n libpixman-1-0-devel
|
||||||
Pixman is a pixel manipulation library for X and cairo.
|
Pixman is a pixel manipulation library for X and cairo.
|
||||||
@ -71,7 +71,6 @@ Authors:
|
|||||||
%setup
|
%setup
|
||||||
|
|
||||||
%build
|
%build
|
||||||
CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing"
|
|
||||||
#autoreconf -fi
|
#autoreconf -fi
|
||||||
%configure --disable-static
|
%configure --disable-static
|
||||||
make %{?jobs:-j%jobs}
|
make %{?jobs:-j%jobs}
|
||||||
@ -89,6 +88,7 @@ rm -rf "$RPM_BUILD_ROOT"
|
|||||||
|
|
||||||
%files -n libpixman-1-0
|
%files -n libpixman-1-0
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
|
%doc COPYING
|
||||||
%{_libdir}/libpixman-1.so.*
|
%{_libdir}/libpixman-1.so.*
|
||||||
|
|
||||||
%files -n libpixman-1-0-devel
|
%files -n libpixman-1-0-devel
|
||||||
@ -98,6 +98,23 @@ rm -rf "$RPM_BUILD_ROOT"
|
|||||||
%{_libdir}/pkgconfig/pixman-1.pc
|
%{_libdir}/pkgconfig/pixman-1.pc
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Sat Apr 11 2009 mboman@suse.de
|
||||||
|
- Update to version 0.15.2:
|
||||||
|
+ Reinstate SrcScaledNearest optimization
|
||||||
|
+ Implement PIXMAN_REPEAT_REFLECT for images
|
||||||
|
+ Add license and copyright holders to COPYING
|
||||||
|
+ Check for allocation errors during pixman_op()
|
||||||
|
+ Propagate the error returns from pixman_rect_alloc()
|
||||||
|
+ Check for failure when intersecting regions
|
||||||
|
+ Add support for BGRA and BGRx formats
|
||||||
|
+ Set srcRepeat = False when using fbCompositeSrcScaleNearest
|
||||||
|
+ Fix pixbuf_from_argb32() to take premultiplied alpha into
|
||||||
|
account
|
||||||
|
+ Replace custom type ullong with standard uint64_t in
|
||||||
|
pixman-mmx.c
|
||||||
|
+ Fix search and replace issue
|
||||||
|
- Remove custom CFLAGS
|
||||||
|
- Add %%{version} to Requires in -devel package
|
||||||
* Tue Feb 10 2009 mboman@suse.de
|
* Tue Feb 10 2009 mboman@suse.de
|
||||||
- Initial package, split out from xorg-x11-libs
|
- Initial package, split out from xorg-x11-libs
|
||||||
+ Drop pixman-0.12.0.diff. See bnc#444639/rh#435771 and fdo#17293
|
+ Drop pixman-0.12.0.diff. See bnc#444639/rh#435771 and fdo#17293
|
||||||
|
Loading…
x
Reference in New Issue
Block a user