Blame SPECS/netpbm.spec

294826
Summary:         A library for handling different graphics file formats
294826
Name:            netpbm
294826
Version:         10.95.00
294826
Release:         2%{?dist}
294826
# See copyright_summary for details
294826
License:         BSD and GPLv2 and IJG and MIT and Public Domain
294826
URL: http://netpbm.sourceforge.net/
294826
# Source0 is prepared by
294826
# svn checkout https://svn.code.sf.net/p/netpbm/code/advanced netpbm-%%{version}
294826
# svn checkout https://svn.code.sf.net/p/netpbm/code/userguide netpbm-%%{version}/userguide
294826
# svn checkout https://svn.code.sf.net/p/netpbm/code/trunk/test netpbm-%%{version}/test
294826
# and removing the .svn directories ( find -name "\.svn" -type d -print0 | xargs -0 rm -rf )
294826
Source0:         netpbm-%{version}.tar.xz
294826
Patch0:          netpbm-security-scripts.patch
294826
Patch1:          netpbm-security-code.patch
294826
Patch2:          netpbm-ppmfadeusage.patch
294826
Patch3:          netpbm-CVE-2017-2587.patch
294826
Patch4:          netpbm-python3.patch
294826
Patch5:          netpbm-time.patch
294826
Patch6:          netpbm-gcc4.patch
294826
Patch7:          netpbm-bmptopnm.patch
294826
Patch8:          netpbm-CAN-2005-2471.patch
294826
Patch9:          netpbm-xwdfix.patch
294826
Patch10:         netpbm-multilib.patch
294826
Patch11:         netpbm-glibc.patch
294826
Patch12:         netpbm-docfix.patch
294826
Patch13:         netpbm-cmuwtopbm.patch
294826
Patch14:         netpbm-pamtojpeg2k.patch
294826
Patch15:         netpbm-manfix.patch
294826
Patch16:         netpbm-jasper.patch
294826
Patch17:         netpbm-libdir-so.patch
294826
Patch18:         netpbm-test.patch
294826
294826
BuildRequires: make
294826
BuildRequires:   libjpeg-devel, libpng-devel, libtiff-devel, flex, gcc, jbigkit-devel
294826
BuildRequires:   libX11-devel, perl-generators, python3, jasper-devel, libxml2-devel
294826
BuildRequires:   perl(Config), perl(Cwd), perl(English), perl(Fcntl), perl(File::Basename)
294826
BuildRequires:   perl(strict)
294826
%if (0%{?fedora} && 0%{?fedora} < 28) || (0%{?rhel} || 0%{?rhel} <= 7)
294826
BuildRequires:   ghostscript-core
294826
%else
294826
BuildRequires:   ghostscript
294826
%endif
294826
294826
%description
294826
The netpbm package contains a library of functions which support
294826
programs for handling various graphics file formats, including .pbm
294826
(portable bitmaps), .pgm (portable graymaps), .pnm (portable anymaps),
294826
.ppm (portable pixmaps) and others.
294826
294826
%package devel
294826
Summary:         Development tools for programs which will use the netpbm libraries
294826
Requires:        netpbm = %{version}-%{release}
294826
294826
%description devel
294826
The netpbm-devel package contains the header files and static libraries,
294826
etc., for developing programs which can handle the various graphics file
294826
formats supported by the netpbm libraries.
294826
294826
Install netpbm-devel if you want to develop programs for handling the
294826
graphics file formats supported by the netpbm libraries.  You'll also need
294826
to have the netpbm package installed.
294826
294826
%package progs
294826
Summary:         Tools for manipulating graphics files in netpbm supported formats
294826
Requires:        ghostscript
294826
Requires:        netpbm = %{version}-%{release}
294826
294826
%description progs
294826
The netpbm-progs package contains a group of scripts for manipulating the
294826
graphics files in formats which are supported by the netpbm libraries.  For
294826
example, netpbm-progs includes the rasttopnm script, which will convert a
294826
Sun rasterfile into a portable anymap.  Netpbm-progs contains many other
294826
scripts for converting from one graphics file format to another.
294826
294826
If you need to use these conversion scripts, you should install
294826
netpbm-progs.  You'll also need to install the netpbm package.
294826
294826
%package doc
294826
Summary:         Documentation for tools manipulating graphics files in netpbm supported formats
294826
Requires:        netpbm-progs = %{version}-%{release}
294826
294826
%description doc
294826
The netpbm-doc package contains a documentation in HTML format for utilities
294826
present in netpbm-progs package.
294826
294826
If you need to look into the HTML documentation, you should install
294826
netpbm-doc.  You'll also need to install the netpbm-progs package.
294826
294826
%prep
294826
%autosetup -p1
294826
rm -rf converter/other/jpeg2000/libjasper/
294826
rm -rf converter/other/jbig/libjbig/
294826
294826
%build
294826
./configure <
294826
294826
294826
294826
294826
294826
294826
294826
294826
294826
294826
294826
294826
294826
294826
294826
294826
294826
294826
294826
EOF
294826
294826
TOP=`pwd`
294826
294826
make \
294826
	CC="%{__cc}" \
294826
	LDFLAGS="$RPM_LD_FLAGS -L$TOP/pbm -L$TOP/pgm -L$TOP/pnm -L$TOP/ppm" \
294826
	CFLAGS="$RPM_OPT_FLAGS -fPIC -flax-vector-conversions -fno-strict-aliasing" \
294826
	CFLAGS_CONFIG="$RPM_OPT_FLAGS" \
294826
	LADD="-lm -Wl,-z,now" \
294826
	JPEGINC_DIR=%{_includedir} \
294826
	PNGINC_DIR=%{_includedir} \
294826
	TIFFINC_DIR=%{_includedir} \
294826
	JPEGLIB_DIR=%{_libdir} \
294826
	JBIGLIB=%{_libdir}/libjbig.so.2.1 \
294826
	PNGLIB_DIR=%{_libdir} \
294826
	TIFFLIB_DIR=%{_libdir} \
294826
	LINUXSVGALIB="NONE" \
294826
	X11LIB=%{_libdir}/libX11.so \
294826
	XML2LIBS="NONE"
294826
294826
# prepare man files
294826
cd userguide
294826
# BZ 948531
294826
rm -f *.manual-pages
294826
rm -f *.manfix
294826
for i in *.html ; do
294826
  ../buildtools/makeman ${i}
294826
done
294826
for i in 1 3 5 ; do
294826
  mkdir -p man/man${i}
294826
  mv *.${i} man/man${i}
294826
done
294826
294826
294826
%install
294826
make package pkgdir=%{buildroot}/usr LINUXSVGALIB="NONE" XML2LIBS="NONE"
294826
294826
# Ugly hack to have libs in correct dir on 64bit archs.
294826
mkdir -p %{buildroot}%{_libdir}
294826
if [ "%{_libdir}" != "/usr/lib" ]; then
294826
  mv %{buildroot}/usr/lib/lib* %{buildroot}%{_libdir}
294826
fi
294826
294826
cp -af lib/libnetpbm.a %{buildroot}%{_libdir}/libnetpbm.a
294826
294826
mkdir -p %{buildroot}%{_datadir}
294826
mv userguide/man %{buildroot}%{_mandir}
294826
294826
# Get rid of the useless non-ascii character in pgmminkowski.1
294826
sed -i 's/\xa0//' %{buildroot}%{_mandir}/man1/pgmminkowski.1
294826
294826
# Don't ship man pages for non-existent binaries and bogus ones
294826
for i in hpcdtoppm \
294826
	 ppmsvgalib vidtoppm picttoppm \
294826
	 directory error extendedopacity \
294826
	 pam pbm pgm pnm ppm index libnetpbm_dir \
294826
	 liberror ppmtotga; do
294826
	rm -f %{buildroot}%{_mandir}/man1/${i}.1
