Blame SPECS/libtiff.spec

1749ce
Summary:       Library of functions for manipulating TIFF format image files
1749ce
Name:          libtiff
ecce9f
Version:       4.4.0
ecce9f
Release:       2%{?dist}
1749ce
License:       libtiff
1749ce
URL:           http://www.simplesystems.org/libtiff/
1749ce
1749ce
Source:        ftp://ftp.simplesystems.org/pub/libtiff/tiff-%{version}.tar.gz
1749ce
1749ce
Patch0:        libtiff-am-version.patch
1749ce
Patch1:        libtiff-make-check.patch
1749ce
1749ce
BuildRequires: gcc, gcc-c++
1749ce
BuildRequires: zlib-devel libjpeg-devel jbigkit-devel libzstd-devel libwebp-devel
1749ce
BuildRequires: libtool automake autoconf pkgconfig
1749ce
BuildRequires: make
1749ce
1749ce
%description
1749ce
The libtiff package contains a library of functions for manipulating
1749ce
TIFF (Tagged Image File Format) image format files.  TIFF is a widely
1749ce
used file format for bitmapped images.  TIFF files usually end in the
1749ce
.tif extension and they are often quite large.
1749ce
1749ce
The libtiff package should be installed if you need to manipulate TIFF
1749ce
format image files.
1749ce
1749ce
%package devel
1749ce
Summary:       Development tools for programs which will use the libtiff library
1749ce
Requires:      %{name}%{?_isa} = %{version}-%{release}
1749ce
Requires:      pkgconfig
1749ce
1749ce
%description devel
1749ce
This package contains the header files and documentation necessary for
1749ce
developing programs which will manipulate TIFF format image files
1749ce
using the libtiff library.
1749ce
1749ce
If you need to develop programs which will manipulate TIFF format
1749ce
image files, you should install this package.  You'll also need to
1749ce
install the libtiff package.
1749ce
1749ce
%package static
1749ce
Summary:     Static TIFF image format file library
1749ce
Requires:    %{name}-devel%{?_isa} = %{version}-%{release}
1749ce
1749ce
%description static
1749ce
The libtiff-static package contains the statically linkable version of libtiff.
1749ce
Linking to static libraries is discouraged for most applications, but it is
1749ce
necessary for some boot packages.
1749ce
1749ce
%package tools
1749ce
Summary:    Command-line utility programs for manipulating TIFF files
1749ce
Requires:   %{name}%{?_isa} = %{version}-%{release}
1749ce
1749ce
%description tools
1749ce
This package contains command-line programs for manipulating TIFF format
1749ce
image files using the libtiff library.
1749ce
1749ce
%prep
1749ce
%setup -q -n tiff-%{version}
1749ce
1749ce
%patch0 -p1
1749ce
%patch1 -p1
1749ce
1749ce
# Use build system's libtool.m4, not the one in the package.
1749ce
rm -f libtool.m4
1749ce
1749ce
libtoolize --force  --copy
1749ce
aclocal -I . -I m4
1749ce
automake --add-missing --copy
1749ce
autoconf
1749ce
autoheader
1749ce
1749ce
%build
1749ce
export CFLAGS="%{optflags} -fno-strict-aliasing"
1749ce
%configure --enable-ld-version-script
1749ce
%make_build
1749ce
1749ce
%install
1749ce
%make_install
1749ce
1749ce
# remove what we didn't want installed
1749ce
rm $RPM_BUILD_ROOT%{_libdir}/*.la
1749ce
rm -rf $RPM_BUILD_ROOT%{_datadir}/doc/
1749ce
1749ce
# no libGL dependency, please
1749ce
rm -f $RPM_BUILD_ROOT%{_bindir}/tiffgt
1749ce
1749ce
# no sgi2tiff or tiffsv, either
1749ce
rm -f $RPM_BUILD_ROOT%{_bindir}/sgi2tiff
1749ce
rm -f $RPM_BUILD_ROOT%{_bindir}/tiffsv
1749ce
1749ce
rm -f $RPM_BUILD_ROOT%{_mandir}/man1/tiffgt.1
1749ce
rm -f $RPM_BUILD_ROOT%{_mandir}/man1/sgi2tiff.1
1749ce
rm -f $RPM_BUILD_ROOT%{_mandir}/man1/tiffsv.1
1749ce
rm -f html/man/tiffgt.1.html
1749ce
rm -f html/man/sgi2tiff.1.html
1749ce
rm -f html/man/tiffsv.1.html
1749ce
1749ce
# multilib header hack
1749ce
# we only apply this to known Red Hat multilib arches, per bug #233091
1749ce
case `uname -i` in
1749ce
  i386 | ppc | s390 | sparc )
1749ce
    wordsize="32"
1749ce
    ;;
1749ce
  x86_64 | ppc64 | s390x | sparc64 )
1749ce
    wordsize="64"
1749ce
    ;;
1749ce
  *)
1749ce
    wordsize=""
1749ce
    ;;
1749ce
esac
1749ce
1749ce
if test -n "$wordsize"
1749ce
then
1749ce
  mv $RPM_BUILD_ROOT%{_includedir}/tiffconf.h \
1749ce
     $RPM_BUILD_ROOT%{_includedir}/tiffconf-$wordsize.h
1749ce
1749ce
  cat >$RPM_BUILD_ROOT%{_includedir}/tiffconf.h <
1749ce
#ifndef TIFFCONF_H_MULTILIB
1749ce
#define TIFFCONF_H_MULTILIB
1749ce
1749ce
#include <bits/wordsize.h>
1749ce
1749ce
#if __WORDSIZE == 32
1749ce
# include "tiffconf-32.h"
1749ce
#elif __WORDSIZE == 64
1749ce
# include "tiffconf-64.h"
1749ce
#else
1749ce
# error "unexpected value for __WORDSIZE macro"
1749ce
#endif
1749ce
1749ce
#endif
1749ce
EOF
1749ce
1749ce
fi
1749ce
1749ce
%ldconfig_scriptlets
1749ce
1749ce
%check
1749ce
LD_LIBRARY_PATH=$PWD:$LD_LIBRARY_PATH make check
1749ce
1749ce
# don't include documentation Makefiles, they are a multilib hazard
1749ce
find html -name 'Makefile*' | xargs rm
1749ce
1749ce
%files
1749ce
%license COPYRIGHT
1749ce
%doc README.md RELEASE-DATE VERSION
1749ce
%{_libdir}/libtiff.so.*
1749ce
%{_libdir}/libtiffxx.so.*
1749ce
1749ce
%files devel
1749ce
%doc TODO ChangeLog html
1749ce
%{_includedir}/*
1749ce
%{_libdir}/libtiff.so
1749ce
%{_libdir}/libtiffxx.so
1749ce
%{_libdir}/pkgconfig/libtiff*.pc
1749ce
%{_mandir}/man3/*
1749ce
1749ce
%files static
1749ce
%{_libdir}/*.a
1749ce
1749ce
%files tools
1749ce
%{_bindir}/*
1749ce
%{_mandir}/man1/*
1749ce
1749ce
%changelog
ecce9f
* Wed Jun 15 2022 Matej Mužila <mmuzila@redhat.com> 4.4.0-2
ecce9f
- Update to version 4.4.0
ecce9f
- Resolves: CVE-2022-0561 CVE-2022-0562 CVE-2022-22844 CVE-2022-0865
ecce9f
  CVE-2022-0891 CVE-2022-0924 CVE-2022-0909 CVE-2022-0908 CVE-2022-1354
ecce9f
  CVE-2022-1355
ecce9f
1749ce
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 4.2.0-3
1749ce
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
1749ce
  Related: rhbz#1991688
1749ce
1749ce
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 4.2.0-2
1749ce
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
1749ce
1749ce
* Tue Feb 02 2021 Nikola Forró <nforro@redhat.com> - 4.2.0-1
1749ce
- New upstream release 4.2.0 (#1909412)
1749ce
1749ce
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.0-7
1749ce
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
1749ce
1749ce
* Mon Jan 04 2021 Nikola Forró <nforro@redhat.com> - 4.1.0-6
1749ce
- Build with ZSTD and WEBP support (#1911969)
1749ce
1749ce
* Mon Nov 02 2020 Nikola Forró <nforro@redhat.com> - 4.1.0-5
1749ce
- Remove libtiff-devel dependency on arch-specific pkgconfig
1749ce
1749ce
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.0-4
1749ce
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
1749ce
1749ce
* Mon Jul 13 2020 Tom Stellard <tstellar@redhat.com> - 4.1.0-3
1749ce
- Use make macros
1749ce
- https://fedoraproject.org/wiki/Changes/UseMakeBuildInstallMacro
1749ce
1749ce
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.0-2
1749ce
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
1749ce
1749ce
* Tue Nov 05 2019 Nikola Forró <nforro@redhat.com> - 4.1.0-1
1749ce
- New upstream version libtiff-4.1.0 (#1768276)
1749ce
1749ce
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.10-6
1749ce
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
1749ce
1749ce
* Wed Jun 12 2019 Nikola Forró <nforro@redhat.com> - 4.0.10-5
1749ce
- Fix CVE-2018-19210 (#1649387)
1749ce
1749ce
* Fri Feb 15 2019 Nikola Forró <nforro@redhat.com> - 4.0.10-4
1749ce
- Fix CVE-2019-7663 (#1677529)
1749ce
1749ce
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.10-3
1749ce
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
1749ce
1749ce
* Wed Jan 30 2019 Nikola Forró <nforro@redhat.com> - 4.0.10-2
1749ce
- Fix CVE-2019-6128 (#1667124)
1749ce
1749ce
* Wed Nov 14 2018 Nikola Forró <nforro@redhat.com> - 4.0.10-1
1749ce
- New upstream version libtiff-4.0.10
1749ce
1749ce
* Thu Oct 11 2018 Nikola Forró <nforro@redhat.com> - 4.0.9-13
1749ce
- Fix CVE-2018-17100 (#1631070) and CVE-2018-17101 (#1631079)
1749ce
1749ce
* Thu Oct 11 2018 Nikola Forró <nforro@redhat.com> - 4.0.9-12
1749ce
- Fix CVE-2018-10779 (#1577316)
1749ce
1749ce
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.9-11
1749ce
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
1749ce
1749ce
* Wed Jun 06 2018 Nikola Forró <nforro@redhat.com> - 4.0.9-10
1749ce
- Fix CVE-2017-11613 (#1475531)
1749ce
1749ce
* Wed May 30 2018 Nikola Forró <nforro@redhat.com> - 4.0.9-9
1749ce
- Fix CVE-2017-9935, CVE-2017-18013 (#1530441),
1749ce
  CVE-2018-8905 (#1559705) and CVE-2018-10963 (#1579061)
1749ce
1749ce
* Tue Apr 17 2018 Nikola Forró <nforro@redhat.com> - 4.0.9-8
1749ce
- Fix CVE-2018-7456 (#1556709)
1749ce
1749ce
* Fri Mar 23 2018 Nikola Forró <nforro@redhat.com> - 4.0.9-7
1749ce
- Fix CVE-2018-5784 (#1537742)
1749ce
1749ce
* Tue Feb 20 2018 Nikola Forró <nforro@redhat.com> - 4.0.9-6
1749ce
- Add missing gcc-c++ build dependency
1749ce
1749ce
* Tue Feb 20 2018 Nikola Forró <nforro@redhat.com> - 4.0.9-5
1749ce
- Add missing gcc build dependency
1749ce
1749ce
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.9-4
1749ce
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
1749ce
1749ce
* Sat Feb 03 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.0.9-3
1749ce
- Switch to %%ldconfig_scriptlets
1749ce
1749ce
* Mon Dec 11 2017 Nikola Forró <nforro@redhat.com> - 4.0.9-2
1749ce
- Fix unescaped macro in changelog entry (#1523643)
1749ce
1749ce
* Thu Nov 23 2017 Nikola Forró <nforro@redhat.com> - 4.0.9-1
1749ce
- New upstream version libtiff-4.0.9 (#1514863)
1749ce
1749ce
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.8-3
1749ce
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
1749ce
1749ce
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.8-2
1749ce
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
1749ce
1749ce
* Mon May 22 2017 Nikola Forró <nforro@redhat.com> - 4.0.8-1
1749ce
- New upstream version libtiff-4.0.8 (#1453030)
1749ce
1749ce
* Wed Apr 12 2017 Nikola Forró <nforro@redhat.com> - 4.0.7-5
1749ce
- Fix CVE-2017-759{2,3,4,5,6,7,8,9}, CVE-2017-760{0,1,2} (#1441273)
1749ce
1749ce
* Wed Apr 05 2017 Nikola Forró <nforro@redhat.com> - 4.0.7-4
1749ce
- Fix CVE-2016-1026{6,7,8,9}, CVE-2016-1027{0,1,2} (#1438464)
1749ce
1749ce
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.7-3
1749ce
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
1749ce
1749ce
* Tue Jan 24 2017 Nikola Forró <nforro@redhat.com> - 4.0.7-2
1749ce
- Fix Hylafax breakage (#1416042)
1749ce
1749ce
* Mon Nov 21 2016 Nikola Forró <nforro@redhat.com> - 4.0.7-1
1749ce
- New upstream version libtiff-4.0.7 (#1396769)
1749ce
1749ce
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.6-2
1749ce
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
1749ce
1749ce
* Fri Oct 09 2015 Petr Hracek <phracek@redhat.com> - 4.0.6-1
1749ce
- New upstream version libtiff-4.0.6 (#1262585)
1749ce
1749ce
* Wed Sep 09 2015 Petr Hracek <phracek@redhat.com> - 4.0.5-1
1749ce
- New upstream version libtiff-4.0.5 (#1258286)
1749ce
1749ce
* Mon Jun 22 2015 Petr Hracek <phracek@redhat.com> - 4.0.4-1
1749ce
- New upstream version libtiff-4.0.4 (#1234191)
1749ce
1749ce
* Fri Jun 19 2015 Petr Hracek <phracek@redhat.com> - 4.0.4beta-1
1749ce
- New upstream version libtiff-4.0.4beta (#1186219)
1749ce
1749ce
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.0.3-21
1749ce
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
1749ce
1749ce
* Tue May 19 2015 Petr Hracek <phracek@redhat.com> - 4.0.3-20
1749ce
- CVE-2014-9655 and CVE-2015-1547 #1190710
1749ce
1749ce
* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 4.0.3-19
1749ce
- Rebuilt for GCC 5 C++11 ABI change
1749ce
1749ce
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.0.3-18
1749ce
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
1749ce
1749ce
* Tue Aug 12 2014 Kalev Lember <kalevlember@gmail.com> - 4.0.3-17
1749ce
- Rebuilt for libjbig soname bump
1749ce
1749ce
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.0.3-16
1749ce
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
1749ce
1749ce
* Wed May 21 2014 Petr Hracek <phracek@redhat.com> - 4.0.3-15
1749ce
- Add upstream patches for CVE-2013-4243 (#996832)
1749ce
1749ce
* Thu Dec 19 2013 Petr Hracek <phracek@redhat.com> - 4.0.3-14
1749ce
- Fix: #1044609 Can't install both architectures
1749ce
1749ce
* Wed Dec 18 2013 Petr Hracek <phracek@redhat.com> - 4.0.3-13
1749ce
- Fix #510240 Correct tiff2ps man option -W
1749ce
1749ce
* Wed Oct 16 2013 Petr Hracek <phracek@redhat.com> - 4.0.3-12
1749ce
- make check moved to %%check section (#1017070)
1749ce
1749ce
* Tue Oct 08 2013 Petr Hracek <phracek@redhat.com> - 4.0.3-11
1749ce
- Resolves: #510258, #510240 - man page corrections
1749ce
1749ce
* Mon Aug 19 2013 Petr Hracek <phracek@redhat.com> 4.0.3-10
1749ce
- Add upstream patches for CVE-2013-4244
1749ce
Resolves: #996468
1749ce
1749ce
* Wed Aug 14 2013 Petr Hracek <phracek@redhat.com> 4.0.3-9
1749ce
- Add upstream patches for CVE-2013-4231 CVE-2013-4232
1749ce
Resolves: #995965 #995975
1749ce
1749ce
* Mon Aug 12 2013 Petr Hracek <phracek@redhat.com> - 4.0.3-8
1749ce
- Manpage fixing (#510240, #510258)
1749ce
1749ce
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.0.3-7
1749ce
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
1749ce
1749ce
* Thu May  2 2013 Tom Lane <tgl@redhat.com> 4.0.3-6
1749ce
- Add upstream patches for CVE-2013-1960, CVE-2013-1961
1749ce
Resolves: #958609
1749ce
1749ce
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.0.3-5
1749ce
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
1749ce
1749ce
* Fri Jan 18 2013 Adam Tkac <atkac redhat com> - 4.0.3-4
1749ce
- rebuild due to "jpeg8-ABI" feature drop
1749ce
1749ce
* Wed Dec 19 2012 Tom Lane <tgl@redhat.com> 4.0.3-3
1749ce
- Add upstream patch to avoid bogus self-test failure with libjpeg-turbo v8
1749ce
1749ce
* Thu Dec 13 2012 Tom Lane <tgl@redhat.com> 4.0.3-2
1749ce
- Add upstream patches for CVE-2012-4447, CVE-2012-4564
1749ce
  (note: CVE-2012-5581 is already fixed in 4.0.3)
1749ce
Resolves: #880907
1749ce
1749ce
* Thu Oct  4 2012 Tom Lane <tgl@redhat.com> 4.0.3-1
1749ce
- Update to libtiff 4.0.3
1749ce
1749ce
* Fri Aug  3 2012 Tom Lane <tgl@redhat.com> 4.0.2-6
1749ce
- Remove compat subpackage; no longer needed
1749ce
- Minor specfile cleanup per suggestions from Tom Callaway
1749ce
Related: #845110
1749ce
1749ce
* Thu Aug  2 2012 Tom Lane <tgl@redhat.com> 4.0.2-5
1749ce
- Add accessor functions for opaque type TIFFField (backport of not-yet-released
1749ce
  upstream feature addition; needed to fix freeimage)
1749ce
1749ce
* Sun Jul 22 2012 Tom Lane <tgl@redhat.com> 4.0.2-4
1749ce
- Add patches for CVE-2012-3401
1749ce
Resolves: #841736
1749ce
1749ce
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.0.2-3
1749ce
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
1749ce
1749ce
* Tue Jul 03 2012 Karsten Hopp <karsten@redhat.com> 4.0.2-2
1749ce
- add opensuse bigendian patch to fix raw_decode self check failure on ppc*, s390*
1749ce
1749ce
* Thu Jun 28 2012 Tom Lane <tgl@redhat.com> 4.0.2-1
1749ce
- Update to libtiff 4.0.2, includes fix for CVE-2012-2113
1749ce
  (note that CVE-2012-2088 does not apply to 4.0.x)
1749ce
- Update libtiff-compat to 3.9.6 and add patches to it for
1749ce
  CVE-2012-2088, CVE-2012-2113
1749ce
Resolves: #832866
1749ce
1749ce
* Fri Jun  1 2012 Tom Lane <tgl@redhat.com> 4.0.1-2
1749ce
- Enable JBIG support
1749ce
Resolves: #826240
1749ce
1749ce
* Sun May  6 2012 Tom Lane <tgl@redhat.com> 4.0.1-1
1749ce
- Update to libtiff 4.0.1, adds BigTIFF support and other features;
1749ce
  library soname is bumped from libtiff.so.3 to libtiff.so.5
1749ce
Resolves: #782383
1749ce
- Temporarily package 3.9.5 shared library (only) in libtiff-compat subpackage
1749ce
  so that dependent packages won't be broken while rebuilding proceeds
1749ce
1749ce
* Thu Apr  5 2012 Tom Lane <tgl@redhat.com> 3.9.5-3
1749ce
- Add fix for CVE-2012-1173
1749ce
Resolves: #CVE-2012-1173
1749ce
1749ce
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.9.5-2
1749ce
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
1749ce
1749ce
* Tue Apr 12 2011 Tom Lane <tgl@redhat.com> 3.9.5-1
1749ce
- Update to libtiff 3.9.5, incorporating all our previous patches plus other
1749ce
  fixes, notably the fix for CVE-2009-5022
1749ce
Related: #695885
1749ce
1749ce
* Mon Mar 21 2011 Tom Lane <tgl@redhat.com> 3.9.4-4
1749ce
- Fix incorrect fix for CVE-2011-0192
1749ce
Resolves: #684007
1749ce
Related: #688825
1749ce
- Add fix for CVE-2011-1167
1749ce
Resolves: #689574
1749ce
1749ce
* Wed Mar  2 2011 Tom Lane <tgl@redhat.com> 3.9.4-3
1749ce
- Add patch for CVE-2011-0192
1749ce
Resolves: #681672
1749ce
- Fix non-security-critical potential SIGSEGV in gif2tiff
1749ce
Related: #648820
1749ce
1749ce
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.9.4-2
1749ce
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
1749ce
1749ce
* Tue Jun 22 2010 Tom Lane <tgl@redhat.com> 3.9.4-1
1749ce
- Update to libtiff 3.9.4, for numerous bug fixes including fixes for
1749ce
  CVE-2010-1411, CVE-2010-2065, CVE-2010-2067
1749ce
Resolves: #554371
1749ce
Related: #460653, #588784, #601274, #599576, #592361, #603024
1749ce
- Add fixes for multiple SIGSEGV problems
1749ce
Resolves: #583081
1749ce
Related: #603081, #603699, #603703
1749ce
1749ce
* Tue Jan  5 2010 Tom Lane <tgl@redhat.com> 3.9.2-3
1749ce
- Apply Adam Goode's fix for Warmerdam's fix
1749ce
Resolves: #552360
1749ce
Resolves: #533353
1749ce
- Add some defenses to prevent tiffcmp from crashing on downsampled JPEG
1749ce
  images; this isn't enough to make it really work correctly though
1749ce
Related: #460322
1749ce
1749ce
* Wed Dec 16 2009 Tom Lane <tgl@redhat.com> 3.9.2-2
1749ce
- Apply Warmerdam's partial fix for bug #460322 ... better than nothing.
1749ce
Related: #460322
1749ce
1749ce
* Thu Dec  3 2009 Tom Lane <tgl@redhat.com> 3.9.2-1
1749ce
- Update to libtiff 3.9.2; stop carrying a lot of old patches
1749ce
Resolves: #520734
1749ce
- Split command-line tools into libtiff-tools subpackage
1749ce
Resolves: #515170
1749ce
- Use build system's libtool instead of what package contains;
1749ce
  among other cleanup this gets rid of unwanted rpath specs in executables
1749ce
Related: #226049
1749ce
1749ce
* Thu Oct 15 2009 Tom Lane <tgl@redhat.com> 3.8.2-16
1749ce
- add sparc/sparc64 to multilib header support
1749ce
1749ce
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.8.2-15
1749ce
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
1749ce
1749ce
* Mon Jul 13 2009 Tom Lane <tgl@redhat.com> 3.8.2-14
1749ce
- Fix buffer overrun risks caused by unchecked integer overflow (CVE-2009-2347)
1749ce
Related: #510041
1749ce
1749ce
* Wed Jul  1 2009 Tom Lane <tgl@redhat.com> 3.8.2-13
1749ce
- Fix some more LZW decoding vulnerabilities (CVE-2009-2285)
1749ce
Related: #507465
1749ce
- Update upstream URL
1749ce
1749ce
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.8.2-12
1749ce
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
1749ce
1749ce
* Tue Aug 26 2008 Tom Lane <tgl@redhat.com> 3.8.2-11
1749ce
- Fix LZW decoding vulnerabilities (CVE-2008-2327)
1749ce
Related: #458674
1749ce
- Use -fno-strict-aliasing per rpmdiff recommendation
1749ce
1749ce
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 3.8.2-10
1749ce
- Autorebuild for GCC 4.3
1749ce
1749ce
* Wed Aug 22 2007 Tom Lane <tgl@redhat.com> 3.8.2-9
1749ce
- Update License tag
1749ce
- Rebuild to fix Fedora toolchain issues
1749ce
1749ce
* Thu Jul 19 2007 Tom Lane <tgl@redhat.com> 3.8.2-8
1749ce
- Restore static library to distribution, in a separate -static subpackage
1749ce
Resolves: #219905
1749ce
- Don't apply multilib header hack to unrecognized architectures
1749ce
Resolves: #233091
1749ce
- Remove documentation for programs we don't ship
1749ce
Resolves: #205079
1749ce
Related: #185145
1749ce
1749ce
* Tue Jan 16 2007 Tom Lane <tgl@redhat.com> 3.8.2-7
1749ce
- Remove Makefiles from the shipped /usr/share/doc/html directories
1749ce
Resolves: bz #222729
1749ce
1749ce
* Tue Sep  5 2006 Jindrich Novy <jnovy@redhat.com> - 3.8.2-6
1749ce
- fix CVE-2006-2193, tiff2pdf buffer overflow (#194362)
1749ce
- fix typo in man page for tiffset (#186297)
1749ce
- use %%{?dist}
1749ce
1749ce
* Mon Jul 24 2006 Matthias Clasen <mclasen@redhat.com>
1749ce
- Fix several vulnerabilities (CVE-2006-3460 CVE-2006-3461
1749ce
  CVE-2006-3462 CVE-2006-3463 CVE-2006-3464 CVE-2006-3465)
1749ce
1749ce
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 3.8.2-4.1
1749ce
- rebuild
1749ce
1749ce
* Fri Jun  2 2006 Matthias Clasen <mclasen@redhat.com> - 3.8.2-3
1749ce
- Fix multilib conflict
1749ce
1749ce
* Thu May 25 2006 Matthias Clasen <mclasen@redhat.com> - 3.8.2-3
1749ce
- Fix overflows in tiffsplit
1749ce
1749ce
* Wed Apr 26 2006 Matthias Clasen <mclasen@redhat.com> - 3.8.2-2
1749ce
- Drop tiffgt to get rid of the libGL dependency (#190768)
1749ce
1749ce
* Wed Apr 26 2006 Matthias Clasen <mclasen@redhat.com> - 3.8.2-1
1749ce
- Update to 3.8.2
1749ce
1749ce
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 3.7.4-3.2.1
1749ce
- bump again for double-long bug on ppc(64)
1749ce
1749ce
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 3.7.4-3.2
1749ce
- rebuilt for new gcc4.1 snapshot and glibc changes
1749ce
1749ce
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
1749ce
- rebuilt
1749ce
1749ce
* Wed Nov 16 2005 Matthias Clasen <mclasen@redhat.com> 3.7.4-3
1749ce
- Don't ship static libs
1749ce
1749ce
* Fri Nov 11 2005 Matthias Saou <http://freshrpms.net/> 3.7.4-2
1749ce
- Remove useless explicit dependencies.
1749ce
- Minor spec file cleanups.
1749ce
- Move make check to %%check.
1749ce
- Add _smp_mflags.
1749ce
1749ce
* Thu Sep 29 2005 Matthias Clasen <mclasen@redhat.com> - 3.7.4-1
1749ce
- Update to 3.7.4
1749ce
- Drop upstreamed patches
1749ce
1749ce
* Wed Jun 29 2005 Matthias Clasen <mclasen@redhat.com> - 3.7.2-1
1749ce
- Update to 3.7.2
1749ce
- Drop upstreamed patches
1749ce
1749ce
* Fri May  6 2005 Matthias Clasen <mclasen@redhat.com> - 3.7.1-6
1749ce
- Fix a stack overflow
1749ce
1749ce
* Wed Mar  2 2005 Matthias Clasen <mclasen@redhat.com> - 3.7.1-5
1749ce
- Don't use mktemp
1749ce
1749ce
* Wed Mar  2 2005 Matthias Clasen <mclasen@redhat.com> - 3.7.1-4
1749ce
- Rebuild with gcc4
1749ce
1749ce
* Wed Jan  5 2005 Matthias Clasen <mclasen@redhat.com> - 3.7.1-3
1749ce
- Drop the largefile patch again
1749ce
- Fix a problem with the handling of alpha channels
1749ce
- Fix an integer overflow in tiffdump (#143576)
1749ce
1749ce
* Wed Dec 22 2004 Matthias Clasen <mclasen@redhat.com> - 3.7.1-2
1749ce
- Readd the largefile patch (#143560)
1749ce
1749ce
* Wed Dec 22 2004 Matthias Clasen <mclasen@redhat.com> - 3.7.1-1
1749ce
- Upgrade to 3.7.1
1749ce
- Remove upstreamed patches
1749ce
- Remove specfile cruft
1749ce
- make check
1749ce
1749ce
* Thu Oct 14 2004 Matthias Clasen <mclasen@redhat.com> 3.6.1-7
1749ce
- fix some integer and buffer overflows (#134853, #134848)
1749ce
1749ce
* Tue Oct 12 2004 Matthias Clasen <mclasen@redhat.com> 3.6.1-6
1749ce
- fix http://bugzilla.remotesensing.org/show_bug.cgi?id=483
1749ce
1749ce
* Mon Sep 27 2004 Rik van Riel <riel@redhat.com> 3.6.1-4
1749ce
- compile using RPM_OPT_FLAGS (bz #133650)
1749ce
1749ce
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
1749ce
- rebuilt
1749ce
1749ce
* Thu May 20 2004 Matthias Clasen <mclasen@redhat.com> 3.6.1-2
1749ce
- Fix and use the makeflags patch
1749ce
1749ce
* Wed May 19 2004 Matthias Clasen <mclasen@redhat.com> 3.6.1-1
1749ce
- Upgrade to 3.6.1
1749ce
- Adjust patches
1749ce
- Don't install tiffgt man page  (#104864)
1749ce
1749ce
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
1749ce
- rebuilt
1749ce
1749ce
* Sat Feb 21 2004 Florian La Roche <Florian.LaRoche@redhat.de>
1749ce
- really add symlink to shared lib by running ldconfig at compile time
1749ce
1749ce
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
1749ce
- rebuilt
1749ce
1749ce
* Thu Oct 09 2003 Florian La Roche <Florian.LaRoche@redhat.de>
1749ce
- link shared lib against -lm (Jakub Jelinek)
1749ce
1749ce
* Thu Sep 25 2003 Jeremy Katz <katzj@redhat.com> 3.5.7-13
1749ce
- rebuild to fix gzipped file md5sum (#91281)
1749ce
1749ce
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
1749ce
- rebuilt
1749ce
1749ce
* Tue Feb 11 2003 Phil Knirsch <pknirsch@redhat.com> 3.5.7-11
1749ce
- Fixed rebuild problems.
1749ce
1749ce
* Tue Feb 04 2003 Florian La Roche <Florian.LaRoche@redhat.de>
1749ce
- add symlink to shared lib
1749ce
1749ce
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
1749ce
- rebuilt
1749ce
1749ce
* Thu Dec 12 2002 Tim Powers <timp@redhat.com> 3.5.7-8
1749ce
- rebuild on all arches
1749ce
1749ce
* Mon Aug 19 2002 Phil Knirsch <pknirsch@redhat.com> 3.5.7-7
1749ce
- Added LFS support (#71593)
1749ce
1749ce
* Tue Jun 25 2002 Phil Knirsch <pknirsch@redhat.com> 3.5.7-6
1749ce
- Fixed wrong exit code of tiffcp app (#67240)
1749ce
1749ce
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
1749ce
- automated rebuild
1749ce
1749ce
* Thu May 23 2002 Tim Powers <timp@redhat.com>
1749ce
- automated rebuild
1749ce
1749ce
* Wed May 15 2002 Phil Knirsch <pknirsch@redhat.com>
1749ce
- Fixed segfault in fax2tiff tool (#64708).
1749ce
1749ce
* Mon Feb 25 2002 Phil Knirsch <pknirsch@redhat.com>
1749ce
- Fixed problem with newer bash versions setting CDPATH (#59741)
1749ce
1749ce
* Tue Feb 19 2002 Phil Knirsch <pknirsch@redhat.com>
1749ce
- Update to current release 3.5.7
1749ce
1749ce
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
1749ce
- automated rebuild
1749ce
1749ce
* Tue Aug 28 2001 Phil Knirsch <phil@redhat.de>
1749ce
- Fixed ia64 problem with tiffinfo. Was general 64 bit arch problem where s390x
1749ce
  and ia64 were missing (#52129).
1749ce
1749ce
* Tue Jun 26 2001 Philipp Knirsch <pknirsch@redhat.de>
1749ce
- Hopefully final symlink fix
1749ce
1749ce
* Thu Jun 21 2001 Than Ngo <than@redhat.com>
1749ce
- add missing libtiff symlink
1749ce
1749ce
* Fri Mar 16 2001 Crutcher Dunnavant <crutcher@redhat.com>
1749ce
- killed tiff-to-ps.fpi filter
1749ce
1749ce
* Wed Feb 28 2001 Philipp Knirsch <pknirsch@redhat.de>
1749ce
- Fixed missing devel version dependancy.
1749ce
1749ce
* Tue Dec 19 2000 Philipp Knirsch <pknirsch@redhat.de>
1749ce
- rebuild
1749ce
1749ce
* Mon Aug  7 2000 Crutcher Dunnavant <crutcher@redhat.com>
1749ce
- added a tiff-to-ps.fpi filter for printing
1749ce
1749ce
* Thu Jul 13 2000 Prospector <bugzilla@redhat.com>
1749ce
- automatic rebuild
1749ce
1749ce
* Thu Jul 13 2000 Nalin Dahyabhai <nalin@redhat.com>
1749ce
- apply Peter Skarpetis's fix for the 32-bit conversion
1749ce
1749ce
* Mon Jul  3 2000 Nalin Dahyabhai <nalin@redhat.com>
1749ce
- make man pages non-executable (#12811)
1749ce
1749ce
* Mon Jun 12 2000 Nalin Dahyabhai <nalin@redhat.com>
1749ce
- remove CVS repo info from data directories
1749ce
1749ce
* Thu May 18 2000 Nalin Dahyabhai <nalin@redhat.com>
1749ce
- fix build rooting
1749ce
- fix syntax error in configure script
1749ce
- move man pages to {_mandir}
1749ce
1749ce
* Wed May 17 2000 Nalin Dahyabhai <nalin@redhat.com>
1749ce
- rebuild for an errata release
1749ce
1749ce
* Wed Mar 29 2000 Nalin Dahyabhai <nalin@redhat.com>
1749ce
- update to 3.5.5, which integrates our fax2ps fixes and the glibc fix
1749ce
1749ce
* Tue Mar 28 2000 Nalin Dahyabhai <nalin@redhat.com>
1749ce
- fix fax2ps swapping height and width in the bounding box
1749ce
1749ce
* Mon Mar 27 2000 Nalin Dahyabhai <nalin@redhat.com>
1749ce
- move man pages from devel package to the regular one
1749ce
- integrate Frank Warmerdam's fixed .fax handling code (keep until next release
1749ce
  of libtiff)
1749ce
- fix fax2ps breakage (bug #8345)
1749ce
1749ce
* Sat Feb 05 2000 Nalin Dahyabhai <nalin@redhat.com>
1749ce
- set MANDIR=man3 to make multifunction man pages friendlier
1749ce
1749ce
* Mon Jan 31 2000 Nalin Dahyabhai <nalin@redhat.com>
1749ce
- fix URLs
1749ce
1749ce
* Fri Jan 28 2000 Nalin Dahyabhai <nalin@redhat.com>
1749ce
- link shared library against libjpeg and libz
1749ce
1749ce
* Tue Jan 18 2000 Nalin Dahyabhai <nalin@redhat.com>
1749ce
- enable zip and jpeg codecs
1749ce
- change defattr in normal package to 0755
1749ce
- add defattr to -devel package
1749ce
1749ce
* Wed Dec 22 1999 Bill Nottingham <notting@redhat.com>
1749ce
- update to 3.5.4
1749ce
1749ce
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
1749ce
- auto rebuild in the new build environment (release 6)
1749ce
1749ce
* Wed Jan 13 1999 Cristian Gafton <gafton@redhat.com>
1749ce
- build for glibc 2.1
1749ce
1749ce
* Wed Jun 10 1998 Prospector System <bugs@redhat.com>
1749ce
- translations modified for de
1749ce
1749ce
* Wed Jun 10 1998 Michael Fulbright <msf@redhat.com>
1749ce
- rebuilt against fixed jpeg libs (libjpeg-6b)
1749ce
1749ce
* Thu May 07 1998 Prospector System <bugs@redhat.com>
1749ce
- translations modified for de, fr, tr
1749ce
1749ce
* Mon Oct 13 1997 Donnie Barnes <djb@redhat.com>
1749ce
- new version to replace the one from libgr
1749ce
- patched for glibc
1749ce
- added shlib support