Accepting request 132458 from devel:libraries:c_c++
- Update to version 0.2.0: * Add support for ARGB -> YUVA conversion for lossless decoder * Add stats for lossless and alpha encoding * Security related hardening: allocation and size checks * Add PAM output support to dwebp * Alpha channel encode/decode support * Lossless encoder/decoder * Add TIFF input support to cwebp * Incompatible changes: - The encode ABI has been modified to support alpha encoding - Deprecated function WebPINew() has been removed - Decode function signatures have changed to consistently use size_t over int/uint32_t - decode_vp8.h is no longer installed system-wide - cwebp will encode the alpha channel if present. * Add libtiff-devel BuildRequires for the new tiff input support. * Rename libwebp2 subpackage to libwebp4 (by changing lname defines), following upstreams soname bump (incl. baselibs.conf). * No reason to run autogen OBS-URL: https://build.opensuse.org/request/show/132458 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libwebp?expand=0&rev=9
This commit is contained in:
parent
0203e15dd3
commit
5e43a793ab
@ -1 +1 @@
|
|||||||
libwebp2
|
libwebp4
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:40b18456e39b2822311b0ea161d6f09507cf5e8e937b02b9be3ee994ded67aba
|
|
||||||
size 544552
|
|
3
libwebp-0.2.0.tar.gz
Normal file
3
libwebp-0.2.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:aa7d5e162826362c79d7c36d41484042ab7460dc08dc33d4ea6823a0c77d4bfb
|
||||||
|
size 704034
|
@ -1,3 +1,26 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Aug 31 08:57:43 UTC 2012 - dimstar@opensuse.org
|
||||||
|
|
||||||
|
- Update to version 0.2.0:
|
||||||
|
* Add support for ARGB -> YUVA conversion for lossless decoder
|
||||||
|
* Add stats for lossless and alpha encoding
|
||||||
|
* Security related hardening: allocation and size checks
|
||||||
|
* Add PAM output support to dwebp
|
||||||
|
* Alpha channel encode/decode support
|
||||||
|
* Lossless encoder/decoder
|
||||||
|
* Add TIFF input support to cwebp
|
||||||
|
* Incompatible changes:
|
||||||
|
- The encode ABI has been modified to support alpha encoding
|
||||||
|
- Deprecated function WebPINew() has been removed
|
||||||
|
- Decode function signatures have changed to consistently use
|
||||||
|
size_t over int/uint32_t
|
||||||
|
- decode_vp8.h is no longer installed system-wide
|
||||||
|
- cwebp will encode the alpha channel if present.
|
||||||
|
* Add libtiff-devel BuildRequires for the new tiff input support.
|
||||||
|
* Rename libwebp2 subpackage to libwebp4 (by changing lname
|
||||||
|
defines), following upstreams soname bump (incl. baselibs.conf).
|
||||||
|
* No reason to run autogen
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jan 30 12:51:06 UTC 2012 - jengelh@medozas.de
|
Mon Jan 30 12:51:06 UTC 2012 - jengelh@medozas.de
|
||||||
|
|
||||||
|
24
libwebp.spec
24
libwebp.spec
@ -17,22 +17,20 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: libwebp
|
Name: libwebp
|
||||||
%define lname libwebp2
|
%define lname libwebp4
|
||||||
Version: 0.1.3
|
Version: 0.2.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Url: http://webmproject.org/
|
Url: https://developers.google.com/speed/webp/
|
||||||
Summary: Library and tools for the WebP graphics format
|
Summary: Library and tools for the WebP graphics format
|
||||||
License: BSD-3-Clause
|
License: BSD-3-Clause
|
||||||
Group: System/Libraries
|
Group: System/Libraries
|
||||||
|
|
||||||
Source0: http://webp.googlecode.com/files/%{name}-%{version}.tar.gz
|
Source0: http://webp.googlecode.com/files/%name-%version.tar.gz
|
||||||
Source1: baselibs.conf
|
Source1: baselibs.conf
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
BuildRequires: autoconf
|
|
||||||
BuildRequires: automake
|
|
||||||
BuildRequires: libjpeg-devel
|
BuildRequires: libjpeg-devel
|
||||||
BuildRequires: libpng-devel
|
BuildRequires: libpng-devel
|
||||||
BuildRequires: libtool
|
BuildRequires: libtiff-devel
|
||||||
BuildRequires: pkgconfig
|
BuildRequires: pkgconfig
|
||||||
BuildRequires: xz
|
BuildRequires: xz
|
||||||
|
|
||||||
@ -84,15 +82,13 @@ images more efficiently.
|
|||||||
%setup -q
|
%setup -q
|
||||||
|
|
||||||
%build
|
%build
|
||||||
mkdir -p m4
|
|
||||||
./autogen.sh
|
|
||||||
%configure --disable-static
|
%configure --disable-static
|
||||||
make %{?_smp_mflags}
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
%install
|
%install
|
||||||
b="%buildroot";
|
b="%buildroot";
|
||||||
make install DESTDIR="$b";
|
make install DESTDIR="$b";
|
||||||
rm -f "%buildroot/%_libdir"/*.la;
|
rm -f "$b/%_libdir"/*.la;
|
||||||
|
|
||||||
%post -n %lname -p /sbin/ldconfig
|
%post -n %lname -p /sbin/ldconfig
|
||||||
|
|
||||||
@ -105,12 +101,12 @@ rm -f "%buildroot/%_libdir"/*.la;
|
|||||||
|
|
||||||
%files -n %lname
|
%files -n %lname
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%_libdir/%{name}*.so.*
|
%_libdir/libwebp.so.4*
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%_libdir/%{name}*.so
|
%_libdir/libwebp.so
|
||||||
%_includedir/*
|
%_includedir/webp
|
||||||
%_libdir/pkgconfig/*
|
%_libdir/pkgconfig/libwebp.pc
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
Reference in New Issue
Block a user