294826
done
294826
rm -f %{buildroot}%{_mandir}/man5/extendedopacity.5
294826
294826
mkdir -p %{buildroot}%{_datadir}/netpbm
294826
mv %{buildroot}/usr/misc/*.map %{buildroot}%{_datadir}/netpbm/
294826
mv %{buildroot}/usr/misc/rgb.txt %{buildroot}%{_datadir}/netpbm/
294826
rm -rf %{buildroot}/usr/README
294826
rm -rf %{buildroot}/usr/VERSION
294826
rm -rf %{buildroot}/usr/link
294826
rm -rf %{buildroot}/usr/misc
294826
rm -rf %{buildroot}/usr/man
294826
rm -rf %{buildroot}/usr/pkginfo
294826
rm -rf %{buildroot}/usr/config_template
294826
rm -rf %{buildroot}/usr/pkgconfig_template
294826
294826
# Don't ship the static library
294826
rm -f %{buildroot}%{_libdir}/lib*.a
294826
294826
# remove/symlink/substitute obsolete utilities
294826
pushd %{buildroot}%{_bindir}
294826
rm -f pgmtopbm pnmcomp
294826
ln -s pamcomp pnmcomp
294826
echo -e '#!/bin/sh\npamditherbw $@ | pamtopnm\n' > pgmtopbm
294826
chmod 0755 pgmtopbm
294826
popd
294826
294826
%ldconfig_scriptlets
294826
294826
%check
294826
pushd test
294826
export LD_LIBRARY_PATH=%{buildroot}%{_libdir}
294826
export PBM_TESTPREFIX=%{buildroot}%{_bindir}
294826
export PBM_BINPREFIX=%{buildroot}%{_bindir}
294826
./Execute-Tests && exit 0
294826
popd
294826
294826
%files
294826
%doc doc/copyright_summary doc/COPYRIGHT.PATENT doc/HISTORY README
294826
%license doc/GPL_LICENSE.txt
294826
%{_libdir}/lib*.so.*
294826
294826
%files devel
294826
%dir %{_includedir}/netpbm
294826
%{_includedir}/netpbm/*.h
294826
%{_mandir}/man3/*
294826
%{_libdir}/lib*.so
294826
294826
%files progs
294826
%{_bindir}/*
294826
%{_mandir}/man1/*
294826
%{_mandir}/man5/*
294826
%{_datadir}/netpbm/
294826
294826
%files doc
294826
%doc userguide/*
294826
294826
%changelog
294826
* Tue Aug 17 2021 Josef Ridky <jridky@redhat.com> - 10.95.00-2
294826
- add gating.yaml file
294826
294826
* Mon Aug 16 2021 Josef Ridky <jridky@redhat.com> - 10.95.00-1
294826
- update to 10.95.00 and disable winicon checks (#1994047)
294826
294826
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 10.94.05-3
294826
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
294826
  Related: rhbz#1991688
294826
294826
* Thu Jun 03 2021 Josef Ridky <jridky@redhat.com> - 10.94.05-2
294826
- Fix library linking issue
294826
294826
* Thu Jun 03 2021 Josef Ridky <jridky@redhat.com> - 10.94.05-1
294826
- Rebase to the new upstream release 10.94.05 (#1967407)
294826
294826
* Mon Jan 25 2021 Josef Ridky <jridky@redhat.com> - 10.93.00-1
294826
- New upstream release 10.93.00 (#1911159)
294826
294826
* Wed Oct 07 2020 Josef Ridky <jridky@redhat.com> - 10.92.00-1
294826
- New upstream release 10.92.00 (#1851753)
294826
294826
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 10.90.00-2
294826
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
294826
294826
* Thu Mar 26 2020 Josef Ridky <jridky@redhat.com> - 10.90.00-1
294826
- New upstream release 10.90.00 (#1817279)
294826
294826
* Wed Mar 25 2020 Jitka Plesnikova <jplesnik@redhat.com> - 10.89.00-3
294826
- Add perl dependencies for build
294826
294826
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 10.89.00-2
294826
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
294826
294826
* Mon Jan 06 2020 Josef Ridky <jridky@redhat.com> - 10.89.00-1
294826
- New upstream release 10.89.00 (#1787801)
294826
294826
* Mon Dec 09 2019 Josef Ridky <jridky@redhat.com> - 10.88.00-1
294826
- New upstream release (#1756647)
294826
294826
* Wed Aug 21 2019 Josef Ridky <jridky@redhat.com> - 10.87.00-1
294826
- New upstream release (#1725280)
294826
294826
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 10.86.00-3
294826
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
294826
294826
* Wed Apr 17 2019 Josef Ridky <jridky@redhat.com> - 10.86.00-2
294826
- Enable MPEG and MPEG-2 support (#1700164)
294826
294826
* Mon Apr 01 2019 Josef Ridky <jridky@redhat.com> - 10.86.00-1
294826
- New upstream release (#1694351)
294826
294826
* Tue Feb 12 2019 Ralf Corsépius <corsepiu@fedoraproject.org> - 10.84.03-3
294826
- Package %%{_libdir}/*.so (RHBZ#1676370).
294826
294826
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 10.84.03-2
294826
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
294826
294826
* Fri Nov 23 2018 Josef Ridky <jridky@redhat.com> - 10.84.03-1
294826
- New upstream release (#1634256)
294826
294826
* Wed Nov 21 2018 Josef Ridky <jridky@redhat.com> - 10.83.01-2
294826
- Use system version of jasper and jbigkit library (#1651965)
294826
294826
* Mon Jul 23 2018 Josef Ridky <jridky@redhat.com> - 10.83.01-1
294826
- New upstream release 10.83.01 (#1596970)
294826
294826
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 10.82.00-4
294826
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
294826
294826
* Mon Jun 04 2018 Josef Ridky <jridky@redhat.com> - 10.82.00-3
294826
- Backport unimplemented fixes from 10.79.00 (#1585695)
294826
294826
* Wed Apr 11 2018 Rafael Santos <rdossant@redhat.com> - 10.82.00-2
294826
- Use standard Fedora build and linker flags (bug #1543858)
294826
294826
* Tue Mar 27 2018 Josef Ridky <jridky@redhat.com> - 10.82.00-1
294826
- New upstream release 10.82.00 (#1560330)
294826
294826
* Mon Feb 26 2018 Josef Ridky <jridky@redhat.com> - 10.81.00-4
294826
- spec clean up
294826
- build against Python3
294826
294826
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 10.81.00-3
294826
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
294826
294826
* Mon Jan 22 2018 Josef Ridky <jridky@redhat.com> - 10.81.00-2
294826
- change ghostscript requirement
294826
294826
* Wed Jan 03 2018 Josef Ridky <jridky@redhat.com> - 10.81.00-1
294826
- New upstream release 10.81.00 (#1529904)
294826
- update spec file
294826
294826
* Thu Oct 19 2017 Josef Ridky <jridky@redhat.com> - 10.80.00-2
294826
- Rebuilt for python package
294826
294826
* Mon Oct 02 2017 Josef Ridky <jridky@redhat.com> - 10.80.00-1
294826
- New upstream release 10.80.00 (#1496797)
294826
294826
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 10.79.00-3
294826
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
294826
294826
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 10.79.00-2
294826
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
294826
294826
* Mon Jul 03 2017 Josef Ridky <jridky@redhat.com> - 10.79.00-1
294826
- New upstream release 10.79.00 (#1466772)
294826
294826
* Wed Mar 29 2017 Josef Ridky <jridky@redhat.com> - 10.78.00-1
294826
- New upstream release 10.78.00
294826
294826
* Wed Feb 08 2017 Josef Ridky <jridky@redhat.com> - 10.77.00-3
294826
- fix CVE-2017-2586, CVE-2017-2587 (#1419545)
294826
- fix CVE-2017-5849 (#1419650)
294826
294826
* Mon Jan 23 2017 Josef Ridky <jridky@redhat.com> - 10.77.00-2
294826
- fix #1404757 - add copyright_summary to doc section
294826
294826
* Mon Jan 23 2017 Josef Ridky <jridky@redhat.com> - 10.77.00-1
294826
- New upstream release 10.77.00 (#1408611)
294826
294826
* Mon Dec  5 2016 Josef Ridky <jridky@redhat.com> - 10.76.00-2
294826
- set Provides: bundled for jasper and jbigkit library (#1395716)
294826
294826
* Thu Nov 10 2016 Josef Ridky <jridky@redhat.com> - 10.76.00-1
294826
- Update to the latest upstream release 10.76.00 (#1393713)
294826
294826
* Thu Jul 28 2016 Josef Ridky <jridky@redhat.com> - 10.75.99-1
294826
- Update to the latest upstream release 10.75.99 (#1361103)
294826
294826
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 10.71.02-2
294826
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
294826
294826
* Mon Aug 10 2015 Petr Hracek <phracek@redhat.com> - 10.71.02-1
294826
- Update to the latest upstream release (#1252352)
294826
294826
* Thu Aug 06 2015 Petr Hracek <phracek@redhat.com> - 10.66.02-7
294826
- remove doc/copyright_summary (#1219743)
294826
294826
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 10.66.02-6
294826
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
294826
294826
* Tue Jan 20 2015 Petr Hracek <phracek@redhat.com> - 10.66.02-5
294826
- Moving libnetpbm.so from netpbm-devel to netpbm (#1180811)
294826
294826
* Tue Jan 20 2015 Petr Hracek <phracek@redhat.com> - 10.66.02-4
294826
- Add missing pnmtops to netpbm-progs (#1171903)
294826
294826
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 10.66.02-3
294826
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
294826
294826
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 10.66.02-2
294826
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
294826
294826
* Tue May 13 2014 Petr Hracek <phracek@redhat.com> - 10.66.02-1
294826
- Update new sources (#1063264)
294826
294826
* Mon Apr 14 2014 Jaromir Capik <jcapik@redhat.com> - 10.61.02-9
294826
- Fixing format-security flaws (#1037217)
294826
294826
* Wed Nov 13 2013 Petr Hracek <phracek@redhat.com> - 10.61.02-8
294826
- pnmtops hangs in case of more then 10 files (#1029512)
294826
294826
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 10.61.02-7
294826
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
294826
294826
* Wed Jul 17 2013 Petr Pisar <ppisar@redhat.com> - 10.61.02-6
294826
- Perl 5.18 rebuild
294826
294826
* Mon Jun 17 2013 Petr Hracek <phracek@redhat.com> - 10.61.02-5
294826
- Manual page corrections (#948531)
294826
294826
* Wed Jun 05 2013 Petr Hracek <phracek@redhat.com> - 10.61.02-4
294826
- pnmpsnr: compare the same images failed (#969479)
294826
294826
* Tue May 28 2013 Petr Hracek <phracek@redhat.com> - 10.61.02-3
294826
- pnmtops: Multi-page PAM files correction (#833546)
294826
294826
* Mon May 27 2013 Petr Hracek <phracek@redhat.com> 10.61.02-2
294826
- Man page corrections (#948531)
294826
294826
* Wed Feb 20 2013 Jindrich Novy <jnovy@redhat.com> 10.61.02-1
294826
- update to 10.61.02
294826
294826
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 10.61.01-3
294826
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
294826
294826
* Mon Jan 21 2013 Adam Tkac <atkac redhat com> - 10.61.01-2
294826
- rebuild due to "jpeg8-ABI" feature drop
294826
294826
* Thu Jan 03 2013 Jindrich Novy <jnovy@redhat.com> 10.61.01-1
294826
- update to 10.61.01
294826
- sync patches
294826
294826
* Fri Dec 14 2012 Jindrich Novy <jnovy@redhat.com> 10.60.05-1
294826
- update to 10.60.05
294826
- fixes pngtopam and ppmpat
294826
294826
* Wed Dec 05 2012 Jindrich Novy <jnovy@redhat.com> 10.60.04-1
294826
- update to 10.60.04
294826
- fixes pamtotiff, pnmmontage, pnmpsnr, pbmpscale, pgmhist,
294826
  pampick, pamtompfont
294826
- fix dates in changelog
294826
294826
* Tue Nov 27 2012 Jindrich Novy <jnovy@redhat.com> 10.60.03-2
294826
- add upstream test suite
294826
294826
* Wed Nov 21 2012 Jindrich Novy <jnovy@redhat.com> 10.60.03-1
294826
- update to 10.60.3
294826
- fixes xbmptopbm, pamtojpeg2k
294826
294826
* Mon Oct 08 2012 Jindrich Novy <jnovy@redhat.com> 10.60.01-1
294826
- update to 10.60.01
294826
- fixes pamgauss, sunicontopnm
294826
294826
* Tue Oct 02 2012 Jindrich Novy <jnovy@redhat.com> 10.60.00-1
294826
- update to 10.60.00
294826
- speeds up xpmtoppm
294826
294826
* Tue Sep 25 2012 Jindrich Novy <jnovy@redhat.com> 10.59.03-1
294826
- update to 10.59.03
294826
- fixes xpmtoppm
294826
294826
* Fri Jul 20 2012 Jindrich Novy <jnovy@redhat.com> 10.59.02-1
294826
- update to 10.59.02
294826
- fixes getline() glibc function conflict
294826
294826
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 10.59.01-2
294826
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
294826
294826
* Wed Jul 11 2012 Jindrich Novy <jnovy@redhat.com> 10.59.01-1
294826
- update to 10.59.01
294826
294826
* Fri Jun 22 2012 Jindrich Novy <jnovy@redhat.com> 10.58.03-1
294826
- update to 10.58.03
294826
- pnmtops is back
294826
294826
* Wed Jun 13 2012 Jindrich Novy <jnovy@redhat.com> 10.58.01-3
294826
- fix ppmtopict buffer underflow
294826
- fix memory corruption in pnmtopclxl
294826
294826
* Sun May 06 2012 Jindrich Novy <jnovy@redhat.com> 10.58.01-2
294826
- rebuild against new libtiff
294826
294826
* Mon Apr 09 2012 Jindrich Novy <jnovy@redhat.com> 10.58.01-1
294826
- update to 10.58.01
294826
294826
* Mon Mar 12 2012 Jindrich Novy <jnovy@redhat.com> 10.57.04-1
294826
- update to 10.57.04
294826
- fixes ppmquantall
294826
294826
* Fri Mar 02 2012 Jindrich Novy <jnovy@redhat.com> 10.57.03-1
294826
- update to 10.57.03
294826
294826
* Mon Feb 13 2012 Jindrich Novy <jnovy@redhat.com> 10.57.02-1
294826
- update to 10.57.02
294826
294826
* Tue Jan 17 2012 Jindrich Novy <jnovy@redhat.com> 10.57.01-1
294826
- update to 10.57.01
294826
294826
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 10.56.05-2
294826
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
294826
294826
* Mon Dec 12 2011 Jindrich Novy <jnovy@redhat.com> 10.56.05-1
294826
- update to 10.56.05
294826
- fixes pamscale
294826
294826
* Fri Nov 25 2011 Jindrich Novy <jnovy@redhat.com> 10.56.04-1
294826
- update to 10.56.04
294826
- fixes pngtopam
294826
- use more robust way to create library symlinks
294826
294826
* Wed Nov 16 2011 Jindrich Novy <jnovy@redhat.com> 10.56.03-2
294826
- fix library symlink to point to the new soname
294826
294826
* Fri Nov 11 2011 Jindrich Novy <jnovy@redhat.com> 10.56.03-1
294826
- update to 10.56.03
294826
- fixes compilation against new libpng
294826
294826
* Tue Sep 27 2011 Jindrich Novy <jnovy@redhat.com> 10.47.31-1
294826
- update to 10.47.31
294826
- fixes bmptopnm
294826
294826
* Wed Aug 24 2011 Jindrich Novy <jnovy@redhat.com> 10.47.30-1
294826
- update to 10.47.30
294826
- fixes opacity in pnmtopng
294826
- fixes pnmquant perl compatibility
294826
294826
* Tue Jul 26 2011 Jindrich Novy <jnovy@redhat.com> 10.47.29-1
294826
- update to 10.47.29
294826
294826
* Tue Jun 28 2011 Jindrich Novy <jnovy@redhat.com> 10.47.28-1
294826
- update to 10.47.28
294826
294826
* Mon Mar 28 2011 Jindrich Novy <jnovy@redhat.com> 10.47.27-1
294826
- update to 10.47.27
294826
- fixes error message in g3topbm + documentation fixes
294826
294826
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 10.47.26-2
294826
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
294826
294826
* Mon Feb  7 2011 Jindrich Novy <jnovy@redhat.com> 10.47.26-1
294826
- update to 10.47.26
294826
- drop upstreamed asciitopgm patch
294826
294826
* Mon Jan 17 2011 Jindrich Novy <jnovy@redhat.com> 10.47.25-1
294826
- update to 10.47.25
294826
- fix asciitopgm (#670082), thanks to Jonathan Kamens
294826
294826
* Sat Jan  1 2011 Jindrich Novy <jnovy@redhat.com> 10.47.24-1
294826
- update to 10.47.24
294826
294826
* Tue Dec 14 2010 Jindrich Novy <jnovy@redhat.com> 10.47.23-1
294826
- update to 10.47.23
294826
294826
* Tue Oct 19 2010 Jindrich Novy <jnovy@redhat.com> 10.47.21-2
294826
- fix HTML pages from which man pages are now generated correctly (#644248)
294826
294826
* Mon Oct 18 2010 Jindrich Novy <jnovy@redhat.com> 10.47.21-1
294826
- update to 10.47.21
294826
294826
* Fri Oct  1 2010 Jindrich Novy <jnovy@redhat.com> 10.47.20-1
294826
- update to 10.47.20
294826
294826
* Mon Aug 30 2010 Jindrich Novy <jnovy@redhat.com> 10.47.19-1
294826
- update to 10.47.19
294826
294826
* Sat Aug 14 2010 Jindrich Novy <jnovy@redhat.com> 10.47.18-1
294826
- update to 10.47.18
294826
294826
* Mon Jul 12 2010 Jindrich Novy <jnovy@redhat.com> 10.47.17-1
294826
- update to 10.47.17
294826
294826
* Fri Jun 18 2010 Jindrich Novy <jnovy@redhat.com> 10.47.16-1
294826
- update to 10.47.16
294826
- fixes pbmtext
294826
294826
* Mon Jun  7 2010 Jindrich Novy <jnovy@redhat.com> 10.47.15-1
294826
- update to 10.47.15
294826
294826
* Tue Jun  1 2010 Jindrich Novy <jnovy@redhat.com> 10.47.14-2
294826
- add -fno-strict-aliasing to CFLAGS
294826
294826
* Fri May 21 2010 Jindrich Novy <jnovy@redhat.com> 10.47.14-1
294826
- update to 10.47.14
294826
- fixes memory leak in pamarith
294826
294826
* Tue May  4 2010 Jindrich Novy <jnovy@redhat.com> 10.47.13-1
294826
- update to 10.47.13
294826
- fixes pnmtops
294826
294826
* Mon May  3 2010 Jindrich Novy <jnovy@redhat.com> 10.47.12-3
294826
- fix cmuwtopbm so that magic bytes test actually works
294826
- fix pamtojpeg2k (don't close stdout twice)
294826
- fix documentation for pamperspective and pbmtoepson
294826
294826
* Wed Apr 28 2010 Jindrich Novy <jnovy@redhat.com> 10.47.12-2
294826
- fix CVE-2007-2721 (#501451)
294826
- add missing man pages
294826
294826
* Tue Apr 27 2010 Tom "spot" Callaway <tcallawa@redhat.com> 10.47.12-1
294826
- update to 10.47.12
294826
- remove ppmtompeg, due to legal issues
294826
294826
* Thu Mar 18 2010 Jindrich Novy <jnovy@redhat.com> 10.47.10-3
294826
- package docs in separate netpbm-doc package (#492437)
294826
- don't package patch backups in documentation
294826
- netpbm-progs package requires ghostscript
294826
294826
* Wed Mar 17 2010 Jindrich Novy <jnovy@redhat.com> 10.47.10-2
294826
- pgmtopbm should generate PBM, not PAM file
294826
- forwardport pnmmontage from 10.35 to make it work
294826
- fix pamstretch-gen
294826
294826
* Wed Feb 24 2010 Jindrich Novy <jnovy@redhat.com> 10.47.10-1
294826
- update to 10.47.10
294826
- fixes crash in pnmhistmap
294826
294826
* Wed Feb 17 2010 Jindrich Novy <jnovy@redhat.com> 10.47.09-3
294826
- remove obsolete pgmtopbm and pnmcomp, symlink them to the new
294826
  compatible variants
294826
- fix ppmfade -h, --help options
294826
- add missing man pages
294826
- link against -lz (#564649)
294826
294826
* Wed Jan 27 2010 Jindrich Novy <jnovy@redhat.com> 10.47.09-2
294826
- fix buffer overflow in pnmtofiasco
294826
294826
* Mon Jan 25 2010 Jindrich Novy <jnovy@redhat.com> 10.47.09-1
294826
- update to 10.47.09, fixes occassional crash in pamtosvg
294826
- fix documentation
294826
- fix ppmfade exit status
294826
294826
* Wed Jan 13 2010 Jindrich Novy <jnovy@redhat.com> 10.47.08-1
294826
- update to 10.47.08
294826
294826
* Wed Dec 30 2009 Jindrich Novy <jnovy@redhat.com> 10.47.07-1
294826
- update to 10.47.07
294826
294826
* Mon Dec 14 2009 Jindrich Novy <jnovy@redhat.com> 10.47.06-1
294826
- update to 10.47.06 - fixes the dumb pamtosvg mistake in 10.47.05
294826
- pnmmargin won't create leftovers in /tmp (#547888)
294826
294826
* Thu Dec 10 2009 Jindrich Novy <jnovy@redhat.com> 10.47.05-1
294826
- update to 10.47.05
294826
- fixes pnmtofiasco, fiascotopnm, pamtosvg, pamtouil and ppmrainbow
294826
- upstream fix to pamtosvg caused netpbm not to be rebuildable on
294826
  any arch because of missing semicolon, the fix is now fixed :-/
294826
294826
* Mon Dec  7 2009 Jindrich Novy <jnovy@redhat.com> 10.47.04-3
294826
- fix segfault in pnmsmooth (#545089)
294826
294826
* Fri Nov 27 2009 Jindrich Novy <jnovy@redhat.com> 10.47.04-2
294826
- fix ppmpat segfault when using -camo option (#541568)
294826
294826
* Wed Oct 21 2009 Jindrich Novy <jnovy@redhat.com> 10.47.04-1
294826
- update to 10.47.04 (it is now stable) (#529525)
294826
294826
* Fri Oct  9 2009 Jindrich Novy <jnovy@redhat.com> 10.35.68-1
294826
- update to 10.35.68
294826
294826
* Fri Sep  4 2009 Jindrich Novy <jnovy@redhat.com> 10.35.67-1
294826
- update to 10.35.67
294826
- fix configuration
294826
294826
* Wed Jul 29 2009 Jindrich Novy <jnovy@redhat.com> 10.35.66-1
294826
- update to 10.35.66
294826
- sync svgatopam patch
294826
294826
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 10.35.65-2
294826
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
294826
294826
* Sat Jun 27 2009 Jindrich Novy <jnovy@redhat.com> 10.35.65-1
294826
- update to 10.35.65
294826
294826
* Sun May 17 2009 Jindrich Novy <jnovy@redhat.com> 10.35.64-1
294826
- update to 10.35.64
294826
- fixes pnmremap, giftopnm, ppmpat, ppmdraw
294826
294826
* Tue Apr 28 2009 Jindrich Novy <jnovy@redhat.com> 10.35.63-1
294826
- update to 10.35.63
294826
- basically new release with some of our patches applied upstream
294826
294826
* Tue Apr 14 2009 Jindrich Novy <jnovy@redhat.com> 10.35.62-1
294826
- update to 10.35.62
294826
- upstream fixes pamstereogram
294826
- fix options in pamperspective, pbmtoepson, ppmpat, pamaddnoise
294826
  so that they match their man pages (#483011, #483070, #483243, #483245)
294826
- avoid clashes with getline() from glibc
294826
294826
* Tue Mar 31 2009 Jindrich Novy <jnovy@redhat.com> 10.35.61-2
294826
- remove two hunks from security patch breaking pbmclean and pbmlife (#493015)
294826
- fix ppmdfont and svgtopnm, thanks to Jiri Moskovcak
294826
294826
* Mon Mar 23 2009 Jindrich Novy <jnovy@redhat.com> 10.35.61-1
294826
- update to 10.35.61
294826
- upstream fixes array bound violation in pbmtog3
294826
- drop .pbmtog3segfault patch, we fixed this some time ago already
294826
  and it is in upstream now
294826
- use saner exit status in ppmfade
294826
294826
* Thu Feb 26 2009 Jindrich Novy <jnovy@redhat.com> 10.35.60-3
294826
- fix broken perl syntax in ppmfade
294826
- fix exit status and error reporting in ppmrainbow
294826
294826
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 10.35.60-2
294826
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
294826
294826
* Mon Feb 16 2009 Jindrich Novy <jnovy@redhat.com> 10.35.60-1
294826
- update to 10.35.60
294826
- update .security patch, minor cleanup
294826
- fixes xwdtopnm for at least some direct color 24/32 images
294826
- fixes memory leak and out of memory crash in libpammap
294826
294826
* Thu Jan 29 2009 Jindrich Novy <jnovy@redhat.com> 10.35.59-1
294826
- update to 10.35.59
294826
- fixes array bound violation in ilbmtoppm
294826
- fixes garbage output when input in fitstopnm is little endian
294826
  floating point FITS
294826
294826
* Wed Jan 28 2009 Jindrich Novy <jnovy@redhat.com> 10.35.58-4
294826
- fix segfault in ximtoppm (#482891), the utility lacked the
294826
  command line parsing initialization code
294826
294826
* Thu Jan 22 2009 Jindrich Novy <jnovy@redhat.com> 10.35.58-3
294826
- fix cmuwmtopbm and other utilities by making endianess
294826
  functions work correctly on 64bit systems (#476863)
294826
294826
* Wed Jan 21 2009 Jindrich Novy <jnovy@redhat.com> 10.35.58-2
294826
- fix pnmtofiasco to accept image from stdin (#476989, #227283)
294826
294826
* Mon Jan 19 2009 Jindrich Novy <jnovy@redhat.com> 10.35.58-1
294826
- update to 10.35.38
294826
- fixes crashes in picttoppm, pbmtomrf, mrftopbm
294826
- fixes bugs in leaftoppm, ilbmtoppm
294826
294826
* Tue Dec 23 2008 Jindrich Novy <jnovy@redhat.com> 10.35.57-3
294826
- unbreak ppmshadow and ppmrainbow (#476989)
294826
- pnmmontage won't crash because of uninitialized memory usage
294826
294826
* Fri Dec 19 2008 Jindrich Novy <jnovy@redhat.com> 10.35.57-2
294826
- fix segfault in pamtosvg caused by not reverting "sentinel value" (#476989)
294826
294826
* Mon Dec 15 2008 Jindrich Novy <jnovy@redhat.com> 10.35.57-1
294826
- update to 10.35.57
294826
294826
* Thu Nov  6 2008 Jindrich Novy <jnovy@redhat.com> 10.35.55-1
294826
- update to 10.35.55
294826
294826
* Mon Oct 27 2008 Jindrich Novy <jnovy@rehdat.com> 10.35.54-1
294826
- update to 10.35.54
294826
- adds better randomization for ppmforge, pgmnoise, pgmcrater
294826
- fixes array bounds violation in pnm_createBlackTuple() with PBM, PGM
294826
- fixes crash in pnmtoddif with any PGM input
294826
294826
* Tue Oct 14 2008 Jindrich Novy <jnovy@redhat.com> 10.35.53-1
294826
- update to 10.35.53
294826
- fixes pamditherbw (-value parameter other than .5 with -fs)
294826
294826
* Sat Sep 27 2008 Jindrich Novy <jnovy@redhat.com> 10.35.52-1
294826
- update to 10.35.52
294826
- fixes crash of libppmd/ppmdraw when line is completely out of frame
294826
294826
* Thu Sep 18 2008 Jindrich Novy <jnovy@redhat.com> 10.35.51-1
294826
- update to netpbm-10.35.51
294826
- make it actually compilable by removing duplicated function
294826
  in pamcomp.c
294826
294826
* Wed Aug 27 2008 Jindrich Novy <jnovy@redhat.com> 10.35.49-2
294826
- link against system jasper instead of embedded one (#460300)
294826
294826
* Thu Aug 14 2008 Jindrich Novy <jnovy@rehdat.com> 10.35.49-1
294826
- update to 10.35.49
294826
- fixes crash in pamcut when cutting a region entirely to the
294826
  left or right of the input image, with -pad
294826
294826
* Mon Aug 11 2008 Tom "spot" Callaway <tcallawa@redhat.com> 10.35.48-2
294826
- fix license tag
294826
294826
* Mon Aug  4 2008 Jindrich Novy <jnovy@redhat.com> 10.35.48-1
294826
- update to 10.35.48
294826
- fixes buffer overrun in pamperspective and pngtopnm output format
294826
- update .security2 patch so that it applies with fuzz==0
294826
294826
* Tue Jun 24 2008 Jindrich Novy <jnovy@rehdat.com> 10.35.46-1
294826
- update to 10.35.46
294826
- fixes pbmtext, pamtotga, pamtouil and pnmtopclxl
294826
294826
* Mon Jun  9 2008 Jindrich Novy <jnovy@redhat.com> 10.35.45-1
294826
- update to 10.35.45
294826
- fixes anytopnm, pamtohtmltbl, xvminitoppm, pbmtogo, tgatoppm
294826
294826
* Mon May 26 2008 Jindrich Novy <jnovy@redhat.com> 10.35.44-1
294826
- update to 10.35.44
294826
- fixes pamscale PBM input with -nomix, pamtilt crash
294826
294826
* Mon May 12 2008 Jindrich Novy <jnovy@redhat.com> 10.35.43-1
294826
- update to 10.35.43
294826
- fixes pbmtext and documentation of pamthreshold
294826
294826
* Mon Apr 14 2008 Jindrich Novy <jnovy@redhat.com> 10.35.42-1
294826
- update to 10.35.42
294826
- fixes pnmnorm, resolution of conflicting -wpercent and -wvalue
294826
294826
* Mon Mar 31 2008 Jindrich Novy <jnovy@redhat.com> 10.35.41-1
294826
- update to 10.35.41 (fixes pnmnorm and gcc-4.3 build)
294826
294826
* Fri Mar 14 2008 Jindrich Novy <jnovy@redhat.com> 10.35.40-2
294826
- package rgb.txt for pnmtopng (#313301)
294826
- drop useless xorg-x11-server-utils BR
294826
294826
* Sun Mar  9 2008 Jindrich Novy <jnovy@redhat.com> 10.35.40-1
294826
- update to 10.35.40 (fixes pgmdeshadow, pgmmedian, pgmbentley and pamtosvg)
294826
294826
* Mon Feb 25 2008 Jindrich Novy <jnovy@redhat.com> 10.35.39-1
294826
- update to 10.35.39 (fixes crash in pamtosvg)
294826
294826
* Thu Feb 14 2008 Jindrich Novy <jnovy@redhat.com> 10.35.38-1
294826
- update to 10.35.38 (fixes to pbmtext and ppmtoarbtxt)
294826
- fix to let it built with gcc 4.3
294826
294826
* Thu Jan 17 2008 Jindrich Novy <jnovy@redhat.com> 10.35.37-1
294826
- update to 10.35.37
294826
294826
* Mon Dec 31 2007 Jindrich Novy <jnovy@redhat.com> 10.35.36-1
294826
- update to 10.35.36
294826
294826
* Thu Dec 13 2007 Jindrich Novy <jnovy@redhat.com> 10.35.35-1
294826
- update to 10.35.35
294826
294826
* Mon Nov 26 2007 Jindrich Novy <jnovy@redhat.com> 10.35.34-1
294826
- update to 10.35.34
294826
- sync security patch and fix typos
294826
294826
* Wed Nov 14 2007 Jindrich Novy <jnovy@redhat.com> 10.35.33-1
294826
- update to 10.35.33
294826
294826
* Fri Nov  2 2007 Jindrich Novy <jnovy@redhat.com> 10.35.32-2
294826
- remove man pages that lacks corresponding binaries (#220739)
294826
294826
* Thu Oct 18 2007 Jindrich Novy <jnovy@redhat.com> 10.35.32-1
294826
- remove .svn directories from tarball to reduce its size
294826
- update fixes rhbz#337181 and likely others
294826
294826
* Thu Oct 18 2007 MATSUURA Takanori <t.matsuu at gmail.com> 10.35.32-0
294826
- update to 10.35.32 from svn tree
294826
- create man pages from userguide HTML files
294826
294826
* Thu Oct 11 2007 Jindrich Novy <jnovy@redhat.com> 10.35-17
294826
- add xorg-x11-server-utils BR (#313301)
294826
294826
* Thu Aug 23 2007 Jindrich Novy <jnovy@redhat.com> 10.35-16
294826
- rebuild for ppc32
294826
- fix open() calls so that netpbm builds with new glibc
294826
294826
* Mon Aug 20 2007 Jindrich Novy <jnovy@redhat.com> 10.35-15
294826
- fix .ppmquantall patch (#207799)
294826
- merge cmapsize with bmptopnm patch (#224554)
294826
294826
* Mon Jul 16 2007 Jindrich Novy <jnovy@redhat.com> 10.35-14
294826
- /usr/share/netpbm is no more unowned (#248300)
294826
294826
* Wed Jun 20 2007 Jindrich Novy <jnovy@redhat.com> 10.35-13
294826
- package map files needed by pnmtopalm (#244983)
294826
294826
* Thu Mar 29 2007 Jindrich Novy <jnovy@redhat.com> 10.35-12
294826
- merge review fixes (#226191), thanks to Jason Tibbitts
294826
294826
* Fri Feb  2 2007 Jindrich Novy <jnovy@redhat.com> 10.35-11
294826
- fix pbmtomacp buffer overflow (#226969)
294826
294826
* Mon Jan 29 2007 Jindrich Novy <jnovy@redhat.com> 10.35-10
294826
- bmptopnm won't crash with "BMPlencolormap: internal error!" (#224554)
294826
294826
* Thu Dec 28 2006 Jindrich Novy <jnovy@redhat.com> 10.35-9
294826
- pbmtog3 won't segfault on 64bit arches (#220739)
294826
294826
* Tue Dec 19 2006 Jindrich Novy <jnovy@redhat.com> 10.35-8
294826
- remove bogus man pages (#220112, #220113)
294826
- overflow2() no more conflicts with libgd.so (#216116)
294826
- fix BuildRoot
294826
294826
* Thu Oct 12 2006 Jindrich Novy <jnovy@redhat.com> 10.35-7
294826
- remove  note about OSL 1 licensing from COPYRIGHT.PATENT file
294826
294826
* Mon Oct  2 2006 Jesse Keating <jkeating@redhat.com> 10.35-6
294826
- rebuild for new libpng, again.
294826
294826
* Mon Oct  2 2006 Jesse Keating <jkeating@redhat.com> 10.35-5
294826
- rebuild for new libpng
294826
294826
* Mon Oct  2 2006 Jindrich Novy <jnovy@redhat.com> 10.35-4
294826
- rebuild (#208866)
294826
294826
* Fri Sep 29 2006 Jindrich Novy <jnovy@redhat.com> 10.35-3
294826
- remove OSL 1.1 from security patch (#208587)
294826
294826
* Sun Sep 24 2006 Jindrich Novy <jnovy@redhat.com> 10.35-2
294826
- fix ppmquantall (#207799), thanks to Steve Grubb
294826
294826
* Mon Sep 18 2006 Jindrich Novy <jnovy@redhat.com> 10.35-1
294826
- update to 10.35
294826
- drop .pnmtopng, .rgbtxt patches, fixed upstream
294826
- sync .xwidfix, .ppmtompeg patches
294826
- regenerate man pages
294826
294826
* Thu Sep 14 2006 Jindrich Novy <jnovy@redhat.com> 10.34-8
294826
- readd pbmtols, author claims it's LGPL (#202519)
294826
- add .l1 suffixes to tarball names to reflect legal fixes
294826
  in the upstream release with the same NVR
294826
294826
* Wed Sep 13 2006 Jindrich Novy <jnovy@redhat.com> 10.34-7
294826
- rebuild
294826
294826
* Thu Sep  7 2006 Jindrich Novy <jnovy@redhat.com> 10.34-6.fc6
294826
- regenerate man pages so that makewhatis isn't confused (#204991)
294826
  (upstream makeman script was broken -> now fixed)
294826
294826
* Mon Sep  4 2006 Jindrich Novy <jnovy@redhat.com> 10.34-5.fc6
294826
- readd spottopgm, author claims it's GPL (#202519)
294826
294826
* Tue Aug 15 2006 Jindrich Novy <jnovy@redhat.com> 10.34-4.fc6
294826
- legal fixes (#202519):
294826
- remove pbmtols, spottopgm, jbig and hpcd stuff from source
294826
  and doc tarballs
294826
294826
* Sat Aug 12 2006 Jindrich Novy <jnovy@redhat.com> 10.34-3.fc6
294826
- pamscale won't waste all system resources by usage of uninitialized
294826
  variables for output image resolution (#199871)
294826
- use %%{?dist}
294826
294826
* Wed Jul 19 2006 Jindrich Novy <jnovy@redhat.com> 10.34-2
294826
- fix double free corruption in ppmtompeg (#199409),
294826
  thanks to Milan Zazrivec
294826
294826
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 10.34-1.1
294826
- rebuild
294826
294826
* Thu Jun 22 2006 Jindrich Novy <jnovy@redhat.com> 10.34-1
294826
- update to 10.34
294826
- drop .ppmtogif, .nstring patches
294826
- remove some overflow checks from .security patch, it's
294826
  now resolved in the new upstream version
294826
- don't use svgalib by default (don't compile/ship ppmsvgalib)
294826
- don't compile svgtopam because of the libxml dependency
294826
- add BuildRequires libX11-devel
294826
- fix build on x86_64 and ppc64
294826
294826
* Mon Jun  5 2006 Jindrich Novy <jnovy@redhat.com> 10.33-3
294826
- fix multilib conflict (#192735)
294826
- remove jbigtopnm man page
294826
294826
* Fri Apr 14 2006 Jindrich Novy <jnovy@redhat.com> 10.33-2
294826
- fix image corruption in ppmtogif, thanks to Gilles Detillieux (#188597)
294826
- fix nsting.h to let pnmtopng and other utilities using seekable opening
294826
  mode work on x86_64 (#188594)
294826
294826
* Wed Apr  5 2006 Jindrich Novy <jnovy@redhat.com> 10.33-1
294826
- update to 10.33
294826
- drop upstreamed .ppmdepth patch
294826
- fix segfault in ppmtompeg when encoding jpeg images (#185970)
294826
294826
* Mon Apr  3 2006 Jindrich Novy <jnovy@redhat.com> 10.32-2
294826
- fix broken symlink in upstream: pnmsdepth -> pamdepth (#187667)
294826
294826
* Tue Feb 28 2006 Jindrich Novy <jnovy@redhat.com> 10.32-1
294826
- update to 10.32
294826
- drop .msbmp patch, applied upstream
294826
- sync the rest of the patches
294826
- regenerate man pages
294826
294826
* Mon Feb 20 2006 Jindrich Novy <jnovy@redhat.com> 10.31-5
294826
- add missing flex BuildRequires
294826
- fix anytopnm to recognize ms-bmp files (#182060)
294826
294826
* Tue Feb 14 2006 Jindrich Novy <jnovy@redhat.com> 10.31-4
294826
- make xwdtopnm work on x86_64 (#181001)
294826
294826
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 10.31-3.1
294826
- bump again for double-long bug on ppc(64)
294826
294826
* Fri Feb 10 2006 Jindrich Novy <jnovy@redhat.com> 10.31-3
294826
- fix segfault caused by usage of uninitialized variables while
294826
  parsing cmdline arguments in pnmtopng (#179645)
294826
- add validity check for date/time in pnmtopng
294826
- fix unchecked sscanf reads
294826
294826
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 10.31-2.1
294826
- rebuilt for new gcc4.1 snapshot and glibc changes
294826
294826
* Wed Jan 18 2006 Jindrich Novy <jnovy@redhat.com> 10.31-2
294826
- rebuild to have greater version than in FC4 (#177698)
294826
294826
* Fri Dec 30 2005 Jindrich Novy <jnovy@redhat.com> 10.31-1
294826
- update to 10.31
294826
- update security patch
294826
- regenerate man pages
294826
294826
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
294826
- rebuilt
294826
294826
* Tue Nov 29 2005 Jindrich Novy <jnovy@redhat.com> 10.30-2
294826
- fix path to rgb.txt to fit modular X (#174128)
294826
294826
* Fri Oct 21 2005 Jindrich Novy <jnovy@redhat.com> 10.30-1
294826
- update to 10.30
294826
- update manpath, gcc4 patches
294826
- update security patch - fixed length problem in rle_addhist
294826
- update partly upstreamed bmptopnm, pnmtopng patches
294826
- drop manpath patch
294826
- regenerate man pages
294826
294826
* Thu Oct 06 2005 Jindrich Novy <jnovy@redhat.com> 10.29-2
294826
- fix segfault in pnmtopng caused by referencing a NULL pointer (#169532)
294826
294826
* Tue Aug 16 2005 Jindrich Novy <jnovy@redhat.com> 10.29-1
294826
- update to 10.29
294826
- drop upstreamed .libpm, .pnmtojpeg, .pbmtolj patches
294826
- update .CAN-2005-2471 patch
294826
294826
* Mon Aug 15 2005 Jindrich Novy <jnovy@redhat.com> 10.28-6
294826
- link libnetpbm.so against -lm (#165980)
294826
294826
* Tue Aug 09 2005 Jindrich Novy <jnovy@redhat.com> 10.28-5
294826
- fix CAN-2005-2471, unsafe gs calls from pstopnm (#165355)
294826
294826
* Thu Jul 21 2005 Jindrich Novy <jnovy@redhat.com> 10.28-4
294826
- fix buffer overflow in pbmtolj (#163596)
294826
294826
* Mon Jun 27 2005 Jindrich Novy <jnovy@redhat.com> 10.28-3
294826
- create symlink pnmtopnm -> pamtopnm, this works now in
294826
  netpbm-10.28 (#161436)
294826
294826
* Tue Jun 21 2005 Jindrich Novy <jnovy@redhat.com> 10.28-2
294826
- fix segfault in pbmtolj caused by unchecked assertions
294826
  caused by definition of NDEBUG (#160429)
294826
- drop hunk from .security patch causing dual inclusion
294826
  of string.h in pbmtolj.c
294826
294826
* Fri Jun 10 2005 Jindrich Novy <jnovy@redhat.com> 10.28-1
294826
- update to 10.28
294826
- regenerated man pages
294826
- sync .security, .security2, .badlink, .libpm, .gcc4 patches
294826
- drop upstreamed .pngtopnm, .pnmcolormap patches
294826
294826
* Tue May 31 2005 Jindrich Novy <jnovy@redhat.com> 10.27-4
294826
- fix segfault in pnmcolormap what makes latex2html/ppmquant
294826
  unusable (#158665, #139111)
294826
294826
* Mon May 16 2005 Jindrich Novy <jnovy@redhat.com> 10.27-3
294826
- fix ppmdither leak caused by bug in security patch (#157757)
294826
- drop gcc34 patch
294826
294826
* Mon May 09 2005 Jindrich Novy <jnovy@redhat.com> 10.27-2
294826
- fix invalid strcmp condition in bmptopnm, typo in pnmtojpeg
294826
  (David Constanzo, #157106, #157118)
294826
- proper read longs and shorts in libpm.c (David Constanzo, #157110)
294826
- fix segfault in bmptopnm caused by freeing an uninitialized pointer
294826
294826
* Tue Mar 29 2005 Jindrich Novy <jnovy@redhat.com> 10.27-1
294826
- update to the new 10.27 release
294826
- update .security2, .security patch
294826
- regenerate man pages
294826
- remove jbig, hpcd
294826
- remove config_template from /usr
294826
- don't create symlink to pamtopnm
294826
294826
* Mon Mar 14 2005 Jindrich Novy <jnovy@redhat.com> 10.26.4-3
294826
- fix overflow checking of integers with incompatible endianess
294826
  causing problems using xwdtopnm (#147790)
294826
294826
* Wed Mar 09 2005 Jindrich Novy <jnovy@redhat.com> 10.26.4-2
294826
- add .gcc4 patch to fix some missing declarations of headers,
294826
  some pointer signedness mismatches, remove xmalloc2
294826
- rebuilt with gcc4
294826
294826
* Thu Mar 03 2005 Jindrich Novy <jnovy@redhat.com> 10.26.4-1
294826
- update to netpbm-10.26.4, remove jbig, hpcd
294826
- this version fixes #149924
294826
- regenerate man pages (don't include man pages without binaries - #146863)
294826
294826
* Wed Jan 05 2005 Jindrich Novy <jnovy@redhat.com> 10.26-1
294826
- update to netpbm-10.26-1, remove jbig, hpcd
294826
- regenerate man pages, remove man pages for non existent binaries
294826
- update security patch, additional fixes
294826
- drop upstreamed misc patch, merge malloc patch with security patch
294826
294826
* Mon Oct 25 2004 Jindrich Novy <jnovy@redhat.com> 10.25-3
294826
- include man pages in troff format, thanks to Michal Jaegerman (#136959)
294826
- drop bmpbpp patch, fixed upstream
294826
- remove pcdovtoppm, ppmsvgalib, vidtoppm man pages because binaries
294826
  for them are not present (#136471)
294826
294826
* Mon Oct 18 2004 Jindrich Novy <jnovy@redhat.com> 10.25-2
294826
- avoid compile crash when "-msse" is in CFLAGS
294826
294826
* Mon Oct 18 2004 Jindrich Novy <jnovy@redhat.com> 10.25-1
294826
- update to latest upstream 10.25
294826
- drop initvar patch
294826
- update security, misc patch
294826
- add bmpbpp patch to use only appropriate bit depths for BMP (#135675)
294826
294826
* Thu Sep 23 2004 Jindrich Novy <jnovy@redhat.com> 10.24-3
294826
- added patch to suppress installation of doc.url to /usr/bin #133346
294826
294826
* Wed Aug 18 2004 Jindrich Novy <jnovy@redhat.com> 10.24-2
294826
- added patch to fix compile crash for 64bit machines
294826
- various hacks related to .security patch
294826
294826
* Mon Aug 16 2004 Jindrich Novy <jnovy@redhat.com> 10.24-1
294826
- updated to 10.24
294826
- updated docs
294826
294826
* Thu Aug 05 2004 Jindrich Novy <jnovy@redhat.com> 10.23-2
294826
- added pngtopnm patch
294826
- added malloc patch
294826
294826
* Tue Aug 03 2004 Jindrich Novy <jnovy@redhat.com> 10.23-1
294826
- updated to netpbm-10.23 upsteam (and removed jbig, hpcd)
294826
- $TMPDIR patch removed, obsolete
294826
- updated gcc34 patch
294826
- removed nestedfunc patch, already applied in upstream version
294826
- updated security patch to conform to 10.23 (mostly in ppmtompeg/frame.c)
294826
294826
* Fri Jul 02 2004 Phil Knirsch <pknirsch@redhat.com> 10.22-2
294826
- Fixed Zero byte allocation error in bmptopnm (#123169)
294826
- Honour the $TMPDIR in ppmfade (#117247)
294826
- Fixed nested function bug (#117377)
294826
- Fixed several uninitialized variables (#117377)
294826
294826
* Mon Jun 28 2004 Phil Knirsch <pknirsch@redhat.com> 10.22-1
294826
- Update to latest upstream version 10.22 (also for docs).
294826
- Removed jbig and hdcp code from tarball.
294826
294826
* Sat Jun 19 2004 Alan Cox <alan@redhat.com>
294826
- merged fix for pnmrotate crash freeing wrong number of rows
294826
294826
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
294826
- rebuilt
294826
294826
* Tue Mar 30 2004 Harald Hoyer <harald@redhat.com> - 10.19-7
294826
- fixed compilation with gcc34
294826
294826
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
294826
- rebuilt
294826
294826
* Tue Feb 17 2004 Phil Knirsch <pknirsch@redhat.com> 10.19-6
294826
- Fixed problem in pnmquant with GetOptions() and args/ARGV (#115788).
294826
294826
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com> 10.19-5
294826
- rebuilt
294826
294826
* Tue Feb 10 2004 Phil Knirsch <pknirsch@redhat.com> 10.19-4
294826
- Fixed several tmp vulnerabilities in scripts and apps. Based on Debian
294826
  security fix for netpbm-9.24.
294826
294826
* Mon Feb 09 2004 Phil Knirsch <pknirsch@redhat.com> 10.19-3
294826
- Included doc tarball with manpages (#114755).
294826
- Fixed small manpage incorrectness (#84922).
294826
- Fixed message from giftopnm (#114756).
294826
294826
* Fri Jan 30 2004 Phil Knirsch <pknirsch@redhat.com> 10.19-2
294826
- No need anymore to fix ppmfade and ppmshade.
294826
294826
* Thu Jan 29 2004 Phil Knirsch <pknirsch@redhat.com> 10.19-1
294826
- Major update to latest upstream version 10.19.
294826
294826
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
294826
- rebuilt
294826
294826
* Fri Feb 28 2003 Phil Knirsch <pknirsch@redhat.com> 9.24-11
294826
- Updated Alan's patch.
294826
294826
* Wed Feb 19 2003 Phil Knirsch <pknirsch@redhat.com> 9.24-10
294826
- Added big security patch by Alan Cox.
294826
294826
* Wed Jan 22 2003 Tim Powers <timp@redhat.com> 9.24-9
294826
- rebuilt
294826
294826
* Thu Dec 19 2002 Phil Knirsch <pknirsch@redhat.com> 9.24-8
294826
- Removed print filters again as they are too dangerous.
294826
294826
* Mon Dec 16 2002 Elliot Lee <sopwith@redhat.com> 9.24-7
294826
- Merge in hammer changes, rebuild
294826
294826
* Sun Sep 08 2002 Arjan van de Ven <arjanv@redhat.com>
294826
- fix for x86-64
294826
294826
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
294826
- automated rebuild
294826
294826
* Wed Jun 19 2002 Phil Knirsch <pknirsch@redhat.com> 9.24-5
294826
- Don't forcibly strip binaries
294826
294826
* Thu May 23 2002 Tim Powers <timp@redhat.com>
294826
- automated rebuild
294826
294826
* Tue Apr 09 2002 Phil Knirsch <pknirsch@redhat.com> 9.24-3
294826
- Fixed a possible gcc compiler problem for inline struct parameters (#62181).
294826
- Added missing .map files to progs files selection (#61625).
294826
294826
* Tue Apr 02 2002 Phil Knirsch <pknirsch@redhat.com> 9.24-2
294826
- Fixed stupid dangling symlink problem (#62478)
294826
294826
* Tue Mar 12 2002 Phil Knirsch <pknirsch@redhat.com> 9.24-1
294826
- Updated to netpbm version 9.24
294826
- Hacked around a couple of library problems.
294826
294826
* Tue Nov 06 2001 Phil Knirsch <phil@redhat.de>
294826
- Updated to netpbm version 9.20
294826
294826
* Fri Jun 22 2001 Philipp Knirsch <pknirsch@redhat.de>
294826
- Updated to netpbm version 9.14
294826
- Removed pnmtotiff resize patch as it is now part of the original package
294826
- Removed pstopnm csh fix as it is now part of the original package
294826
- Removed asciitopgm memcpy fix as it is now part of the original package
294826
- Removed manpages patch as it is now part of the original package
294826
294826
* Mon Feb 12 2001 Philipp Knirsch <pknirsch@redhat.de>
294826
- Fixed bugzilla bug #26767 where the new glibc time and sys/time fixes needed
294826
  to be done.
294826
294826
* Fri Feb  9 2001 Crutcher Dunnavant <crutcher@redhat.com>
294826
- switched filters to printconf filters
294826
294826
* Wed Jan 24 2001 Philipp Knirsch <pknirsch@redhat.de>
294826
- Fixed bugzilla bug #21644 where few manpages had a small error.
294826
294826
* Tue Dec 19 2000 Philipp Knirsch <pknirsch@redhat.de>
294826
- Fixed bugzilla bug #19487 where asciitopgm dumped core on Alpha. Actually
294826
  dumped core everywhere
294826
294826
* Tue Dec 19 2000 Philipp Knirsch <pknirsch@redhat.de>
294826
- update to 9.9
294826
- Due to patent infringement problems removed the jbig support from the tarball
294826
  (pnm/jbig + Makefile changes) and created a new tarball
294826
294826
* Wed Oct 25 2000 Nalin Dahyabhai <nalin@redhat.com>
294826
- include shared libraries missing from previous build
294826
294826
* Tue Oct 24 2000 Nalin Dahyabhai <nalin@redhat.com>
294826
- update to 9.8
294826
- make sure shhopt.h is included in the -devel package (#19672)
294826
- rename shhopt.h to pbmshhopt.h because it's not the same as the normal
294826
  shhopt.h that other things (like util-linux) expect
294826
294826
* Wed Aug  9 2000 Crutcher Dunnavant <crutcher@redhat.com>
294826
- added a png-to-pnm.fpi filter
294826
294826
* Wed Aug  2 2000 Matt Wilson <msw@redhat.com>
294826
- rebuilt against new libpng
294826
294826
* Mon Jul 17 2000 Nalin Dahyabhai <nalin@redhat.com>
294826
- move netpbm-progs to the Applications/Multimedia group
294826
- reintroduce patches from the old libgr package
294826
294826
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
294826
- automatic rebuild
294826
294826
* Sat Jul  1 2000 Nalin Dahyabhai <nalin@redhat.com>
294826
- update to 9.5
294826
294826
* Tue Jun 27 2000 Nalin Dahyabhai <nalin@redhat.com>
294826
- update to 9.4
294826
294826
* Sat Jun  3 2000 Nalin Dahyabhai <nalin@redhat.com>
294826
- switch back to the netpbm tree, which is maintained again
294826
294826
* Mon Feb 14 2000 Nalin Dahyabhai <nalin@redhat.com>
294826
- make sure all man pages are included (#9328)
294826
- fix pstopnm bomb when xres == yres (#9329)
294826
- add libjpeg and libz because libtiff now needs them
294826
294826
* Wed Feb 02 2000 Nalin Dahyabhai <nalin@redhat.com>
294826
- added/updated TIFF compression patch from jik@kamens.brookline.ma.us (#8826)
294826
294826
* Mon Dec 06 1999 Michael K. Johnson <johnsonm@redhat.com>
294826
- added TIFF resolution patch from jik@kamens.brookline.ma.us (#7589)
294826
294826
* Mon Sep 20 1999 Michael K. Johnson <johnsonm@redhat.com>
294826
- added section 5 man pages
294826
294826
* Fri Jul 30 1999 Bill Nottingham <notting@redhat.com>
294826
- fix tiff-to-pnm.fpi (#4267)
294826
294826
* Thu Jul 29 1999 Bill Nottingham <notting@redhat.com>
294826
- add a pile of foo-to-bar.fpi filters (#4251)
294826
294826
* Tue Mar 23 1999 Michael Johnson <johnsonm@redhat.com>
294826
- removed old png.h header file that was causing png utils to die
294826
- build png in build instead of install section...
294826
294826
* Mon Mar 22 1999 Bill Nottingham <notting@redhat.com>
294826
- patch for 24-bit .BMP files (from sam@campbellsci.co.uk)
294826
294826
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> 
294826
- auto rebuild in the new build environment (release 15)
294826
294826
* Wed Jan 06 1999 Cristian Gafton <gafton@redhat.com>
294826
- clean up the spec file
294826
- build for glibc 2.1
294826
- patch to fix pktopbm
294826
294826
* Wed Jun 10 1998 Prospector System <bugs@redhat.com>
294826
- translations modified for de
294826
294826
* Wed Jun 10 1998 Jeff Johnson <jbj@redhat.com>
294826
- glibc2 defines random in <stdlib.h> (pbm/pbmplus.h problem #693)
294826
294826
* Thu May 07 1998 Prospector System <bugs@redhat.com>
294826
- translations modified for de, fr, tr
294826
294826
* Thu May 07 1998 Cristian Gafton <gafton@redhat.com>
294826
- cleaned up the spec file a little bit
294826
- validated mike's changes :-)
294826
294826
* Wed May 6 1998 Michael Maher <mike@redhat.com>
294826
- added pnm-to-ps.fpi that was missing from previous packages
294826
294826
* Thu Apr 30 1998 Cristian Gafton <gafton@redhat.com>
294826
- altered install so that the package installs now even if a previous
294826
  version was not installed on the system 
294826
294826
* Thu Apr 16 1998 Erik Troan <ewt@redhat.com>
294826
- built against libpng 1.0
294826
294826
* Thu Nov 06 1997 Donnie Barnes <djb@redhat.com>
294826
- changed copyright from "distributable" to "freeware"
294826
- added some missing scripts that existed in netpbm
294826
- added some binaries that weren't getting built
294826
- added patch to build tiff manipulation progs (requires libtiff)
294826
294826
* Wed Oct 15 1997 Donnie Barnes <djb@redhat.com>
294826
- obsoletes netpbm now
294826
294826
* Tue Oct 14 1997 Erik Troan <ewt@redhat.com>
294826
- mucked config.guess and Make.Rules to build on Alpha/Linux
294826
294826
* Tue Oct 07 1997 Donnie Barnes <djb@redhat.com>
294826
- updated to 2.0.13
294826
- dropped libjpeg and libtiff (those should come from home sources)
294826
- removed glibc patch (new version appears to have it!)
294826
- added i686 as a valid arch type to config.guess
294826
294826
* Thu Jul 10 1997 Erik Troan <ewt@redhat.com>
294826
- built against glibc
294826