ee1fd2
# python3 is not available on RHEL <= 7
ee1fd2
%if 0%{?fedora} || 0%{?rhel} > 7
ee1fd2
%bcond_without python3
ee1fd2
%else
ee1fd2
%bcond_with python3
ee1fd2
%endif
ee1fd2
ee1fd2
# python2 is not available on RHEL > 7
ee1fd2
%if 0%{?fedora} > 31 || 0%{?rhel} > 7
ee1fd2
%bcond_with python2
ee1fd2
%else
ee1fd2
%bcond_without python2
ee1fd2
%endif
ee1fd2
ee1fd2
Summary: Utility for determining file types
ee1fd2
Name: file
ee1fd2
Version: 5.39
ee1fd2
Release: 8%{?dist}
ee1fd2
License: BSD
ee1fd2
Source0: http://ftp.astron.com/pub/file/file-%{version}.tar.gz
ee1fd2
ee1fd2
# Upstream says it's up to distributions to add a way to support local-magic.
ee1fd2
Patch0: file-localmagic.patch
ee1fd2
ee1fd2
# not yet upstream
ee1fd2
Patch1: file-4.17-rpm-name.patch
ee1fd2
Patch2: file-5.04-volume_key.patch
ee1fd2
ee1fd2
# Fix close_on_exec multithreaded decompression issue (#1906751)
ee1fd2
Patch3: file-5.39-CLOEXEC.patch
ee1fd2
ee1fd2
# Upstream commit 7d9b0f0d853957ad88dae0f440fecd58d2740ca7 (#1963892)
ee1fd2
Patch4: file-5.40-magic-python.patch
ee1fd2
ee1fd2
URL: https://www.darwinsys.com/file/
ee1fd2
Requires: file-libs%{?_isa} = %{version}-%{release}
ee1fd2
BuildRequires: zlib-devel
ee1fd2
BuildRequires: autoconf
ee1fd2
BuildRequires: automake
ee1fd2
BuildRequires: libtool
ee1fd2
BuildRequires: make
ee1fd2
ee1fd2
%description
ee1fd2
The file command is used to identify a particular file according to the
ee1fd2
type of data contained by the file.  File can identify many different
ee1fd2
file types, including ELF binaries, system libraries, RPM packages, and
ee1fd2
different graphics formats.
ee1fd2
ee1fd2
%package libs
ee1fd2
Summary: Libraries for applications using libmagic
ee1fd2
License: BSD
ee1fd2
ee1fd2
%description libs
ee1fd2
ee1fd2
Libraries for applications using libmagic.
ee1fd2
ee1fd2
%package devel
ee1fd2
Summary:  Libraries and header files for file development
ee1fd2
Requires: file-libs%{?_isa} = %{version}-%{release}
ee1fd2
ee1fd2
%description devel
ee1fd2
The file-devel package contains the header files and libmagic library
ee1fd2
necessary for developing programs using libmagic.
ee1fd2
ee1fd2
%package static
ee1fd2
Summary: Static library for file development
ee1fd2
Requires: file-devel = %{version}-%{release}
ee1fd2
ee1fd2
%description static
ee1fd2
The file-static package contains the static version of the libmagic library.
ee1fd2
ee1fd2
%if %{with python2}
ee1fd2
%package -n python2-magic
ee1fd2
Summary: Python 2 bindings for the libmagic API
ee1fd2
BuildRequires: python2-devel
ee1fd2
BuildRequires: python2-setuptools
ee1fd2
BuildArch: noarch
ee1fd2
Requires: %{name} = %{version}-%{release}
ee1fd2
%{?python_provide:%python_provide python2-magic}
ee1fd2
ee1fd2
%description -n python2-magic
ee1fd2
This package contains the Python 2 bindings to allow access to the
ee1fd2
libmagic API. The libmagic library is also used by the familiar
ee1fd2
file(1) command.
ee1fd2
%endif
ee1fd2
ee1fd2
%if %{with python3}
ee1fd2
%package -n python3-file-magic
ee1fd2
Summary: Python 3 bindings for the libmagic API
ee1fd2
BuildRequires: python3-devel
ee1fd2
BuildRequires: python3-setuptools
ee1fd2
BuildArch: noarch
ee1fd2
Requires: %{name} = %{version}-%{release}
ee1fd2
Provides: python3-magic = %{version}-%{release}
ee1fd2
Obsoletes: python3-magic < %{version}-%{release}
ee1fd2
Conflicts: python3-magic < %{version}-%{release}
ee1fd2
ee1fd2
%description -n python3-file-magic
ee1fd2
This package contains the Python 3 bindings to allow access to the
ee1fd2
libmagic API. The libmagic library is also used by the familiar
ee1fd2
file(1) command.
ee1fd2
%endif
ee1fd2
ee1fd2
%prep
ee1fd2
%autosetup -p1
ee1fd2
ee1fd2
iconv -f iso-8859-1 -t utf-8 < doc/libmagic.man > doc/libmagic.man_
ee1fd2
touch -r doc/libmagic.man doc/libmagic.man_
ee1fd2
mv doc/libmagic.man_ doc/libmagic.man
ee1fd2
ee1fd2
%if %{with python3}
ee1fd2
rm -rf %{py3dir}
ee1fd2
cp -a python %{py3dir}
ee1fd2
%endif
ee1fd2
ee1fd2
%build
ee1fd2
# Fix config.guess to find aarch64 - #925339
ee1fd2
autoreconf -fi
ee1fd2
ee1fd2
CFLAGS="%{optflags} -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE" \
ee1fd2
%configure --enable-fsect-man5 --disable-rpath --enable-static
ee1fd2
# remove hardcoded library paths from local libtool
ee1fd2
sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
ee1fd2
sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
ee1fd2
export LD_LIBRARY_PATH=%{_builddir}/%{name}-%{version}/src/.libs
ee1fd2
%make_build
ee1fd2
%if %{with python2}
ee1fd2
cd python
ee1fd2
CFLAGS="%{optflags}" %{__python2} setup.py build
ee1fd2
%endif
ee1fd2
%if %{with python3}
ee1fd2
cd %{py3dir}
ee1fd2
CFLAGS="%{optflags}" %{__python3} setup.py build
ee1fd2
%endif
ee1fd2
ee1fd2
%install
ee1fd2
mkdir -p ${RPM_BUILD_ROOT}%{_bindir}
ee1fd2
mkdir -p ${RPM_BUILD_ROOT}%{_mandir}/man1
ee1fd2
mkdir -p ${RPM_BUILD_ROOT}%{_mandir}/man5
ee1fd2
mkdir -p ${RPM_BUILD_ROOT}%{_datadir}/misc
ee1fd2
mkdir -p ${RPM_BUILD_ROOT}%{_datadir}/file
ee1fd2
ee1fd2
%make_install
ee1fd2
rm -f ${RPM_BUILD_ROOT}%{_libdir}/*.la
ee1fd2
ee1fd2
# local magic in /etc/magic
ee1fd2
mkdir -p ${RPM_BUILD_ROOT}%{_sysconfdir}
ee1fd2
cp -a ./magic/magic.local ${RPM_BUILD_ROOT}%{_sysconfdir}/magic
ee1fd2
ee1fd2
cat magic/Magdir/* > ${RPM_BUILD_ROOT}%{_datadir}/misc/magic
ee1fd2
ln -s misc/magic ${RPM_BUILD_ROOT}%{_datadir}/magic
ee1fd2
ln -s ../magic ${RPM_BUILD_ROOT}%{_datadir}/file/magic
ee1fd2
ee1fd2
%if %{with python2}
ee1fd2
cd python
ee1fd2
%{__python2} setup.py install -O1 --skip-build --root ${RPM_BUILD_ROOT}
ee1fd2
%endif
ee1fd2
%if %{with python3}
ee1fd2
cd %{py3dir}
ee1fd2
%{__python3} setup.py install -O1 --skip-build --root ${RPM_BUILD_ROOT}
ee1fd2
%endif
ee1fd2
%{__install} -d ${RPM_BUILD_ROOT}%{_datadir}/%{name}
ee1fd2
ee1fd2
%ldconfig_scriptlets libs
ee1fd2
ee1fd2
%files
ee1fd2
%license COPYING
ee1fd2
%doc ChangeLog README
ee1fd2
%{_bindir}/*
ee1fd2
%{_mandir}/man1/*
ee1fd2
%config(noreplace) %{_sysconfdir}/magic
ee1fd2
ee1fd2
%files libs
ee1fd2
%license COPYING
ee1fd2
%doc ChangeLog README
ee1fd2
%{_libdir}/*so.*
ee1fd2
%{_datadir}/magic*
ee1fd2
%{_mandir}/man5/*
ee1fd2
%{_datadir}/file
ee1fd2
%{_datadir}/misc/*
ee1fd2
ee1fd2
%files devel
ee1fd2
%{_libdir}/*.so
ee1fd2
%{_includedir}/magic.h
ee1fd2
%{_mandir}/man3/*
ee1fd2
%{_libdir}/pkgconfig/libmagic.pc
ee1fd2
ee1fd2
%files static
ee1fd2
%{_libdir}/libmagic.a
ee1fd2
ee1fd2
%if %{with python2}
ee1fd2
%files -n python2-magic
ee1fd2
%license COPYING
ee1fd2
%doc python/README.md python/example.py
ee1fd2
%{python2_sitelib}/magic.py
ee1fd2
%{python2_sitelib}/magic.pyc
ee1fd2
%{python2_sitelib}/magic.pyo
ee1fd2
%if 0%{?fedora} || 0%{?rhel} >= 6
ee1fd2
%{python2_sitelib}/*egg-info
ee1fd2
%endif
ee1fd2
%endif
ee1fd2
ee1fd2
%if %{with python3}
ee1fd2
%files -n python3-file-magic
ee1fd2
%license COPYING
ee1fd2
%doc python/README.md python/example.py
ee1fd2
%{python3_sitelib}/magic.py
ee1fd2
%{python3_sitelib}/*egg-info
ee1fd2
%{python3_sitelib}/__pycache__/*
ee1fd2
%endif
ee1fd2
ee1fd2
%changelog
ee1fd2
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 5.39-8
ee1fd2
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
ee1fd2
  Related: rhbz#1991688
ee1fd2
ee1fd2
* Mon Aug 9 2021 Vincent Mihalkovic <vmihalko@redhat.com> - 5.39-7
ee1fd2
- do not classify python bytecode files as text.
ee1fd2
  Resolves: #1963892
ee1fd2
ee1fd2
* Thu Apr 15 2021 Mohan Boddu <mboddu@redhat.com> - 5.39-6
ee1fd2
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
ee1fd2
ee1fd2
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 5.39-5
ee1fd2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
ee1fd2
ee1fd2
* Wed Dec 16 2020 Vincent Mihalkovic <vmihalko@redhat.com> - 5.39-4
ee1fd2
- Fix close_on_exec multithreaded decompression issue (#1906751)
ee1fd2
ee1fd2
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 5.39-3
ee1fd2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
ee1fd2
ee1fd2
* Wed Jun 24 2020 Vincent Mihalkovic <vmihalko@redhat.com> - 5.39-2
ee1fd2
- BuildRequires: python3-setuptools
ee1fd2
ee1fd2
* Tue Jun 16 2020 Vincent Mihalkovic <vmihalko@redhat.com> - 5.39-1
ee1fd2
- update to new version 5.39
ee1fd2
ee1fd2
* Wed May 27 2020 Miro Hrončok <mhroncok@redhat.com> - 5.38-6
ee1fd2
- Rebuilt for Python 3.9
ee1fd2
ee1fd2
* Tue May 26 2020 Vincent Mihalkovič <vmihalko@redhat.com> - 5.38-5
ee1fd2
- increase CDROM strength to beat MBR (#1696798)
ee1fd2
ee1fd2
* Sat May 23 2020 Miro Hrončok <mhroncok@redhat.com> - 5.38-4
ee1fd2
- Rebuilt for Python 3.9
ee1fd2
ee1fd2
* Wed Mar 11 2020 Vincent Mihalkovič <vmihalko@redhat.com> - 5.38-3
ee1fd2
- use python3-file-magic instead of python3-magic (#1793689)
ee1fd2
ee1fd2
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 5.38-2
ee1fd2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
ee1fd2
ee1fd2
* Tue Dec 17 2019 Kamil Dudka <kdudka@redhat.com> - 5.38-1
ee1fd2
- update to new version 5.38
ee1fd2
ee1fd2
* Mon Nov 18 2019 Kamil Dudka <kdudka@redhat.com> - 5.37-9
ee1fd2
- remove wrong magic for JFFS file system (#1771242)
ee1fd2
ee1fd2
* Fri Oct 25 2019 Kamil Dudka <kdudka@redhat.com> - 5.37-8
ee1fd2
- fix heap-based buffer overflow in cdf_read_property_info() (CVE-2019-18218)
ee1fd2
ee1fd2
* Mon Oct 14 2019 Kamil Dudka <kdudka@redhat.com> - 5.37-7
ee1fd2
- remove the python2-magic subpackage on f32+ (#1761223)
ee1fd2
ee1fd2
* Fri Oct 04 2019 Kamil Dudka <kdudka@redhat.com> - 5.37-6
ee1fd2
- always install python2-setuptools if python2 is enabled
ee1fd2
ee1fd2
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 5.37-5
ee1fd2
- Rebuilt for Python 3.8.0rc1 (#1748018)
ee1fd2
ee1fd2
* Fri Aug 16 2019 Miro Hrončok <mhroncok@redhat.com> - 5.37-4
ee1fd2
- Rebuilt for Python 3.8
ee1fd2
ee1fd2
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 5.37-3
ee1fd2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
ee1fd2
ee1fd2
* Tue Jun 11 2019 Kamil Dudka <kdudka@redhat.com> - 5.37-2
ee1fd2
- fix double free on read error (#1685217)
ee1fd2
ee1fd2
* Fri May 17 2019 Kamil Dudka <kdudka@redhat.com> - 5.37-1
ee1fd2
- update to new version 5.37
ee1fd2
ee1fd2
* Fri Mar 01 2019 Kamil Dudka <kdudka@redhat.com> - 5.36-2
ee1fd2
- improve support for Apple formats (#1679455)
ee1fd2
ee1fd2
* Thu Feb 21 2019 Siteshwar Vashisht <svashisht@redhat.com> - 5.36-1
ee1fd2
- update to new version 5.36, which fixes the following vulnerabilities:
ee1fd2
    CVE-2019-8907 - remote denial of service in do_core_note in readelf.c
ee1fd2
    CVE-2019-8905 - stack-based buffer over-read in do_core_note in readelf.c
ee1fd2
    CVE-2019-8904 - stack-based buffer over-read in do_bid_note in readelf.c
ee1fd2
    CVE-2019-8906 - out-of-bounds read in do_core_note in readelf.c
ee1fd2
ee1fd2
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 5.35-5
ee1fd2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
ee1fd2
ee1fd2
* Thu Jan 24 2019 Ondrej Dubaj <odubaj@redhat.com> - 5.35-4
ee1fd2
- Added Linux PowerPC core offsets for Linux + fixed bug #1161911
ee1fd2
ee1fd2
* Thu Jan 24 2019 Ondrej Dubaj <odubaj@redhat.com> - 5.35-3
ee1fd2
- Fixed bug missidentifying netpbm files (#856092)
ee1fd2
ee1fd2
* Tue Dec 04 2018 Ondrej Dubaj <odubaj@redhat.com> - 5.35-2
ee1fd2
- Fixed bug misleading qcow2 v2 and v3 files (#1654349)
ee1fd2
ee1fd2
* Tue Dec 04 2018 Kamil Dudka <kdudka@redhat.com> - 5.35-1
ee1fd2
- update to new version 5.35
ee1fd2
ee1fd2
* Wed Nov 21 2018 Ondrej Dubaj <odubaj@redhat.com> - 5.34-6
ee1fd2
- Fixed missidentifying locale files bug (#1527398)
ee1fd2
ee1fd2
* Wed Nov 14 2018 Kamil Dudka <kdudka@redhat.com> - 5.34-5
ee1fd2
- reintroduce the python2-magic subpackage needed by python2-bugzilla (#1649547)
ee1fd2
ee1fd2
* Mon Nov 12 2018 Kamil Dudka <kdudka@redhat.com> - 5.34-4
ee1fd2
- add magic for eBPF objects (#1648667)
ee1fd2
ee1fd2
* Tue Jul 31 2018 Florian Weimer <fweimer@redhat.com> - 5.34-3
ee1fd2
- Rebuild with fixed binutils
ee1fd2
ee1fd2
* Fri Jul 27 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 5.34-2
ee1fd2
- Rebuild for new binutils
ee1fd2
ee1fd2
* Wed Jul 25 2018 Kamil Dudka <kdudka@redhat.com> - 5.34-1
ee1fd2
- update to new version 5.34
ee1fd2
ee1fd2
* Tue Jul 17 2018 Kamil Dudka <kdudka@redhat.com> - 5.33-10
ee1fd2
- show details about ppc swap partition (#1224668)
ee1fd2
- support longer version strings for clamav database (#1539107)
ee1fd2
ee1fd2
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 5.33-9
ee1fd2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
ee1fd2
ee1fd2
* Sun Jun 17 2018 Miro Hrončok <mhroncok@redhat.com> - 5.33-8
ee1fd2
- Rebuilt for Python 3.7
ee1fd2
ee1fd2
* Wed Jun 13 2018 Kamil Dudka <kdudka@redhat.com> - 5.33-7
ee1fd2
- fix out-of-bounds read via a crafted ELF file (CVE-2018-10360)
ee1fd2
ee1fd2
* Mon May 28 2018 Kamil Dudka <kdudka@redhat.com> - 5.33-6
ee1fd2
- make file-devel depend on file-libs, instead of file
ee1fd2
- reintroduce file-static subpackage (#1575661)
ee1fd2
- drop obsolete Group tag
ee1fd2
ee1fd2
* Thu May 24 2018 Kamil Dudka <kdudka@redhat.com> - 5.33-5
ee1fd2
- do not classify shared libraries as pie executables in MIME output (#1581343)
ee1fd2
ee1fd2
* Tue May 22 2018 Kamil Dudka <kdudka@redhat.com> - 5.33-4
ee1fd2
- do not classify shared libraries as pie executables (#1581343)
ee1fd2
- seccomp: fix build failure due to missing syscalls
ee1fd2
ee1fd2
* Mon Apr 30 2018 Miro Hrončok <mhroncok@redhat.com> - 5.33-3
ee1fd2
- Update Python macros to new packaging standards
ee1fd2
  (See https://fedoraproject.org/wiki/Changes/Avoid_usr_bin_python_in_RPM_Build)
ee1fd2
ee1fd2
* Wed Apr 18 2018 Kamil Dudka <kdudka@redhat.com> - 5.33-2
ee1fd2
- increase strength of GIF to beat MBR (#1515180)
ee1fd2
ee1fd2
* Mon Apr 16 2018 Kamil Dudka <kdudka@redhat.com> - 5.33-1
ee1fd2
- update to new version 5.33
ee1fd2
ee1fd2
* Wed Mar 28 2018 Kamil Dudka <kdudka@redhat.com> - 5.32-4
ee1fd2
- make the python2-magic subpackage optional
ee1fd2
ee1fd2
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 5.32-3
ee1fd2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
ee1fd2
ee1fd2
* Sat Feb 03 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 5.32-2
ee1fd2
- Switch to %%ldconfig_scriptlets
ee1fd2
ee1fd2
* Mon Sep 04 2017 Kamil Dudka <kdudka@redhat.com> - 5.32-1
ee1fd2
- update to new version 5.32
ee1fd2
ee1fd2
* Sat Aug 19 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 5.31-10
ee1fd2
- Python 2 binary package renamed to python2-file
ee1fd2
  See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3
ee1fd2
ee1fd2
* Fri Aug 18 2017 Marek Cermak <macermak@redhat.com> - 5.31-9
ee1fd2
- Ruby script recognition and classification (#1050897)
ee1fd2
ee1fd2
* Mon Aug 14 2017 Marek Cermak <macermak@redhat.com> - 5.31-8
ee1fd2
- New magic entry for iconv/gconv module configuration cache (#1342428)
ee1fd2
ee1fd2
* Fri Aug 4 2017 Marek Cermak <macermak@redhat.com> - 5.31-7
ee1fd2
- Changes in commands and images magic files
ee1fd2
- Fixes awk/perl script recognition
ee1fd2
ee1fd2
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.31-6
ee1fd2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
ee1fd2
ee1fd2
* Mon Jul 31 2017 Marek Cermak <macermak@redhat.com> - 5.31-5
ee1fd2
- fixed patch for recognition of gnu message catalog (.mo) files (#1226215)
ee1fd2
ee1fd2
* Sun Jul 30 2017 Florian Weimer <fweimer@redhat.com> - 5.31-4
ee1fd2
- Rebuild with binutils fix for ppc64le (#1475636)
ee1fd2
ee1fd2
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.31-3
ee1fd2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
ee1fd2
ee1fd2
* Tue Jul 25 2017 Marek Cermak <macermak@redhat.com> - 5.31-2
ee1fd2
- fixed recognition of gnu message catalog (.mo) files (#1226215)
ee1fd2
ee1fd2
* Wed May 24 2017 Kamil Dudka <kdudka@redhat.com> - 5.31-1
ee1fd2
- update to new version 5.31
ee1fd2
ee1fd2
* Wed Apr 05 2017 Kamil Dudka <kdudka@redhat.com> - 5.30-6
ee1fd2
- fix utf-8 conversion in Python 2 bindings (#1433364)
ee1fd2
ee1fd2
* Thu Feb 23 2017 Kamil Dudka <kdudka@redhat.com> - 5.30-5
ee1fd2
- make the package build on EPEL-6 and EPEL-7
ee1fd2
- drop undocumented override of the __libtoolize RPM macro
ee1fd2
- drop undocumented non-upstream file-5.24-varied.patch
ee1fd2
- drop undocumented non-upstream file-5.22-awk-perl.patch
ee1fd2
- drop non-upstream file-5.19-cafebabe.patch no longer needed (#1134580)
ee1fd2
- drop undocumented non-upstream file-5.14-x86boot.patch
ee1fd2
- drop undocumented non-upstream file-5.04-generic-msdos.patch
ee1fd2
ee1fd2
* Thu Feb 23 2017 Kamil Dudka <kdudka@redhat.com> - 5.30-4
ee1fd2
- increase strength of perl modules to exceed C sources (#772651)
ee1fd2
- drop non-upstream file-5.14-perl.patch (#1051598)
ee1fd2
- drop undocumented non-upstream file-5.10-strength.patch (#772651)
ee1fd2
ee1fd2
* Tue Feb 14 2017 Kamil Dudka <kdudka@redhat.com> - 5.30-3
ee1fd2
- restore compatibility with certain RPM scripts
ee1fd2
ee1fd2
* Tue Feb 14 2017 Kamil Dudka <kdudka@redhat.com> - 5.30-2
ee1fd2
- fix debug info reversed logic
ee1fd2
ee1fd2
* Mon Feb 13 2017 Kamil Dudka <kdudka@redhat.com> - 5.30-1
ee1fd2
- apply patches automatically to ease maintenance
ee1fd2
- update to new version 5.30
ee1fd2
ee1fd2
* Wed Feb 08 2017 Kamil Dudka <kdudka@redhat.com> - 5.29-3
ee1fd2
- build in parallel and in verbose mode
ee1fd2
- fix assertion failure on certain files (thanks to Christoph Biedl)
ee1fd2
ee1fd2
* Tue Dec 13 2016 Charalampos Stratakis <cstratak@redhat.com> - 5.29-2
ee1fd2
- Rebuild for Python 3.6
ee1fd2
ee1fd2
* Tue Oct 25 2016 Kamil Dudka <kdudka@redhat.com> - 5.29-1
ee1fd2
- update to new version 5.29
ee1fd2
ee1fd2
* Wed Aug 17 2016 Kamil Dudka <kdudka@redhat.com> - 5.28-4
ee1fd2
- avoid double encoding with Python 3 (#1367144)
ee1fd2
ee1fd2
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.28-3
ee1fd2
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
ee1fd2
ee1fd2
* Mon Jun 27 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 5.28-2
ee1fd2
- Fix crash during uncompression of zlib (RHBZ #1350252)
ee1fd2
ee1fd2
* Fri Jun 24 2016 Kamil Dudka <kdudka@redhat.com> - 5.28-1
ee1fd2
- update to new version 5.28
ee1fd2
ee1fd2
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 5.25-6
ee1fd2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
ee1fd2
ee1fd2
* Thu Jan 28 2016 Jan Kaluza <jkaluza@redhat.com> - 5.25-5
ee1fd2
- fix #1302297 - fix misdetection of some Perl scripts as Minix filesystem
ee1fd2
ee1fd2
* Wed Jan 06 2016 Jan Kaluza <jkaluza@redhat.com> - 5.25-4
ee1fd2
- fix #1291903 - fix misdetection of some text files as MSX binary files
ee1fd2
ee1fd2
* Fri Nov 20 2015 Jan kaluza <jkaluza@redhat.com> - 5.25-3
ee1fd2
- fix #1279401 - change the order of Perl patterns to try "Perl script"
ee1fd2
  patterns before "Perl Module"
ee1fd2
ee1fd2
* Thu Nov 05 2015 Robert Kuska <rkuska@redhat.com> - 5.25-2
ee1fd2
- Rebuilt for Python3.5 rebuild
ee1fd2
ee1fd2
* Fri Sep 18 2015 Jan Kaluza <jkaluza@redhat.com> - 5.25-1
ee1fd2
- update to new version 5.25
ee1fd2
ee1fd2
* Thu Jul 16 2015 Jan Kaluza <jkaluza@redhat.com> - 5.24-1
ee1fd2
- update to new version 5.24
ee1fd2
ee1fd2
* Mon Jun 22 2015 Jan Kaluza <jkaluza@redhat.com> - 5.22-5
ee1fd2
- fix #1201630 - fix recursion in JPEG magic pattern
ee1fd2
ee1fd2
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.22-4
ee1fd2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
ee1fd2
ee1fd2
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 5.22-3
ee1fd2
- Rebuilt for Fedora 23 Change
ee1fd2
  https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
ee1fd2
ee1fd2
* Mon Feb 16 2015 Jan Kaluza <jkaluza@redhat.com> - 5.22-2
ee1fd2
- remove weak zlib pattern
ee1fd2
ee1fd2
* Wed Feb 04 2015 Jan Kaluza <jkaluza@redhat.com> - 5.22-1
ee1fd2
- update to new version 5.22
ee1fd2
ee1fd2
* Thu Oct 23 2014 Jan Kaluza <jkaluza@redhat.com> - 5.19-7
ee1fd2
- fix #1155464 - fix for CVE-2014-3710
ee1fd2
ee1fd2
* Wed Sep 03 2014 Jan Kaluza <jkaluza@redhat.com> - 5.19-6
ee1fd2
- fix #1134580 - detect Mach-O universal binary
ee1fd2
ee1fd2
* Wed Sep 03 2014 Jan Kaluza <jkaluza@redhat.com> - 5.19-5
ee1fd2
- fix #1101404 - remove weak Pascal patterns
ee1fd2
- fix #1107995 - detect locale-archive
ee1fd2
- fix #1130693, #1115111 - fix detection of MSOOXML, OOXML and ZIP
ee1fd2
- fix #1124940 - detect Python 3.4 byte-compiled files
ee1fd2
ee1fd2
* Fri Aug 22 2014 Jan Kaluza <jkaluza@redhat.com> - 5.19-4
ee1fd2
- fix #1132787 - CVE-2014-3587
ee1fd2
ee1fd2
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.19-3
ee1fd2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
ee1fd2
ee1fd2
* Sat Jul 12 2014 Tom Callaway <spot@fedoraproject.org> - 5.19-2
ee1fd2
- fix license handling
ee1fd2
ee1fd2
* Wed Jun 25 2014 Jan Kaluza <jkaluza@redhat.com> - 5.19-1
ee1fd2
- fix #1011789 - update to version 5.19
ee1fd2
ee1fd2
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.14-22
ee1fd2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
ee1fd2
ee1fd2
* Tue May 27 2014 Kalev Lember <kalevlember@gmail.com> - 5.14-21
ee1fd2
- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4
ee1fd2
ee1fd2
* Tue Mar 25 2014 Jan Kaluza <jkaluza@redhat.com> - 5.14-20
ee1fd2
- fix #1079847 - fix potential regression in Perl detection caused
ee1fd2
  by original patch for CVE-2013-7345
ee1fd2
ee1fd2
* Mon Mar 24 2014 Jan Kaluza <jkaluza@redhat.com> - 5.14-19
ee1fd2
- fix redefinition of OFFSET_OOB in CVE-2014-2270 patch
ee1fd2
ee1fd2
* Mon Mar 24 2014 Jan Kaluza <jkaluza@redhat.com> - 5.14-18
ee1fd2
- fix #1079847 - fix for CVE-2013-7345
ee1fd2
- fix #1080450 - remove *.orig files before compiling magic/Magdir
ee1fd2
ee1fd2
* Fri Mar 07 2014 Jan Kaluza <jkaluza@redhat.com> - 5.14-17
ee1fd2
- fix #1073555 - fix for CVE-2014-2270
ee1fd2
ee1fd2
* Tue Feb 25 2014 Jan Kaluza <jkaluza@redhat.com> - 5.14-16
ee1fd2
- fix potential memory leak introduced in previous commit
ee1fd2
ee1fd2
* Tue Feb 18 2014 Jan Kaluza <jkaluza@redhat.com> - 5.14-15
ee1fd2
- fix #1065837 - fix for CVE-2014-1943
ee1fd2
ee1fd2
* Wed Jan 15 2014 Jan Kaluza <jkaluza@redhat.com> - 5.14-14
ee1fd2
- fix #1051598 - reverse the order of shebang vs. package keyword detection
ee1fd2
  in Perl by increasing strength of all Perl patterns
ee1fd2
ee1fd2
* Mon Sep 09 2013 Jan Kaluza <jkaluza@redhat.com> - 5.14-13
ee1fd2
- fix #1001689 - fix segfault when calling magic_load twice
ee1fd2
ee1fd2
* Thu Aug 22 2013 Jan Kaluza <jkaluza@redhat.com> - 5.14-12
ee1fd2
- fix #985072 - add support for journald files
ee1fd2
ee1fd2
* Thu Aug  8 2013 Ville Skyttä <ville.skytta@iki.fi> - 5.14-11
ee1fd2
- Build python-magic for python3 where applicable.
ee1fd2
ee1fd2
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.14-10
ee1fd2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
ee1fd2
ee1fd2
* Tue Jul 02 2013 Jan Kaluza <jkaluza@redhat.com> - 5.14-9
ee1fd2
- fix #980446 - do not segfault when no magic is loaded
ee1fd2
ee1fd2
* Mon Jun 17 2013 Jan Kaluza <jkaluza@redhat.com> - 5.14-8
ee1fd2
- replace sitearch with sitelib
ee1fd2
ee1fd2
* Mon Jun 17 2013 Jan Kaluza <jkaluza@redhat.com> - 5.14-7
ee1fd2
- build python-magic as noarch
ee1fd2
ee1fd2
* Wed May 15 2013 Jan Kaluza <jkaluza@redhat.com> - 5.14-6
ee1fd2
- fix #962678 - do not exit if no magic file is loaded, we can still provide
ee1fd2
  useful info without magic file
ee1fd2
ee1fd2
* Mon May 13 2013 Jan Kaluza <jkaluza@redhat.com> - 5.14-5
ee1fd2
- fix #925339 - support aarch64
ee1fd2
ee1fd2
* Mon Apr 08 2013 Jan Kaluza <jkaluza@redhat.com> - 5.14-4
ee1fd2
- fix #948255 - print white-space in fsmagic, but only when
ee1fd2
  we know there will be some more output
ee1fd2
ee1fd2
* Fri Mar 29 2013 Jan Kaluza <jkaluza@redhat.com> - 5.14-3
ee1fd2
- fix #928995 - do not print white-space in the end of fsmagic
ee1fd2
ee1fd2
* Mon Mar 25 2013 Jan Kaluza <jkaluza@redhat.com> - 5.14-2
ee1fd2
- fix useless space in ELF output which could break libtool
ee1fd2
ee1fd2
* Fri Mar 22 2013 Jan Kaluza <jkaluza@redhat.com> - 5.14-1
ee1fd2
- fix #891856 - update to file-5.14
ee1fd2
- fix #909754 - magic number for Python-3.3
ee1fd2
- fix #912271 - do not report dwarf debug info packages as 'stripped'
ee1fd2
- fix #882321 - do not print 'unknown capability' for ELF capabilities for
ee1fd2
  architectures which File does not support
ee1fd2
- fix #866000 - show proper build id for ELF binaries
ee1fd2
- fix #860139 - better dump file recognition on big endian architectures
ee1fd2
- remove file-static subpackage
ee1fd2
- move python-magic .py files to python_sitearch
ee1fd2
ee1fd2
* Mon Mar 11 2013 Jan Kaluza <jkaluza@redhat.com> - 5.11-9
ee1fd2
- fix #919466 - fix memory leak in get_default_magic
ee1fd2
ee1fd2
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.11-8
ee1fd2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
ee1fd2
ee1fd2
* Tue Dec 04 2012 Jan Kaluza <jkaluza@redhat.com> - 5.11-7
ee1fd2
- removed duplicated patterns for backups generated by "dump" tool
ee1fd2
- recognize volume_key escrow packets
ee1fd2
- mention exit code in manpage
ee1fd2
- remove weak msdos patterns
ee1fd2
ee1fd2
* Wed Nov 21 2012 Jan Kaluza <jkaluza@redhat.com> - 5.11-6
ee1fd2
- clean up the spec file
ee1fd2
ee1fd2
* Tue Aug 14 2012 Jan Kaluza <jkaluza@redhat.com> - 5.11-5
ee1fd2
- fix #847936 - decompress bzip2 properly when using -z param
ee1fd2
- fix #847937 - read magic patterns also from ~/.magic.mgc
ee1fd2
ee1fd2
* Fri Jul 27 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.11-4
ee1fd2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
ee1fd2
ee1fd2
* Thu Jul 19 2012 Jan Kaluza <jkaluza@redhat.com> - 5.11-3
ee1fd2
- removed buildroot, defattr
ee1fd2
ee1fd2
* Thu Jun 21 2012 Jan Kaluza <jkaluza@redhat.com> - 5.11-2
ee1fd2
- detect names of RPM packages
ee1fd2
- detect swap on ia64 architecture
ee1fd2
ee1fd2
* Mon Feb 27 2012 Jan Kaluza <jkaluza@redhat.com> - 5.11-1
ee1fd2
- fix #796130 - update to file-5.11
ee1fd2
- fix #796209 - recognize VDI images
ee1fd2
- fix #795709 - recognize QED images
ee1fd2
ee1fd2
* Wed Jan 18 2012 Jan Kaluza <jkaluza@redhat.com> - 5.10-5
ee1fd2
- fix detection of ASCII text files with setuid, setgid, or sticky bits
ee1fd2
ee1fd2
* Tue Jan 10 2012 Jan Kaluza <jkaluza@redhat.com> - 5.10-4
ee1fd2
- fix #772651 - decrease strength of newly added "C source" patterns
ee1fd2
ee1fd2
* Tue Jan 03 2012 Jan Kaluza <jkaluza@redhat.com> - 5.10-3
ee1fd2
- fix #771292 - do not show 'using regular magic file' warning for /etc/magic,
ee1fd2
  because this file is not supposed to be compiled
ee1fd2
ee1fd2
* Mon Jan 02 2012 Jan Kaluza <jkaluza@redhat.com> - 5.10-2
ee1fd2
- fix #770006 - detect tnef files
ee1fd2
ee1fd2
* Mon Jan 02 2012 Jan Kaluza <jkaluza@redhat.com> - 5.10-1
ee1fd2
- fix #771030 - update to file-5.10
ee1fd2
ee1fd2
* Mon Jan 02 2012 Jan Kaluza <jkaluza@redhat.com> - 5.09-3
ee1fd2
- fix #720321 - added /etc/magic config file to let users define their local
ee1fd2
  magic patterns
ee1fd2
ee1fd2
* Wed Oct 26 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.09-2
ee1fd2
- Rebuilt for glibc bug#747377
ee1fd2
ee1fd2
* Thu Sep 29 2011 Jan Kaluza <jkaluza@redhat.com> - 5.09-1
ee1fd2
- fix #739286 - update to file-5.09
ee1fd2
ee1fd2
* Thu Aug 04 2011 Jan Kaluza <jkaluza@redhat.com> - 5.08-1
ee1fd2
- fix #728181 - update to file-5.08
ee1fd2
- remove unused patches
ee1fd2
ee1fd2
* Tue Jun 14 2011 Jan Kaluza <jkaluza@redhat.com> - 5.07-5
ee1fd2
- fix #712991 - include RPM noarch in /usr/share/magic
ee1fd2
ee1fd2
* Thu Jun 09 2011 Jan Kaluza <jkaluza@redhat.com> - 5.07-4
ee1fd2
- fix #711843 - fix postscript detection
ee1fd2
ee1fd2
* Thu Jun 09 2011 Jan Kaluza <jkaluza@redhat.com> - 5.07-3
ee1fd2
- fix #709953 - add support for BIOS version detection
ee1fd2
ee1fd2
* Mon May 23 2011 Jan Kaluza <jkaluza@redhat.com> - 5.07-2
ee1fd2
- backported patches to fix 5.07 regressions
ee1fd2
- fix #706231 - fixed ZIP detection
ee1fd2
- fix #705183, #705499 - removed weak DOS device driver pattern
ee1fd2
ee1fd2
* Wed May 11 2011 Jan Kaluza <jkaluza@redhat.com> - 5.07-1
ee1fd2
- update to new upstream version 5.07
ee1fd2
- remove unused patches
ee1fd2
ee1fd2
* Tue Mar 01 2011 Jan Kaluza <jkaluza@redhat.com> - 5.05-4
ee1fd2
- fix #678458 - support for Python 3.2 compiled files
ee1fd2
ee1fd2
* Thu Feb 10 2011 Jan Kaluza <jkaluza@redhat.com> - 5.05-3
ee1fd2
- fix #676543 - improved TeX and LaTeX recognition
ee1fd2
- fix #676041 - detect all supported RPM architectures
ee1fd2
ee1fd2
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.05-2
ee1fd2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
ee1fd2
ee1fd2
* Tue Jan 18 2011 Jan Kaluza <jkaluza@redhat.com> - 5.05-1
ee1fd2
- fix #670319 - update to new upstream release 5.05
ee1fd2
- removed useless patches
ee1fd2
ee1fd2
* Mon Jan 10 2011 Jan Kaluza <jkaluza@redhat.com> - 5.04-18
ee1fd2
- fix #668304 - support for com32r programs
ee1fd2
- distinguish between GFS2 and GFS1 filesystems
ee1fd2
ee1fd2
* Wed Nov 24 2010 Jan Kaluza <jkaluza@redhat.com> - 5.04-17
ee1fd2
- fix #656395 - "string" magic directive supports longer strings
ee1fd2
ee1fd2
* Wed Aug 25 2010 Jan Kaluza <jkaluza@redhat.com> - 5.04-16
ee1fd2
- fix #637785 - support for zip64 format
ee1fd2
ee1fd2
* Tue Aug 24 2010 Jan Kaluza <jkaluza@redhat.com> - 5.04-15
ee1fd2
- fix #626591 - support for WebM format
ee1fd2
ee1fd2
* Thu Aug 12 2010 Jan Kaluza <jkaluza@redhat.com> - 5.04-14
ee1fd2
- fix #623602 - support for Python 2.7 compiled files
ee1fd2
ee1fd2
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 5.04-13
ee1fd2
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
ee1fd2
ee1fd2
* Thu Jul 15 2010 Jan Kaluza <jkaluza@redhat.com> 5.04-12
ee1fd2
- fix #599695 - try to get "from" attribute for ELF binaries
ee1fd2
  only from core dumps.
ee1fd2
ee1fd2
* Thu Jul 08 2010 Jan Kaluza <jkaluza@redhat.com> 5.04-11
ee1fd2
- added docs for file-libs
ee1fd2
ee1fd2
* Tue Jun 29 2010 Jan Kaluza <jkaluza@redhat.com> 5.04-10
ee1fd2
- fix #608922 - updated z-machine magic
ee1fd2
ee1fd2
* Fri Jun 11 2010 Jan Kaluza <jkaluza@redhat.com> 5.04-9
ee1fd2
- removed excessive HTML/SGML "magic patterns" (#603040)
ee1fd2
ee1fd2
* Wed Apr 14 2010 Daniel Novotny <dnovotny@redhat.com> 5.04-8
ee1fd2
- fix #580046 - the file command returns zero exit code 
ee1fd2
                even in case of unexisting file being tested
ee1fd2
ee1fd2
* Wed Apr 07 2010 Daniel Novotny <dnovotny@redhat.com> 5.04-7
ee1fd2
- fix #566305 - "file" may trim too much of command line from core file
ee1fd2
ee1fd2
* Wed Mar 24 2010 Daniel Novotny <dnovotny@redhat.com> 5.04-6
ee1fd2
- fix #550212 - 'file' gives bad meta-data for squashfs-4.0 
ee1fd2
ee1fd2
* Wed Mar 24 2010 Daniel Novotny <dnovotny@redhat.com> 5.04-5
ee1fd2
- fix #575184 - file command does not print separator 
ee1fd2
  when --print0 option is used
ee1fd2
ee1fd2
* Thu Mar 11 2010 Daniel Novotny <dnovotny@redhat.com> 5.04-4
ee1fd2
- fix #570785 - "file" misidentifies filesystem type
ee1fd2
ee1fd2
* Tue Feb 09 2010 Daniel Novotny <dnovotny@redhat.com> 5.04-3
ee1fd2
- fix #562840 -  [PATCH] Add matches for ruby modules
ee1fd2
ee1fd2
* Thu Jan 28 2010 Daniel Novotny <dnovotny@redhat.com> 5.04-2
ee1fd2
- fix #533245 -  segfaults on star.ulaw
ee1fd2
ee1fd2
* Mon Jan 25 2010 Daniel Novotny <dnovotny@redhat.com> 5.04-1
ee1fd2
- update to new upstream release 5.04
ee1fd2
ee1fd2
* Mon Jan 18 2010 Daniel Novotny <dnovotny@redhat.com> 5.03-18
ee1fd2
- static library moved to new "-static" subpackage (#556048)
ee1fd2
ee1fd2
* Fri Dec 25 2009 Robert Scheck <robert@fedoraproject.org> 5.03-17
ee1fd2
- removed broken install of example.py (%%doc is much enough)
ee1fd2
ee1fd2
* Mon Nov 30 2009 Daniel Novotny <dnovotny@redhat.com> 5.03-16
ee1fd2
- fixed the patch for multilib (#515767)
ee1fd2
ee1fd2
* Tue Nov 24 2009 Daniel Novotny <dnovotny@redhat.com> 5.03-15
ee1fd2
- BuildRequires: autoconf, automake
ee1fd2
ee1fd2
* Tue Nov 24 2009 Daniel Novotny <dnovotny@redhat.com> 5.03-14
ee1fd2
- BuildRequires: automake because of the Makefile.am patch
ee1fd2
ee1fd2
* Fri Nov 13 2009 Daniel Novotny <dnovotny@redhat.com> 5.03-13
ee1fd2
- fix #537324 -  update spec conditional for rhel
ee1fd2
ee1fd2
* Thu Nov 05 2009 Daniel Novotny <dnovotny@redhat.com> 5.03-12
ee1fd2
- fix #533151 -  file command doesn't recognize deltaisos or rpm-only deltarpms
ee1fd2
ee1fd2
* Tue Oct 27 2009 Daniel Novotny <dnovotny@redhat.com> 5.03-11
ee1fd2
- fix #531082 -  RFE: add detection of Python 3 bytecode
ee1fd2
- fix #531127 -  `file' command does not recognize mime type `image/vnd.djvu'
ee1fd2
ee1fd2
* Wed Oct 21 2009 Daniel Novotny <dnovotny@redhat.com> 5.03-10
ee1fd2
- fix #530083 -  file -s is not able to detect swap signature on ppc
ee1fd2
ee1fd2
* Tue Aug 25 2009 Daniel Novotny <dnovotny@redhat.com> 5.03-9
ee1fd2
- fix #515767 -  multilib: file /usr/share/misc/magic.mgc conflicts
ee1fd2
ee1fd2
* Thu Aug 06 2009 Daniel Novotny <dnovotny@redhat.com> 5.03-8
ee1fd2
- rebuild for #515767 -  multilib: file /usr/share/misc/magic.mgc conflicts
ee1fd2
ee1fd2
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.03-7
ee1fd2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
ee1fd2
ee1fd2
* Thu Jul 23 2009 Daniel Novotny <dnovotny@redhat.com> 5.03-6
ee1fd2
- fix #510429 -  file is confused by string "/* (if any) */" 
ee1fd2
       in C header and claims it "Lisp/Scheme program text"
