pixman/pixman.spec
Bjørn Lie 4d19d6c8c9 Accepting request 651396 from home:jubalh:branches:GNOME:Factory
- Update to version 0.36.0:
  + Add tests for (a)rgb floating point formats
  + Add support for argb/xrgb float formats, v5
  + Fix stride calculation in stress-test
  + Adjust for clang's removal of __builtin_shuffle
  + Fix vector loads on ppc64le
  + Promote unsigned short to unsigned int explicitly
  + pixman-filter: Made Gaussian a bit wider
  + pixman-filter: Nested polynomial for cubic
  + pixman-filter: Fix several issues related to normalization
  + pixman-filter: Speed up BOX/BOX filter
  + pixman-filter: integral splitting is only needed for triangle
    filterdd
  + pixman-filter: Correct Simpsons integration
  + pixman-filter: reduce amount of malloc/free/memcpy to generate
    filter
  + pixman-image: Added enable-gnuplot config to view filters in
    gnuplot
  + pixman-fast-path.c: Pick NEAREST affine fast paths before
    BILINEAR ones
  + pixman-private: include <float.h> only in C code
- Remove pixman-private-correct-include.patch: upstreamed

OBS-URL: https://build.opensuse.org/request/show/651396
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/pixman?expand=0&rev=99
2018-11-27 20:35:23 +00:00

84 lines
2.2 KiB
RPMSpec

#
# spec file for package pixman
#
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: pixman
Version: 0.36.0
Release: 0
Summary: Pixel manipulation library
License: MIT
Group: Development/Libraries/C and C++
Url: http://xorg.freedesktop.org/
Source: http://cairographics.org/releases/%{name}-%{version}.tar.gz
Source99: baselibs.conf
BuildRequires: pkgconfig
%description
Pixman is a pixel manipulation library for X and cairo.
%package -n libpixman-1-0
Summary: Pixel manipulation library
Group: System/Libraries
%description -n libpixman-1-0
Pixman is a pixel manipulation library for X and cairo.
%package -n libpixman-1-0-devel
Summary: Development files for the Pixel Manipulation library
Group: Development/Libraries/C and C++
Requires: libpixman-1-0 = %{version}
%description -n libpixman-1-0-devel
Pixman is a pixel manipulation library for X and cairo.
%prep
%setup -q
%build
#autoreconf -fi
#
# For now: disable neon on all ARMv6/7
%configure \
%ifarch %{arm}
--disable-arm-iwmmxt \
--disable-arm-neon \
%endif
%ifarch ppc64le
--disable-vmx \
%endif
--disable-static
make V=1 %{?_smp_mflags}
%install
%make_install
rm %{buildroot}%{_libdir}/libpixman-1.la
%post -n libpixman-1-0 -p /sbin/ldconfig
%postun -n libpixman-1-0 -p /sbin/ldconfig
%files -n libpixman-1-0
%license COPYING
%{_libdir}/libpixman-1.so.*
%files -n libpixman-1-0-devel
%{_includedir}/pixman-1
%{_libdir}/libpixman-1.so
%{_libdir}/pkgconfig/pixman-1.pc
%changelog