Blame SPECS/libarchive.spec

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