Blame SPECS/libarchive.spec

dbf002
%bcond_without check
dbf002
dbf002
Name:           libarchive
dbf002
Version:        3.3.2
2e421e
Release:        8%{?dist}
dbf002
Summary:        A library for handling streaming archive formats
dbf002
dbf002
License:        BSD
dbf002
URL:            http://www.libarchive.org/
dbf002
Source0:        http://www.libarchive.org/downloads/%{name}-%{version}.tar.gz
dbf002
006282
Patch0:        libarchive-3.1.2-CVE-2017-14503.patch
006282
Patch1:        libarchive-3.1.2-CVE-2019-1000019.patch
006282
Patch2:        libarchive-3.1.2-CVE-2019-1000020.patch
006282
Patch3:        libarchive-3.3.2-CVE-2018-1000878.patch
006282
Patch4:        libarchive-3.3.2-CVE-2018-1000877.patch
006282
Patch5:        fix-use-after-free-in-delayed-newc.patch
006282
Patch6:        fix-few-obvious-resource-leaks-covscan.patch
2e421e
Patch7:        libarchive-3.3.2-CVE-2019-18408.patch
006282
dbf002
BuildRequires:  gcc
dbf002
BuildRequires:  bison
dbf002
BuildRequires:  sharutils
dbf002
BuildRequires:  zlib-devel
dbf002
BuildRequires:  bzip2-devel
dbf002
BuildRequires:  xz-devel
dbf002
BuildRequires:  lzo-devel
dbf002
BuildRequires:  e2fsprogs-devel
dbf002
BuildRequires:  libacl-devel
dbf002
BuildRequires:  libattr-devel
dbf002
BuildRequires:  openssl-devel
dbf002
BuildRequires:  libxml2-devel
dbf002
BuildRequires:  lz4-devel
dbf002
BuildRequires:  automake
dbf002
dbf002
dbf002
%description
dbf002
Libarchive is a programming library that can create and read several different
dbf002
streaming archive formats, including most popular tar variants, several cpio
dbf002
formats, and both BSD and GNU ar variants. It can also write shar archives and
dbf002
read ISO9660 CDROM images and ZIP archives.
dbf002
dbf002
dbf002
%package devel
dbf002
Summary:        Development files for %{name}
dbf002
Requires:       %{name}%{?_isa} = %{version}-%{release}
dbf002
dbf002
%description devel
dbf002
The %{name}-devel package contains libraries and header files for
dbf002
developing applications that use %{name}.
dbf002
dbf002
dbf002
%package -n bsdtar
dbf002
Summary:        Manipulate tape archives
dbf002
Requires:       %{name}%{?_isa} = %{version}-%{release}
dbf002
dbf002
%description -n bsdtar
dbf002
The bsdtar package contains standalone bsdtar utility split off regular
dbf002
libarchive packages.
dbf002
dbf002
dbf002
%package -n bsdcpio
dbf002
Summary:        Copy files to and from archives
dbf002
Requires:       %{name}%{?_isa} = %{version}-%{release}
dbf002
dbf002
%description -n bsdcpio
dbf002
The bsdcpio package contains standalone bsdcpio utility split off regular
dbf002
libarchive packages.
dbf002
dbf002
dbf002
%package -n bsdcat
dbf002
Summary:        Expand files to standard output
dbf002
Requires:       %{name}%{?_isa} = %{version}-%{release}
dbf002
dbf002
%description -n bsdcat
dbf002
The bsdcat program typically takes a filename as an argument or reads standard
dbf002
input when used in a pipe.  In both cases decompressed data it written to
dbf002
standard output.
dbf002
dbf002
dbf002
%prep
dbf002
%autosetup -p1
dbf002
dbf002
dbf002
%build
dbf002
%configure --disable-static --disable-rpath
dbf002
# remove rpaths
dbf002
sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
dbf002
sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
dbf002
dbf002
make %{?_smp_mflags}
dbf002
dbf002
dbf002
%install
dbf002
make install DESTDIR=$RPM_BUILD_ROOT
dbf002
find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
dbf002
dbf002
# rhbz#1294252
dbf002
replace ()
dbf002
{
dbf002
    filename=$1
dbf002
    file=`basename "$filename"`
dbf002
    binary=${file%%.*}
dbf002
    pattern=${binary##bsd}
dbf002
dbf002
    awk "
dbf002
        # replace the topic
dbf002
        /^.Dt ${pattern^^} 1/ {
dbf002
            print \".Dt ${binary^^} 1\";
dbf002
            next;
dbf002
        }
dbf002
        # replace the first occurence of \"$pattern\" by \"$binary\"
dbf002
        !stop && /^.Nm $pattern/ {
dbf002
            print \".Nm $binary\" ;
dbf002
            stop = 1 ;
dbf002
            next;
dbf002
        }
dbf002
        # print remaining lines
dbf002
        1;
dbf002
    " "$filename" > "$filename.new"
dbf002
    mv "$filename".new "$filename"
dbf002
}
dbf002
dbf002
for manpage in bsdtar.1 bsdcpio.1
dbf002
do
dbf002
    installed_manpage=`find "$RPM_BUILD_ROOT" -name "$manpage"`
dbf002
    replace "$installed_manpage"
dbf002
done
dbf002
dbf002
dbf002
%check
dbf002
%if %{with check}
dbf002
logfiles ()
dbf002
{
dbf002
    find -name '*_test.log' -or -name test-suite.log
dbf002
}
dbf002
dbf002
tempdirs ()
dbf002
{
dbf002
    cat `logfiles` \
dbf002
        | awk "match(\$0, /[^[:space:]]*`date -I`[^[:space:]]*/) { print substr(\$0, RSTART, RLENGTH); }" \
dbf002
        | sort | uniq
dbf002
}
dbf002
dbf002
cat_logs ()
dbf002
{
dbf002
    for i in `logfiles`
dbf002
    do
dbf002
        echo "=== $i ==="
dbf002
        cat "$i"
dbf002
    done
dbf002
}
dbf002
dbf002
run_testsuite ()
dbf002
{
dbf002
    rc=0
dbf002
    LD_LIBRARY_PATH=`pwd`/.libs make %{?_smp_mflags} check -j1 || {
dbf002
        # error happened - try to extract in koji as much info as possible
dbf002
        cat_logs
dbf002
dbf002
        for i in `tempdirs`; do
dbf002
            if test -d "$i" ; then
dbf002
                find $i -printf "%p\n    ~> a: %a\n    ~> c: %c\n    ~> t: %t\n    ~> %s B\n"
dbf002
                cat $i/*.log
dbf002
            fi
dbf002
        done
dbf002
        return 1
dbf002
    }
dbf002
    cat_logs
dbf002
}
dbf002
dbf002
# On a ppc/ppc64 is some race condition causing 'make check' fail on ppc
dbf002
# when both 32 and 64 builds are done in parallel on the same machine in
dbf002
# koji.  Try to run once again if failed.
dbf002
%ifarch ppc
dbf002
run_testsuite || run_testsuite
dbf002
%else
dbf002
run_testsuite
dbf002
%endif
dbf002
%endif
dbf002
dbf002
dbf002
%files
dbf002
%{!?_licensedir:%global license %%doc}
dbf002
%license COPYING
dbf002
%doc NEWS README.md
dbf002
%{_libdir}/libarchive.so.13*
dbf002
%{_mandir}/*/cpio.*
dbf002
%{_mandir}/*/mtree.*
dbf002
%{_mandir}/*/tar.*
dbf002
dbf002
%files devel
dbf002
%{_includedir}/*.h
dbf002
%{_mandir}/*/archive*
dbf002
%{_mandir}/*/libarchive*
dbf002
%{_libdir}/libarchive.so
dbf002
%{_libdir}/pkgconfig/libarchive.pc
dbf002
dbf002
%files -n bsdtar
dbf002
%{!?_licensedir:%global license %%doc}
dbf002
%license COPYING
dbf002
%doc NEWS README.md
dbf002
%{_bindir}/bsdtar
dbf002
%{_mandir}/*/bsdtar*
dbf002
dbf002
%files -n bsdcpio
dbf002
%{!?_licensedir:%global license %%doc}
dbf002
%license COPYING
dbf002
%doc NEWS README.md
dbf002
%{_bindir}/bsdcpio
dbf002
%{_mandir}/*/bsdcpio*
dbf002
dbf002
%files -n bsdcat
dbf002
%{!?_licensedir:%global license %%doc}
dbf002
%license COPYING
dbf002
%doc NEWS README.md
dbf002
%{_bindir}/bsdcat
dbf002
%{_mandir}/*/bsdcat*
dbf002
dbf002
dbf002
dbf002
%changelog
2e421e
* Wed Jan 15 2020 Patrik Novotný <panovotn@redhat.com> - 3.3.2-8
2e421e
- Fix CVE-2019-18408: RAR use-after-free
2e421e
006282
* Mon May 27 2019 Ondrej Dubaj <odubaj@redhat.com> - 3.3.2-7
006282
- fix use-after-free in delayed newc link processing (#1602575)
006282
- fix a few obvious resource leaks and strcpy() misuses (#1602575)
006282
006282
* Tue Apr 30 2019 Ondrej Dubaj <odubaj@redhat.com> - 3.3.2-6
006282
- fixed use after free in RAR decoder (#1700752)
006282
- fixed double free in RAR decoder (#1700753)
006282
006282
* Tue Apr 02 2019 Ondrej Dubaj <odubaj@redhat.com> - 3.3.2-5
006282
- release bump due to gating (#1680768)
006282
006282
* Fri Feb 22 2019 Pavel Raiskup <praiskup@redhat.com> - 3.3.2-4
006282
- fix out-of-bounds read within lha_read_data_none() (CVE-2017-14503)
006282
- fix crash on crafted 7zip archives (CVE-2019-1000019)
006282
- fix infinite loop in ISO9660 (CVE-2019-1000020)
006282
dbf002
* Wed Jul 18 2018 Pavel Raiskup <praiskup@redhat.com> - 3.3.2-3
dbf002
- drop use of %%ldconfig_scriptlets
dbf002
dbf002
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.2-2
dbf002
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
dbf002
dbf002
* Thu Feb 08 2018 Pavel Raiskup <praiskup@redhat.com> - 3.3.2-1
dbf002
- rebase to latest upstream release
dbf002
dbf002
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.1-5
dbf002
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
dbf002
dbf002
* Sat Feb 03 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 3.3.1-4
dbf002
- Switch to %%ldconfig_scriptlets
dbf002
dbf002
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.1-3
dbf002
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
dbf002
dbf002
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.1-2
dbf002
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
dbf002
dbf002
* Tue Apr 18 2017 Pavel Raiskup <praiskup@redhat.com> - 3.3.1-1
dbf002
- the latest release, per release notes:
dbf002
  https://groups.google.com/forum/#!topic/libarchive-discuss/jfc7lBfrvVg
dbf002
dbf002
* Mon Feb 20 2017 Pavel Raiskup <praiskup@redhat.com> - 3.2.2-3
dbf002
- temporary work-around for FTBFS (rhbz#1423839)
dbf002
dbf002
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.2.2-3
dbf002
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
dbf002
dbf002
* Fri Nov 11 2016 Pavel Raiskup <praiskup@redhat.com> - 3.2.2-2
dbf002
- enable lz4 support, rhbz#1394038
dbf002
dbf002
* Tue Oct 25 2016 Pavel Raiskup <praiskup@redhat.com> - 3.2.2-1
dbf002
- minor rebase to 3.2.2
dbf002
dbf002
* Tue Oct 11 2016 Tomáš Mráz <tmraz@redhat.com> - 3.2.1-5
dbf002
- rebuild with OpenSSL 1.1.0
dbf002
dbf002
* Mon Sep 26 2016 Tomas Repik <trepik@redhat.com> - 3.2.1-4
dbf002
- fix some stack and heap overflows
dbf002
- resolves (rhbz#1378669, rhbz#1378668, rhbz#1378666)
dbf002
dbf002
* Mon Aug 08 2016 Tomas Repik <trepik@redhat.com> - 3.2.1-3
dbf002
- bump release for upgradepath
dbf002
dbf002
* Mon Jul 18 2016 Pavel Raiskup <praiskup@redhat.com> - 3.2.1-2
dbf002
- print more detailed logs for testsuite, even if testsuite succeeded
dbf002
dbf002
* Mon Jun 20 2016 Pavel Raiskup <praiskup@redhat.com> - 3.2.1-1
dbf002
- rebase, several security issues fixed (rhbz#1348194)
dbf002
dbf002
* Mon May 16 2016 Pavel Raiskup <praiskup@redhat.com> - 3.2.0-3
dbf002
- fix the manual pages for remaining issue (rhbz#1294252)
dbf002
dbf002
* Thu May 12 2016 Pavel Raiskup <praiskup@redhat.com> - 3.2.0-2
dbf002
- fix manual pages to mention correctly spelled binary names (rhbz#1294252)
dbf002
dbf002
* Tue May 03 2016 Pavel Raiskup <praiskup@redhat.com> - 3.2.0-1
dbf002
- new upstream release 3.2.0 (rhbz#1330345), per release notes:
dbf002
  https://groups.google.com/d/msg/libarchive-discuss/qIzW7doKzxA/MVbUkjlNAAAJ
dbf002
dbf002
* Mon Mar 07 2016 Björn Esser <fedora@besser82.io> - 3.1.2-16
dbf002
- removed %%defattr, BuildRoot and other ancient bits
dbf002
- added arch'ed bits to all Requires
dbf002
dbf002
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.2-15
dbf002
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
dbf002
dbf002
* Mon Dec 21 2015 Pavel Raiskup <praiskup@redhat.com> - 3.1.2-14
dbf002
- fix 'Out of memory when creating mtree files' error (rhbz#1284162)
dbf002
- use %%autosetup macro
dbf002
dbf002
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.2-13
dbf002
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
dbf002
dbf002
* Wed Apr 29 2015 Pavel Raiskup <praiskup@redhat.com> - 3.1.2-12
dbf002
- fix libarchive segfault for intentionally broken cpio archives (rhbz#1216892)
dbf002
dbf002
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 3.1.2-11
dbf002
- Rebuilt for Fedora 23 Change
dbf002
  https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
dbf002
dbf002
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.2-10
dbf002
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
dbf002
dbf002
* Thu Jul 17 2014 Tom Callaway <spot@fedoraproject.org> - 3.1.2-9
dbf002
- fix license handling
dbf002
dbf002
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.2-8
dbf002
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
dbf002
dbf002
* Thu Aug 08 2013 Jaromir Koncicky <jkoncick@redhat.com> - 3.1.2-7
dbf002
- Fixed Bug 993048 - added #ifdef ACL_TYPE_NFS4 to code which requires
dbf002
  NFS4 ACL support
dbf002
dbf002
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.2-6
dbf002
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
dbf002
dbf002
* Mon Jul 22 2013 Pavel Raiskup <praiskup@redhat.com> - 3.1.2-5
dbf002
- try to workaround racy testsuite fail
dbf002
dbf002
* Sun Jun 30 2013 Pavel Raiskup <praiskup@redhat.com> - 3.1.2-4
dbf002
- enable testsuite in the %%check phase
dbf002
dbf002
* Mon Jun 24 2013 Pavel Raiskup <praiskup@redhat.com> - 3.1.2-3
dbf002
- bsdtar/bsdcpio should require versioned libarchive
dbf002
dbf002
* Wed Apr  3 2013 Tomas Bzatek <tbzatek@redhat.com> - 3.1.2-2
dbf002
- Remove libunistring-devel build require
dbf002
dbf002
* Thu Mar 28 2013 Tomas Bzatek <tbzatek@redhat.com> - 3.1.2-1
dbf002
- Update to 3.1.2
dbf002
- Fix CVE-2013-0211: read buffer overflow on 64-bit systems (#927105)
dbf002
dbf002
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.1-2
dbf002
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
dbf002
dbf002
* Mon Jan 14 2013 Tomas Bzatek <tbzatek@redhat.com> - 3.1.1-1
dbf002
- Update to 3.1.1
dbf002
- NEWS seems to be valid UTF-8 nowadays
dbf002
dbf002
* Wed Oct 03 2012 Pavel Raiskup <praiskup@redhat.com> - 3.0.4-3
dbf002
- better install manual pages for libarchive/bsdtar/bsdcpio (# ... )
dbf002
- several fedora-review fixes ...:
dbf002
- Source0 has moved to github.com
dbf002
- remove trailing white spaces
dbf002
- repair summary to better describe bsdtar/cpiotar utilities
dbf002
dbf002
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.4-2
dbf002
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
dbf002
dbf002
* Mon May  7 2012 Tomas Bzatek <tbzatek@redhat.com> - 3.0.4-1
dbf002
- Update to 3.0.4
dbf002
dbf002
* Wed Feb  1 2012 Tomas Bzatek <tbzatek@redhat.com> - 3.0.3-2
dbf002
- Enable bsdtar and bsdcpio in separate subpackages (#786400)
dbf002
dbf002
* Fri Jan 13 2012 Tomas Bzatek <tbzatek@redhat.com> - 3.0.3-1
dbf002
- Update to 3.0.3
dbf002
dbf002
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.0-0.3.a
dbf002
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
dbf002
dbf002
* Tue Nov 15 2011 Rex Dieter <rdieter@fedoraproject.org> 3.0.0-0.2.a
dbf002
- track files/sonames closer, so abi bumps aren't a surprise
dbf002
- tighten subpkg deps via %%_isa
dbf002
dbf002
* Mon Nov 14 2011 Tomas Bzatek <tbzatek@redhat.com> - 3.0.0-0.1.a
dbf002
- Update to 3.0.0a (alpha release)
dbf002
dbf002
* Mon Sep  5 2011 Tomas Bzatek <tbzatek@redhat.com> - 2.8.5-1
dbf002
- Update to 2.8.5
dbf002
dbf002
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.4-3
dbf002
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
dbf002
dbf002
* Thu Jan 13 2011 Tomas Bzatek <tbzatek@redhat.com> - 2.8.4-2
dbf002
- Rebuild for new xz-libs
dbf002
dbf002
* Wed Jun 30 2010 Tomas Bzatek <tbzatek@redhat.com> - 2.8.4-1
dbf002
- Update to 2.8.4
dbf002
dbf002
* Fri Jun 25 2010 Tomas Bzatek <tbzatek@redhat.com> - 2.8.3-2
dbf002
- Fix ISO9660 reader data type mismatches (#597243)
dbf002
dbf002
* Tue Mar 16 2010 Tomas Bzatek <tbzatek@redhat.com> - 2.8.3-1
dbf002
- Update to 2.8.3
dbf002
dbf002
* Mon Mar  8 2010 Tomas Bzatek <tbzatek@redhat.com> - 2.8.1-1
dbf002
- Update to 2.8.1
dbf002
dbf002
* Fri Feb  5 2010 Tomas Bzatek <tbzatek@redhat.com> - 2.8.0-1
dbf002
- Update to 2.8.0
dbf002
dbf002
* Wed Jan  6 2010 Tomas Bzatek <tbzatek@redhat.com> - 2.7.902a-1
dbf002
- Update to 2.7.902a
dbf002
dbf002
* Fri Aug 21 2009 Tomas Mraz <tmraz@redhat.com> - 2.7.1-2
dbf002
- rebuilt with new openssl
dbf002
dbf002
* Fri Aug  7 2009 Tomas Bzatek <tbzatek@redhat.com> 2.7.1-1
dbf002
- Update to 2.7.1
dbf002
- Drop deprecated lzma dependency, libxz handles both formats
dbf002
dbf002
* Mon Jul 27 2009 Tomas Bzatek <tbzatek@redhat.com> 2.7.0-3
dbf002
- Enable XZ compression format
dbf002
dbf002
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.7.0-2
dbf002
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
dbf002
dbf002
* Tue May 12 2009 Tomas Bzatek <tbzatek@redhat.com> 2.7.0-1
dbf002
- Update to 2.7.0
dbf002
dbf002
* Fri Mar  6 2009 Tomas Bzatek <tbzatek@redhat.com> 2.6.2-1
dbf002
- Update to 2.6.2
dbf002
dbf002
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6.1-2
dbf002
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
dbf002
dbf002
* Mon Feb 16 2009 Tomas Bzatek <tbzatek@redhat.com> 2.6.1-1
dbf002
- Update to 2.6.1
dbf002
dbf002
* Thu Jan  8 2009 Tomas Bzatek <tbzatek@redhat.com> 2.6.0-1
dbf002
- Update to 2.6.0
dbf002
dbf002
* Mon Dec 15 2008 Tomas Bzatek <tbzatek@redhat.com> 2.5.904a-1
dbf002
- Update to 2.5.904a
dbf002
dbf002
* Tue Dec  9 2008 Tomas Bzatek <tbzatek@redhat.com> 2.5.903a-2
dbf002
- Add LZMA support
dbf002
dbf002
* Mon Dec  8 2008 Tomas Bzatek <tbzatek@redhat.com> 2.5.903a-1
dbf002
- Update to 2.5.903a
dbf002
dbf002
* Tue Jul 22 2008 Tomas Bzatek <tbzatek@redhat.com> 2.5.5-1
dbf002
- Update to 2.5.5
dbf002
dbf002
* Wed Apr  2 2008 Tomas Bzatek <tbzatek@redhat.com> 2.4.17-1
dbf002
- Update to 2.4.17
dbf002
dbf002
* Wed Mar 19 2008 Tomas Bzatek <tbzatek@redhat.com> 2.4.14-1
dbf002
- Initial packaging