ee1fd2
ee1fd2
* Wed Jul 22 2009 Daniel Novotny <dnovotny@redhat.com> 5.03-5
ee1fd2
- #513079 -  RFE: file - recognize xfs metadump images
ee1fd2
ee1fd2
* Fri Jul 10 2009 Adam Jackson <ajax@redhat.com> 5.03-4
ee1fd2
- Clean up %%description.
ee1fd2
ee1fd2
* Tue Jun 16 2009 Daniel Novotny <dnovotny@redhat.com> 5.03-4
ee1fd2
- one more PostScript font magic added (#505762),
ee1fd2
  updated font patch
ee1fd2
ee1fd2
* Tue Jun 16 2009 Daniel Novotny <dnovotny@redhat.com> 5.03-3
ee1fd2
- added magic for three font issues (PostScript fonts)
ee1fd2
  (#505758, #505759, #505765)
ee1fd2
ee1fd2
* Thu May 14 2009 Daniel Novotny <dnovotny@redhat.com> 5.03-2
ee1fd2
- fix #500739 - Disorganized magic* file locations in file-libs
ee1fd2
ee1fd2
* Mon May 11 2009 Daniel Novotny <dnovotny@redhat.com> 5.03-1
ee1fd2
- new upstream version
ee1fd2
ee1fd2
* Tue May 05 2009 Daniel Novotny <dnovotny@redhat.com> 5.02-1
ee1fd2
- new upstream version; drop upstreamed patches; this fixes #497913
ee1fd2
ee1fd2
* Wed Apr 29 2009 Daniel Novotny <dnovotny@redhat.com> 5.00-8
ee1fd2
- fix #498036 - Elang JAM file definition breaks detection of postscript-files
ee1fd2
ee1fd2
* Mon Apr 20 2009 Daniel Novotny <dnovotny@redhat.com> 5.00-7
ee1fd2
- fix previous patch:
ee1fd2
  the name of the format is a bit different (MDUMP -> MDMP)
ee1fd2
ee1fd2
* Fri Apr 17 2009 Daniel Novotny <dnovotny@redhat.com> 5.00-6
ee1fd2
- fix #485835 (MDUMP files)
ee1fd2
ee1fd2
* Mon Mar 23 2009 Daniel Novotny <dnovotny@redhat.com> 5.00-5
ee1fd2
- added two font definitions (#491594, #491595)
ee1fd2
  and a fix for file descriptor leak when MAGIC_COMPRESS used (#491596)
ee1fd2
ee1fd2
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.00-4
ee1fd2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
ee1fd2
ee1fd2
* Mon Feb 23 2009 Daniel Novotny <dnovotny@redhat.com> 5.00-3
ee1fd2
- fix #486105 -  file-5.00-2.fc11 fails to recognise a file 
ee1fd2
  (and makes rpmbuild fail)
ee1fd2
ee1fd2
* Mon Feb 16 2009 Daniel Novotny <dnovotny@redhat.com> 5.00-2
ee1fd2
- fix #485141 -  rpm failed while checking a French Word file
ee1fd2
ee1fd2
* Mon Feb 09 2009 Daniel Novotny <dnovotny@redhat.com> 5.00-1
ee1fd2
- upgrade to 5.00
ee1fd2
- drop upstreamed patches, rebase remaining patch
ee1fd2
ee1fd2
* Wed Jan 14 2009 Daniel Novotny <dnovotny@redhat.com> 4.26-9
ee1fd2
- fix #476655 detect JPEG-2000 Code Stream Bitmap
ee1fd2
ee1fd2
* Mon Jan 12 2009 Daniel Novotny <dnovotny@redhat.com> 4.26-8
ee1fd2
- fix #479300 - add btrfs filesystem magic
ee1fd2
ee1fd2
* Mon Dec 15 2008 Daniel Novotny <dnovotny@redhat.com> 4.26-7
ee1fd2
- fix the LaTex issue in bz#474156
ee1fd2
ee1fd2
* Thu Dec 04 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 4.26-6
ee1fd2
- Rebuild for Python 2.6
ee1fd2
ee1fd2
* Thu Dec 04 2008 Daniel Novotny <dnovotny@redhat.com> - 4.26-5
ee1fd2
- fix #470811 - Spurious perl auto-requires
ee1fd2
ee1fd2
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 4.26-4
ee1fd2
- Rebuild for Python 2.6
ee1fd2
ee1fd2
* Thu Oct 16 2008 Daniel Novotny <dnovotny@redhat.com> 4.26-3
ee1fd2
- fix #465994 file --mime-encoding seems broken
ee1fd2
ee1fd2
* Tue Oct 07 2008 Daniel Novotny <dnovotny@redhat.com> 4.26-2
ee1fd2
- fix #463809: rpmbuild rpmfcClassify: Assertion fails on some binary files
ee1fd2
  (false positive test on "DOS device driver" crashed file(1)
ee1fd2
   and rpmbuild(8) failed)  
ee1fd2
ee1fd2
* Mon Sep 15 2008 Daniel Novotny <dnovotny@redhat.com> 4.26-1
ee1fd2
- new upstream version: fixes #462064
ee1fd2
ee1fd2
* Mon Jul 21 2008 Tomas Smetana <tsmetana@redhat.com> - 4.25-1
ee1fd2
- new upstream version; drop upstreamed patches
ee1fd2
ee1fd2
* Fri Jun 06 2008 Tomas Smetana <tsmetana@redhat.com> - 4.24-4
ee1fd2
- add GFS2 filesystem magic; thanks to Eric Sandeen
ee1fd2
- add LVM snapshots magic (#449755); thanks to Jason Farrell
ee1fd2
ee1fd2
* Wed Jun 04 2008 Tomas Smetana <tsmetana@redhat.com> - 4.24-3
ee1fd2
- drop patches that do nothing in recent build system
ee1fd2
- create the text magic file during installation
ee1fd2
ee1fd2
* Tue Jun 03 2008 Tomas Smetana <tsmetana@redhat.com> - 4.24-2
ee1fd2
- rebuild because of egg-info
ee1fd2
ee1fd2
* Tue Jun 03 2008 Tomas Smetana <tsmetana@redhat.com> - 4.24-1
ee1fd2
- new upstream version
ee1fd2
ee1fd2
* Tue Mar 11 2008 Tomas Smetana <tsmetana@redhat.com> - 4.23-5
ee1fd2
- fix EFI detection patch
ee1fd2
ee1fd2
* Fri Feb 01 2008 Tomas Smetana <tsmetana@redhat.com> - 4.23-4
ee1fd2
- fix mismatching gzip files and text files as animations
ee1fd2
ee1fd2
* Fri Feb 01 2008 Tomas Smetana <tsmetana@redhat.com> - 4.23-3
ee1fd2
- fix #430927 - detect ext4 filesystems
ee1fd2
ee1fd2
* Thu Jan 31 2008 Tomas Smetana <tsmetana@redhat.com> - 4.23-2
ee1fd2
- fix #430952 - wrong handling of ELF binaries
ee1fd2
ee1fd2
* Tue Jan 29 2008 Tomas Smetana <tsmetana@redhat.com> - 4.23-1
ee1fd2
- new upstream version; update patches; drop unused patches
ee1fd2
ee1fd2
* Thu Jan 24 2008 Tomas Smetana <tsmetana@redhat.com> - 4.21-5
ee1fd2
- build a separate python-magic package; thanks to Terje Rosten
ee1fd2
ee1fd2
* Thu Dec 06 2007 Tomas Smetana <tsmetana@redhat.com> - 4.21-4
ee1fd2
- add PE32/PE32+ magic
ee1fd2
ee1fd2
* Wed Aug 15 2007 Martin Bacovsky <mbacovsk@redhat.com> - 4.21-3
ee1fd2
- resolves: #172015: no longer reports filename of crashed app when run on core files.
ee1fd2
- resolves: #249578: Weird output from "file -i"
ee1fd2
- resolves: #234817: file reports wrong filetype for microsoft word file
ee1fd2
ee1fd2
* Wed Jul  4 2007 Martin Bacovsky <mbacovsk@redhat.com> - 4.21-2
ee1fd2
- resolves: #246700: RPM description isn't related to product
ee1fd2
- resolves: #238789: file-devel depends on %%{version}
ee1fd2
  but not on %%{version}-%%{release}
ee1fd2
- resolves: #235267: for core files, file doesn't display the executable name
ee1fd2
ee1fd2
* Tue May 29 2007 Martin Bacovsky <mbacovsk@redhat.com> - 4.21-1
ee1fd2
- upgrade to new upstream 4.21
ee1fd2
- resolves: #241034: CVE-2007-2799 file integer overflow
ee1fd2
ee1fd2
* Wed Mar  7 2007 Martin Bacovsky <mbacovsk@redhat.com> - 4.20-1
ee1fd2
- upgrade to new upstream 4.20
ee1fd2
ee1fd2
* Tue Feb 20 2007 Martin Bacovsky <mbacovsk@redhat.com> - 4.19-4
ee1fd2
- rpath in file removal
ee1fd2
ee1fd2
* Mon Feb 19 2007 Martin Bacovsky <mbacovsk@redhat.com> - 4.19-3
ee1fd2
- Resolves: #225750 - Merge Review: file
ee1fd2
ee1fd2
* Thu Jan 25 2007 Martin Bacovsky <mbacovsk@redhat.com> - 4.19-2
ee1fd2
- Resolves: #223297 - file does not recognize OpenOffice "native" formats
ee1fd2
- Resolves: #224344 - Magic rules should be in file-libs
ee1fd2
ee1fd2
* Tue Jan  9 2007 Martin Bacovsky <mbacovsk@redhat.com> - 4.19-1
ee1fd2
- Resolves: #208880 - Pointless file(1) error message while detecting ELF 64-bit file
ee1fd2
    thanks to <jakub@redhat.com> for patch
ee1fd2
- Resolves: #214992 - file-devel should own %%_includedir/* %%_libdir/lib*.so
ee1fd2
- Resolves: #203548 - a -devel package should be split out for libmagic
ee1fd2
- upgrade to new upstream 4.19
ee1fd2
- patch revision and cleaning
ee1fd2
- split package to file, file-devel and file-libs
ee1fd2
ee1fd2
* Wed Aug 23 2006 Martin Bacovsky <mbacovsky@redhat.com> - 4.17-8
ee1fd2
- fix recognition of perl script with embed awk (#203610) 
ee1fd2
ee1fd2
* Fri Aug 18 2006 Martin Bacovsky <mbacovsk@redhat.com> - 4.17-7
ee1fd2
- fix recognition of bash script with embed awk (#202185)
ee1fd2
ee1fd2
* Thu Aug 03 2006 Martin Bacovsky <mbacovsk@redhat.com> - 4.17-6
ee1fd2
- fix gziped empty file (#72986)
ee1fd2
ee1fd2
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 4.17-5.1
ee1fd2
- rebuild
ee1fd2
ee1fd2
* Mon Jul 10 2006 Radek Vokal <rvokal@redhat.com> 4.17-5
ee1fd2
- fix powerpoint mine (#190373) <vonsch@gmail.com>
ee1fd2
ee1fd2
* Wed May 24 2006 Radek Vokal <rvokal@redhat.com> 4.17-4
ee1fd2
- /usr/share/file is owned by package (#192858)
ee1fd2
- fix magic for Clamav files (#192406)
ee1fd2
ee1fd2
* Fri Apr 21 2006 Radek Vokal <rvokal@redhat.com> 4.17-3
ee1fd2
- add support for OCFS or ASM (#189017)
ee1fd2
ee1fd2
* Tue Mar 14 2006 Radek Vokal <rvokal@redhat.com> 4.17-2
ee1fd2
- fix segfault when compiling magic
ee1fd2
- add check for wctype.h
ee1fd2
- fix for flac and mp3 files
ee1fd2
ee1fd2
* Mon Mar 13 2006 Radek Vokal <rvokal@redhat.com> 4.17-1
ee1fd2
- upgrade to file-4.17, patch clean-up
ee1fd2
ee1fd2
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 4.16-6.2
ee1fd2
- bump again for double-long bug on ppc(64)
ee1fd2
ee1fd2
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 4.16-6.1
ee1fd2
- rebuilt for new gcc4.1 snapshot and glibc changes
ee1fd2
ee1fd2
* Sat Feb 04 2006 Radek Vokal <rvokal@redhat.com> 4.16-6
ee1fd2
- xen patch, recognizes Xen saved domain
ee1fd2
ee1fd2
* Fri Jan 13 2006 Radek Vokal <rvokal@redhat.com> 4.16-5
ee1fd2
- fix for 64bit arrays
ee1fd2
ee1fd2
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
ee1fd2
- rebuilt
ee1fd2
ee1fd2
* Tue Nov 29 2005 Radek Vokal <rvokal@redhat.com> - 4.16-4
ee1fd2
- printf utf8 filenames and don't use isprint() (#174348)
ee1fd2
ee1fd2
* Tue Nov 08 2005 Radek Vokal <rvokal@redhat.com> - 4.16-3
ee1fd2
- remove .la files (#172633)
ee1fd2
ee1fd2
* Mon Oct 31 2005 Radek Vokal <rvokal@redhat.com> - 4.16-2
ee1fd2
- fix core files output, show "from" (#172015)
ee1fd2
ee1fd2
* Tue Oct 18 2005 Radek Vokal <rvokal@redhat.com> - 4.16-1
ee1fd2
- upgrade to upstream
ee1fd2
ee1fd2
* Mon Oct 03 2005 Radek Vokal <rvokal@redhat.com> - 4.15-4
ee1fd2
- file output for Berkeley DB gains Cracklib (#168917)
ee1fd2
ee1fd2
* Mon Sep 19 2005 Radek Vokal <rvokal@redhat.com> - 4.15-3
ee1fd2
- small fix in previously added patch, now it works for multiple params
ee1fd2
ee1fd2
* Mon Sep 19 2005 Radek Vokal <rvokal@redhat.com> - 4.15-2
ee1fd2
- print xxx-style only once (#168617)
ee1fd2
ee1fd2
* Tue Aug 09 2005 Radek Vokal <rvokal@redhat.com> - 4.15-1
ee1fd2
- upgrade to upstream 
ee1fd2
ee1fd2
* Tue Aug 09 2005 Radek Vokal <rvokal@redhat.com> - 4.14-4
ee1fd2
- mime for mpeg and aac files fixed (#165323)
ee1fd2
ee1fd2
* Fri Aug 05 2005 Radek Vokal <rvokal@redhat.com> - 4.14-3
ee1fd2
- mime for 3ds files removed, conflicts with text files (#165165)
ee1fd2
ee1fd2
* Fri Jul 22 2005 Radek Vokal <rvokal@redhat.com> - 4.14-2
ee1fd2
- fixed mime types recognition (#163866) <mandriva.org>
ee1fd2
ee1fd2
* Thu Jul 14 2005 Radek Vokal <rvokal@redhat.com> - 4.14-1
ee1fd2
- sync with upstream, patch clean-up
ee1fd2
ee1fd2
* Mon Jul 04 2005 Radek Vokal <rvokal@redhat.com> - 4.13-5
ee1fd2
- fixed reiserfs check (#162378)
ee1fd2
ee1fd2
* Mon Apr 11 2005 Radek Vokal <rvokal@redhat.com> - 4.13-4
ee1fd2
- check Cyrus files before Apple Quicktime movies (#154342) 
ee1fd2
ee1fd2
* Mon Mar 07 2005 Radek Vokal <rvokal@redhat.com> - 4.13-3
ee1fd2
- check for shared libs before fs dump files (#149868)
ee1fd2
ee1fd2
* Fri Mar 04 2005 Radek Vokal <rvokal@redhat.com> - 4.13-2
ee1fd2
- gcc4 rebuilt
ee1fd2
ee1fd2
* Tue Feb 15 2005 Radek Vokal <rvokal@redhat.com> - 4.13-1
ee1fd2
- new version, fixing few bugs, patch clean-up
ee1fd2
- consistent output for bzip files (#147440)
ee1fd2
ee1fd2
* Mon Jan 24 2005 Radek Vokal <rvokal@redhat.com> - 4.12-3
ee1fd2
- core64 patch fixing output on core files (#145354) <kzak@redhat.com>
ee1fd2
- minor change in magic patch
ee1fd2
ee1fd2
* Mon Jan 03 2005 Radek Vokal <rvokal@redhat.com> - 4.12-2
ee1fd2
- fixed crashes in threaded environment (#143871) <arjanv@redhat.com>
ee1fd2
ee1fd2
* Thu Dec 02 2004 Radek Vokal <rvokal@redhat.com> - 4.12-1
ee1fd2
- upgrade to file-4.12
ee1fd2
- removed Tim's patch, tuned magic patch
ee1fd2
ee1fd2
* Sat Nov 20 2004 Miloslav Trmac <mitr@redhat.com> - 4.10-4
ee1fd2
- Convert libmagic.3 to UTF-8
ee1fd2
ee1fd2
* Thu Nov 18 2004 Radek Vokal <rvokal@redhat.com> 4.10-3
ee1fd2
- set of patches from debian.org
ee1fd2
- new magic types (#128763)
ee1fd2
- zlib added to BuildReq (#125294)
ee1fd2
ee1fd2
* Tue Oct 12 2004 Tim Waugh <twaugh@redhat.com> 4.10-2
ee1fd2
- Fixed occasional segfault (bug #131892).
ee1fd2
ee1fd2
* Wed Aug 11 2004 Radek Vokal <rvokal@redhat.com>
ee1fd2
- zlib patch deleted, note patch deleted, rh patch updated, debian patch updated
ee1fd2
- upgrade to file-4.10
ee1fd2
ee1fd2
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
ee1fd2
- rebuilt
ee1fd2
ee1fd2
* Mon May 10 2004 Jakub Jelinek <jakub@redhat.com>
ee1fd2
- fix ELF note handling (#109495)
ee1fd2
ee1fd2
* Tue Mar 23 2004 Karsten Hopp <karsten@redhat.de> 4.07-3 
ee1fd2
- add docs (#115966)
ee1fd2
ee1fd2
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
ee1fd2
- rebuilt
ee1fd2
ee1fd2
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
ee1fd2
- rebuilt
ee1fd2
ee1fd2
* Sun Jan 18 2004 Jeff Johnson <jbj@jbj.org> 4.07-1
ee1fd2
- upgrade to 4.07.
ee1fd2
- deal gracefully with unreadable files (#113207).
ee1fd2
- detect PO files (from Debian).
ee1fd2
ee1fd2
* Tue Dec 16 2003 Jeff Johnson <jbj@jbj.org> 4.06-1
ee1fd2
- upgrade to file-4.06.
ee1fd2
ee1fd2
* Mon Nov 10 2003 Tim Waugh <twaugh@redhat.com> 4.02-4
ee1fd2
- Minimal fix for busy loop problem (bug #109495).
ee1fd2
ee1fd2
* Mon Oct 13 2003 Jeff Johnson <jbj@jbj.org> 4.05-1
ee1fd2
- upgrade to 4.05.
ee1fd2
ee1fd2
* Thu Oct  9 2003 Jeff Johnson <jbj@jbj.org> 4.02-3
ee1fd2
- use zlib rather than exec'ing gzip.
ee1fd2
ee1fd2
-* Thu Aug 28 2003 Dan Walsh <dwalsh@redhat.com>
ee1fd2
-- Add Selinux support.
ee1fd2
ee1fd2
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
ee1fd2
- rebuilt
ee1fd2
ee1fd2
* Sat May 24 2003 Florian La Roche <Florian.LaRoche@redhat.de>
ee1fd2
- add ldconfig to post/postun
ee1fd2
ee1fd2
* Mon Apr 21 2003 Jeff Johnson <jbj@redhat.com> 4.02-1
ee1fd2
- upgrade to file-4.02.
ee1fd2
ee1fd2
* Thu Feb 27 2003 Jeff Johnson <jbj@redhat.com> 3.39-9
ee1fd2
- check size read from elf header (#85297).
ee1fd2
ee1fd2
* Tue Feb 18 2003 Matt Wilson <msw@redhat.com> 3.39-8
ee1fd2
- add FHS compatibility symlink from /usr/share/misc/magic -> ../magic
ee1fd2
  (#84509)
ee1fd2
ee1fd2
* Fri Feb 14 2003 Jeff Johnson <jbj@redhat.com> 3.39-7
ee1fd2
- the "real" fix to the vorbis/ogg magic details (#82810).
ee1fd2
ee1fd2
* Mon Jan 27 2003 Jeff Johnson <jbj@redhat.com> 3.39-6
ee1fd2
- avoid vorbis/ogg magic details (#82810).
ee1fd2
ee1fd2
* Wed Jan 22 2003 Tim Powers <timp@redhat.com> 3.39-5
ee1fd2
- rebuilt
ee1fd2
ee1fd2
* Sun Jan 12 2003 Nalin Dahyabhai <nalin@redhat.com> 3.39-4
ee1fd2
- PT_NOTE, take 3
ee1fd2
ee1fd2
* Fri Jan 10 2003 Nalin Dahyabhai <nalin@redhat.com> 3.39-3
ee1fd2
- don't barf in ELF headers with align = 0
ee1fd2
ee1fd2
* Tue Jan  7 2003 Nalin Dahyabhai <nalin@redhat.com> 3.39-2
ee1fd2
- don't get lost when looking at PT_NOTE sections
ee1fd2
ee1fd2
* Sat Oct 26 2002 Jeff Johnson <jbj@redhat.com> 3.39-1
ee1fd2
- update to 3.39.
ee1fd2
ee1fd2
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
ee1fd2
- automated rebuild
ee1fd2
ee1fd2
* Thu May 23 2002 Tim Powers <timp@redhat.com>
ee1fd2
- automated rebuild
ee1fd2
ee1fd2
* Mon May  6 2002 Trond Eivind Glomsrød <teg@redhat.com> 3.37-6
ee1fd2
- Don't use an old magic.mime 
ee1fd2
- Add mng detection (#64229)
ee1fd2
ee1fd2
* Tue Feb 26 2002 Trond Eivind Glomsrød <teg@redhat.com> 3.37-5
ee1fd2
- Rebuild
ee1fd2
ee1fd2
* Mon Jan 14 2002 Trond Eivind Glomsrød <teg@redhat.com> 3.37-4
ee1fd2
- Fix missing include of <stdint.h> (#58209)
ee1fd2
ee1fd2
* Tue Dec 11 2001 Trond Eivind Glomsrød <teg@redhat.com> 3.37-2
ee1fd2
- Add CFLAGS to handle large files (#53576)
ee1fd2
ee1fd2
* Mon Dec 10 2001 Trond Eivind Glomsrød <teg@redhat.com> 3.37-1
ee1fd2
- 3.37
ee1fd2
- s/Copyright/License/
ee1fd2
- build with --enable-fsect-man5, drop patch
ee1fd2
- disable two old patches
ee1fd2
ee1fd2
* Fri Jul 06 2001 Florian La Roche <Florian.LaRoche@redhat.de>
ee1fd2
- revert a patch to Magdir/elf, which breaks many libtool scripts
ee1fd2
  in several rpm packages
ee1fd2
ee1fd2
* Mon Jun 25 2001 Crutcher Dunnavant <crutcher@redhat.com>
ee1fd2
- iterate to 3.35
ee1fd2
ee1fd2
* Sun Jun 24 2001 Elliot Lee <sopwith@redhat.com>
ee1fd2
- Bump release + rebuild.
ee1fd2
ee1fd2
* Sun Nov 26 2000 Jeff Johnson <jbj@redhat.com>
ee1fd2
- update to 3.33.
ee1fd2
ee1fd2
* Mon Aug 14 2000 Preston Brown <pbrown@redhat.com>
ee1fd2
- Bill made the patch but didn't apply it. :)
ee1fd2
ee1fd2
* Mon Aug 14 2000 Bill Nottingham <notting@redhat.com>
ee1fd2
- 'ASCII text', not 'ASCII test' (#16168)
ee1fd2
ee1fd2
* Mon Jul 31 2000 Jeff Johnson <jbj@redhat.com>
ee1fd2
- fix off-by-1 error when creating filename for use with -i.
ee1fd2
- include a copy of GNOME /etc/mime-types in %%{_datadir}/magic.mime (#14741).
ee1fd2
ee1fd2
* Sat Jul 22 2000 Jeff Johnson <jbj@redhat.com>
ee1fd2
- install magic as man5/magic.5 with other formats (#11172).
ee1fd2
ee1fd2
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
ee1fd2
- automatic rebuild
ee1fd2
ee1fd2
* Wed Jun 14 2000 Jeff Johnson <jbj@redhat.com>
ee1fd2
- FHS packaging.
ee1fd2
ee1fd2
* Fri Apr 14 2000 Bernhard Rosenkraenzer <bero@redhat.com>
ee1fd2
- 3.30
ee1fd2
ee1fd2
* Wed Feb 16 2000 Cristian Gafton <gafton@redhat.com>
ee1fd2
- add ia64 patch from rth
ee1fd2
ee1fd2
* Mon Feb  7 2000 Bill Nottingham <notting@redhat.com>
ee1fd2
- handle compressed manpages
ee1fd2
- update to 3.28
ee1fd2
ee1fd2
* Mon Aug 23 1999 Jeff Johnson <jbj@redhat.com>
ee1fd2
- identify ELF stripped files correctly (#4665).
ee1fd2
- use SPARC (not sparc) consistently throughout (#4665).
ee1fd2
- add entries for MS Office files (#4665).
ee1fd2
ee1fd2
* Thu Aug 12 1999 Jeff Johnson <jbj@redhat.com>
ee1fd2
- diddle magic so that *.tfm files are identified correctly.
ee1fd2
ee1fd2
* Tue Jul  6 1999 Jeff Johnson <jbj@redhat.com>
ee1fd2
- update to 3.27.
ee1fd2
ee1fd2
* Mon Mar 22 1999 Preston Brown <pbrown@redhat.com>
ee1fd2
- experimental support for realmedia files added
ee1fd2
ee1fd2
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> 
ee1fd2
- auto rebuild in the new build environment (release 5)
ee1fd2
ee1fd2
* Fri Mar 19 1999 Jeff Johnson <jbj@redhat.com>
ee1fd2
- strip binary.
ee1fd2
ee1fd2
* Fri Nov 27 1998 Jakub Jelinek <jj@ultra.linux.cz>
ee1fd2
- add SPARC V9 magic.
ee1fd2
ee1fd2
* Tue Nov 10 1998 Jeff Johnson <jbj@redhat.com>
ee1fd2
- update to 3.26.
ee1fd2
ee1fd2
* Mon Aug 24 1998 Jeff Johnson <jbj@redhat.com>
ee1fd2
- update to 3.25.
ee1fd2
- detect gimp XCF versions.
ee1fd2
ee1fd2
* Thu May 07 1998 Prospector System <bugs@redhat.com>
ee1fd2
- translations modified for de, fr, tr
ee1fd2
ee1fd2
* Wed Apr 08 1998 Erik Troan <ewt@redhat.com>
ee1fd2
- updated to 3.24
ee1fd2
- buildrooted
ee1fd2
ee1fd2
* Mon Jun 02 1997 Erik Troan <ewt@redhat.com>
ee1fd2
- built against glibc
ee1fd2
ee1fd2
* Mon Mar 31 1997 Erik Troan <ewt@redhat.com>
ee1fd2
- Fixed problems caused by 64 bit time_t.
ee1fd2
ee1fd2
* Thu Mar 06 1997 Michael K. Johnson <johnsonm@redhat.com>
ee1fd2
- Improved recognition of Linux kernel images.