- updated to 1.1.0:

* Added further protections against invalid Huffman codes.
  * Added an extended version of tjDecompressHeader().
  * Added arithmetic encoding and decoding support.
  * TurboJPEG/OSS can now compress from/decompress to 
    grayscale bitmaps.
  * Added emulation of the libjpeg v7 and v8 APIs and ABIs.
  * Added two new TurboJPEG API functions, tjEncodeYUV() and
    tjDecompressToYUV().
  * The TurboJPEG dynamic library now uses versioned symbols.
  * Fixed visual artifacts in grayscale JPEG compression 
    caused by a typo in the RGB-to-chrominance lookup tables.
- see ChangeLog.txt for details.
- removed upstreamed jpegtran.patch and rh639672.patch

OBS-URL: https://build.opensuse.org/package/show/graphics/libjpeg-turbo?expand=0&rev=3
This commit is contained in:
Petr Gajdos 2011-03-03 13:00:10 +00:00 committed by Git OBS Bridge
parent 5909d438e1
commit d92b4b919c
8 changed files with 25 additions and 3227 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1675a911b30e9612ef9d3684cc8fb34d199150f878943495ed00c51a16ebae92
size 1054917

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:fd3d5c71a8c51336093df0f3603b6a268614a2f20375281f010e1c2cb7af9286
size 1208704

View File

@ -1,3 +1,21 @@
-------------------------------------------------------------------
Thu Mar 3 13:53:18 CET 2011 - pgajdos@suse.cz
- updated to 1.1.0:
* Added further protections against invalid Huffman codes.
* Added an extended version of tjDecompressHeader().
* Added arithmetic encoding and decoding support.
* TurboJPEG/OSS can now compress from/decompress to
grayscale bitmaps.
* Added emulation of the libjpeg v7 and v8 APIs and ABIs.
* Added two new TurboJPEG API functions, tjEncodeYUV() and
tjDecompressToYUV().
* The TurboJPEG dynamic library now uses versioned symbols.
* Fixed visual artifacts in grayscale JPEG compression
caused by a typo in the RGB-to-chrominance lookup tables.
- see ChangeLog.txt for details.
- removed upstreamed jpegtran.patch and rh639672.patch
-------------------------------------------------------------------
Tue Dec 14 14:32:56 CET 2010 - pgajdos@suse.cz

View File

@ -20,7 +20,7 @@
%define major 62
%define minor 0
%define micro 0
%define srcver 1.0.1
%define srcver 1.1.0
%define libver %{major}.%{minor}.%{micro}
# major number of library from jpeg8
%define cmajor 8
@ -41,8 +41,6 @@ Source0: %{name}-%{version}.tar.bz2
Source1: baselibs.conf
Patch0: %{name}-%{version}-int32.patch
Patch1: %{name}-%{version}-tiff-ojpeg.patch
Patch2: %{name}-%{version}-jpegtran.patch
Patch3: %{name}-%{version}-rh639672.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
@ -101,8 +99,6 @@ files using the libjpeg library.
%setup -q
%patch0
%patch1
%patch2
%patch3 -p1
%build
autoreconf -fiv
@ -131,7 +127,8 @@ rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root)
%doc README README-turbo.txt change.log ChangeLog.txt LGPL.txt LICENSE.txt
%doc README README-turbo.txt change.log ChangeLog.txt LGPL.txt
%doc LICENSE.txt usage.txt wizard.txt
/usr/bin/*
%doc %{_mandir}/man1/*
@ -144,6 +141,6 @@ rm -rf $RPM_BUILD_ROOT
%defattr(-,root,root)
/usr/include/*.h
%{_libdir}/libjpeg.so
%doc coderules.doc jconfig.doc libjpeg.doc structure.doc example.c
%doc coderules.txt jconfig.txt libjpeg.txt structure.txt example.c
%changelog