Blame SPECS/libarchive.spec

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