Blame SPECS/libarchive.spec

cc9a73
%bcond_without check
cc9a73
cc9a73
Name:           libarchive
cc9a73
Version:        3.5.3
cc9a73
Release:        1%{?dist}
cc9a73
Summary:        A library for handling streaming archive formats
cc9a73
cc9a73
License:        BSD
cc9a73
URL:            https://www.libarchive.org/
cc9a73
Source0:        https://libarchive.org/downloads/%{name}-%{version}.tar.gz
cc9a73
cc9a73
Patch1:         openssl3-rmd160failure.patch
cc9a73
cc9a73
BuildRequires:  automake
cc9a73
BuildRequires:  bison
cc9a73
BuildRequires:  bzip2-devel
cc9a73
BuildRequires:  e2fsprogs-devel
cc9a73
BuildRequires:  gcc
cc9a73
BuildRequires:  libacl-devel
cc9a73
BuildRequires:  libattr-devel
cc9a73
BuildRequires:  libxml2-devel
cc9a73
BuildRequires:  libzstd-devel
cc9a73
BuildRequires:  lz4-devel
cc9a73
# According to libarchive maintainer, linking against liblzo violates
cc9a73
# LZO license.
cc9a73
# See https://github.com/libarchive/libarchive/releases/tag/v3.3.0
cc9a73
#BuildRequires:  lzo-devel
cc9a73
BuildRequires:  openssl-devel
cc9a73
BuildRequires:  sharutils
cc9a73
BuildRequires:  xz-devel
cc9a73
BuildRequires:  zlib-devel
cc9a73
BuildRequires: make
cc9a73
cc9a73
%description
cc9a73
Libarchive is a programming library that can create and read several different
cc9a73
streaming archive formats, including most popular tar variants, several cpio
cc9a73
formats, and both BSD and GNU ar variants. It can also write shar archives and
cc9a73
read ISO9660 CDROM images and ZIP archives.
cc9a73
cc9a73
cc9a73
%package devel
cc9a73
Summary:        Development files for %{name}
cc9a73
Requires:       %{name}%{?_isa} = %{version}-%{release}
cc9a73
cc9a73
%description devel
cc9a73
The %{name}-devel package contains libraries and header files for
cc9a73
developing applications that use %{name}.
cc9a73
cc9a73
cc9a73
%package -n bsdtar
cc9a73
Summary:        Manipulate tape archives
cc9a73
Requires:       %{name}%{?_isa} = %{version}-%{release}
cc9a73
cc9a73
%description -n bsdtar
cc9a73
The bsdtar package contains standalone bsdtar utility split off regular
cc9a73
libarchive packages.
cc9a73
cc9a73
cc9a73
%package -n bsdcpio
cc9a73
Summary:        Copy files to and from archives
cc9a73
Requires:       %{name}%{?_isa} = %{version}-%{release}
cc9a73
cc9a73
%description -n bsdcpio
cc9a73
The bsdcpio package contains standalone bsdcpio utility split off regular
cc9a73
libarchive packages.
cc9a73
cc9a73
cc9a73
%package -n bsdcat
cc9a73
Summary:        Expand files to standard output
cc9a73
Requires:       %{name}%{?_isa} = %{version}-%{release}
cc9a73
cc9a73
%description -n bsdcat
cc9a73
The bsdcat program typically takes a filename as an argument or reads standard
cc9a73
input when used in a pipe.  In both cases decompressed data it written to
cc9a73
standard output.
cc9a73
cc9a73
cc9a73
%prep
cc9a73
%autosetup -p1
cc9a73
cc9a73
cc9a73
%build
cc9a73
%configure --disable-static LT_SYS_LIBRARY_PATH=%_libdir
cc9a73
%make_build
cc9a73
cc9a73
cc9a73
%install
cc9a73
%make_install
cc9a73
find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
cc9a73
cc9a73
# rhbz#1294252
cc9a73
replace ()
cc9a73
{
cc9a73
    filename=$1
cc9a73
    file=`basename "$filename"`
cc9a73
    binary=${file%%.*}
cc9a73
    pattern=${binary##bsd}
cc9a73
cc9a73
    awk "
cc9a73
        # replace the topic
cc9a73
        /^.Dt ${pattern^^} 1/ {
cc9a73
            print \".Dt ${binary^^} 1\";
cc9a73
            next;
cc9a73
        }
cc9a73
        # replace the first occurence of \"$pattern\" by \"$binary\"
cc9a73
        !stop && /^.Nm $pattern/ {
cc9a73
            print \".Nm $binary\" ;
cc9a73
            stop = 1 ;
cc9a73
            next;
cc9a73
        }
cc9a73
        # print remaining lines
cc9a73
        1;
cc9a73
    " "$filename" > "$filename.new"
cc9a73
    mv "$filename".new "$filename"
cc9a73
}
cc9a73
cc9a73
for manpage in bsdtar.1 bsdcpio.1
cc9a73
do
cc9a73
    installed_manpage=`find "$RPM_BUILD_ROOT" -name "$manpage"`
cc9a73
    replace "$installed_manpage"
cc9a73
done
cc9a73
cc9a73
cc9a73
%check
cc9a73
%if %{with check}
cc9a73
logfiles ()
cc9a73
{
cc9a73
    find -name '*_test.log' -or -name test-suite.log
cc9a73
}
cc9a73
cc9a73
tempdirs ()
cc9a73
{
cc9a73
    cat `logfiles` \
cc9a73
        | awk "match(\$0, /[^[:space:]]*`date -I`[^[:space:]]*/) { print substr(\$0, RSTART, RLENGTH); }" \
cc9a73
        | sort | uniq
cc9a73
}
cc9a73
cc9a73
cat_logs ()
cc9a73
{
cc9a73
    for i in `logfiles`
cc9a73
    do
cc9a73
        echo "=== $i ==="
cc9a73
        cat "$i"
cc9a73
    done
cc9a73
}
cc9a73
cc9a73
run_testsuite ()
cc9a73
{
cc9a73
    rc=0
cc9a73
    %make_build check -j1 || {
cc9a73
        # error happened - try to extract in koji as much info as possible
cc9a73
        cat_logs
cc9a73
cc9a73
        for i in `tempdirs`; do
cc9a73
            if test -d "$i" ; then
cc9a73
                find $i -printf "%p\n    ~> a: %a\n    ~> c: %c\n    ~> t: %t\n    ~> %s B\n"
cc9a73
                cat $i/*.log
cc9a73
            fi
cc9a73
        done
cc9a73
        return 1
cc9a73
    }
cc9a73
    cat_logs
cc9a73
}
cc9a73
cc9a73
# On a ppc/ppc64 is some race condition causing 'make check' fail on ppc
cc9a73
# when both 32 and 64 builds are done in parallel on the same machine in
cc9a73
# koji.  Try to run once again if failed.
cc9a73
%ifarch ppc
cc9a73
run_testsuite || run_testsuite
cc9a73
%else
cc9a73
run_testsuite
cc9a73
%endif
cc9a73
%endif
cc9a73
cc9a73
cc9a73
%files
cc9a73
%{!?_licensedir:%global license %%doc}
cc9a73
%license COPYING
cc9a73
%doc NEWS README.md
cc9a73
%{_libdir}/libarchive.so.13*
cc9a73
%{_mandir}/*/cpio.*
cc9a73
%{_mandir}/*/mtree.*
cc9a73
%{_mandir}/*/tar.*
cc9a73
cc9a73
%files devel
cc9a73
%{_includedir}/*.h
cc9a73
%{_mandir}/*/archive*
cc9a73
%{_mandir}/*/libarchive*
cc9a73
%{_libdir}/libarchive.so
cc9a73
%{_libdir}/pkgconfig/libarchive.pc
cc9a73
cc9a73
%files -n bsdtar
cc9a73
%{!?_licensedir:%global license %%doc}
cc9a73
%license COPYING
cc9a73
%doc NEWS README.md
cc9a73
%{_bindir}/bsdtar
cc9a73
%{_mandir}/*/bsdtar*
cc9a73
cc9a73
%files -n bsdcpio
cc9a73
%{!?_licensedir:%global license %%doc}
cc9a73
%license COPYING
cc9a73
%doc NEWS README.md
cc9a73
%{_bindir}/bsdcpio
cc9a73
%{_mandir}/*/bsdcpio*
cc9a73
cc9a73
%files -n bsdcat
cc9a73
%{!?_licensedir:%global license %%doc}
cc9a73
%license COPYING
cc9a73
%doc NEWS README.md
cc9a73
%{_bindir}/bsdcat
cc9a73
%{_mandir}/*/bsdcat*
cc9a73
cc9a73
cc9a73
cc9a73
%changelog
cc9a73
* Mon Feb 14 2022 Lukas Javorsky <ljavorsk@redhat.com> - 3.5.3-1
cc9a73
- Rebase to version 3.5.3
cc9a73
cc9a73
* Mon Aug 23 2021 Ondrej Dubaj <odubaj@redhat.com> - 3.5.2-1
cc9a73
- Rebased to version 3.5.2 (#1996634)
cc9a73
- Fixed symlink handling
cc9a73
cc9a73
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 3.5.1-7
cc9a73
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
cc9a73
  Related: rhbz#1991688
cc9a73
cc9a73
* Wed Jun 16 2021 Mohan Boddu <mboddu@redhat.com> - 3.5.1-6
cc9a73
- Rebuilt for RHEL 9 BETA for openssl 3.0
cc9a73
  Related: rhbz#1971065
cc9a73
cc9a73
* Thu May 27 2021 Petr Kubat <pkubat@redhat.com> - 3.5.1-5
cc9a73
- Return error when ripemd160 is used with OpenSSL3 (#1962067)
cc9a73
cc9a73
* Mon May 10 2021 Ondrej Dubaj <odubaj@redhat.com> - 3.5.1-4
cc9a73
- Fixed covscan issues (#1938755)
cc9a73
cc9a73
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 3.5.1-3
cc9a73
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
cc9a73
cc9a73
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.1-2
cc9a73
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
cc9a73
cc9a73
* Mon Jan 04 2021 Ondrej Dubaj <odubaj@redhat.com> - 3.5.1-1
cc9a73
- Rebased to version 3.5.1
cc9a73
cc9a73
* Wed Dec 02 2020 Ondrej Dubaj <odubaj@redhat.com> - 3.5.0-1
cc9a73
- Rebased to version 3.5.0
cc9a73
cc9a73
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.3-3
cc9a73
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
cc9a73
cc9a73
* Mon Jul 13 2020 Tom Stellard <tstellar@redhat.com> - 3.4.3-2
cc9a73
- Use make macros
cc9a73
- https://fedoraproject.org/wiki/Changes/UseMakeBuildInstallMacro
cc9a73
cc9a73
* Fri May 22 2020 Ondrej Dubaj <odubaj@redhat.com> - 3.4.3-1
cc9a73
- Rebased to version 3.4.3
cc9a73
cc9a73
* Wed Feb 12 2020 Ondrej Dubaj <odubaj@redhat.com> - 3.4.2-1
cc9a73
- Rebased to version 3.4.2
cc9a73
cc9a73
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.0-2
cc9a73
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
cc9a73
cc9a73
* Fri Aug 30 2019 FeRD (Frank Dana) <ferdnyc@gmail.com> - 3.4.0-1
cc9a73
- New upstream release, adds RAR5 and ZIPX support (readonly)
cc9a73
- Drop upstreamed patches
cc9a73
- Add upstreamed patch to fix test failure with libzstd-1.4.2
cc9a73
cc9a73
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.3-8
cc9a73
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
cc9a73
cc9a73
* Thu Mar 28 2019 Pavel Raiskup <praiskup@redhat.com> - 3.3.3-7
cc9a73
- simplify libtool hacks
cc9a73
cc9a73
* Tue Mar 19 2019 Ondrej Dubaj <odubaj@redhat.com> - 3.3.3-6
cc9a73
- applied various flaws (#1663893)
cc9a73
cc9a73
* Tue Mar 19 2019 Ondrej Dubaj <odubaj@redhat.com> - 3.3.3-5
cc9a73
- applied CVE patches (#1690071)
cc9a73
cc9a73
* Thu Mar 14 2019 Ondrej Dubaj <odubaj@redhat.com> - 3.3.3-4
cc9a73
- applied various flaws (#1672900)
cc9a73
cc9a73
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.3-3
cc9a73
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
cc9a73
cc9a73
* Mon Nov 26 2018 Pavel Raiskup <praiskup@redhat.com> - 3.3.3-2
cc9a73
- fix some covscan issues (rhbz#1602575)
cc9a73
- build-requires libzstd-devel (rhbz#1653046)
cc9a73
cc9a73
* Tue Oct 23 2018 Pavel Raiskup <praiskup@redhat.com> - 3.3.3-1
cc9a73
- the latest upstream release
cc9a73
cc9a73
* Wed Jul 18 2018 Pavel Raiskup <praiskup@redhat.com> - 3.3.2-3
cc9a73
- drop use of %%ldconfig_scriptlets
cc9a73
cc9a73
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.2-2
cc9a73
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
cc9a73
cc9a73
* Thu Feb 08 2018 Pavel Raiskup <praiskup@redhat.com> - 3.3.2-1
cc9a73
- rebase to latest upstream release
cc9a73
cc9a73
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.1-5
cc9a73
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
cc9a73
cc9a73
* Sat Feb 03 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 3.3.1-4
cc9a73
- Switch to %%ldconfig_scriptlets
cc9a73
cc9a73
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.1-3
cc9a73
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
cc9a73
cc9a73
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.1-2
cc9a73
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
cc9a73
cc9a73
* Tue Apr 18 2017 Pavel Raiskup <praiskup@redhat.com> - 3.3.1-1
cc9a73
- the latest release, per release notes:
cc9a73
  https://groups.google.com/forum/#!topic/libarchive-discuss/jfc7lBfrvVg
cc9a73
cc9a73
* Mon Feb 20 2017 Pavel Raiskup <praiskup@redhat.com> - 3.2.2-3
cc9a73
- temporary work-around for FTBFS (rhbz#1423839)
cc9a73
cc9a73
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.2.2-3
cc9a73
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
cc9a73
cc9a73
* Fri Nov 11 2016 Pavel Raiskup <praiskup@redhat.com> - 3.2.2-2
cc9a73
- enable lz4 support, rhbz#1394038
cc9a73
cc9a73
* Tue Oct 25 2016 Pavel Raiskup <praiskup@redhat.com> - 3.2.2-1
cc9a73
- minor rebase to 3.2.2
cc9a73
cc9a73
* Tue Oct 11 2016 Tomáš Mráz <tmraz@redhat.com> - 3.2.1-5
cc9a73
- rebuild with OpenSSL 1.1.0
cc9a73
cc9a73
* Mon Sep 26 2016 Tomas Repik <trepik@redhat.com> - 3.2.1-4
cc9a73
- fix some stack and heap overflows
cc9a73
- resolves (rhbz#1378669, rhbz#1378668, rhbz#1378666)
cc9a73
cc9a73
* Mon Aug 08 2016 Tomas Repik <trepik@redhat.com> - 3.2.1-3
cc9a73
- bump release for upgradepath
cc9a73
cc9a73
* Mon Jul 18 2016 Pavel Raiskup <praiskup@redhat.com> - 3.2.1-2
cc9a73
- print more detailed logs for testsuite, even if testsuite succeeded
cc9a73
cc9a73
* Mon Jun 20 2016 Pavel Raiskup <praiskup@redhat.com> - 3.2.1-1
cc9a73
- rebase, several security issues fixed (rhbz#1348194)
cc9a73
cc9a73
* Mon May 16 2016 Pavel Raiskup <praiskup@redhat.com> - 3.2.0-3
cc9a73
- fix the manual pages for remaining issue (rhbz#1294252)
cc9a73
cc9a73
* Thu May 12 2016 Pavel Raiskup <praiskup@redhat.com> - 3.2.0-2
cc9a73
- fix manual pages to mention correctly spelled binary names (rhbz#1294252)
cc9a73
cc9a73
* Tue May 03 2016 Pavel Raiskup <praiskup@redhat.com> - 3.2.0-1
cc9a73
- new upstream release 3.2.0 (rhbz#1330345), per release notes:
cc9a73
  https://groups.google.com/d/msg/libarchive-discuss/qIzW7doKzxA/MVbUkjlNAAAJ
cc9a73
cc9a73
* Mon Mar 07 2016 Björn Esser <fedora@besser82.io> - 3.1.2-16
cc9a73
- removed %%defattr, BuildRoot and other ancient bits
cc9a73
- added arch'ed bits to all Requires
cc9a73
cc9a73
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.2-15
cc9a73
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
cc9a73
cc9a73
* Mon Dec 21 2015 Pavel Raiskup <praiskup@redhat.com> - 3.1.2-14
cc9a73
- fix 'Out of memory when creating mtree files' error (rhbz#1284162)
cc9a73
- use %%autosetup macro
cc9a73
cc9a73
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.2-13
cc9a73
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
cc9a73
cc9a73
* Wed Apr 29 2015 Pavel Raiskup <praiskup@redhat.com> - 3.1.2-12
cc9a73
- fix libarchive segfault for intentionally broken cpio archives (rhbz#1216892)
cc9a73
cc9a73
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 3.1.2-11
cc9a73
- Rebuilt for Fedora 23 Change
cc9a73
  https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
cc9a73
cc9a73
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.2-10
cc9a73
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
cc9a73
cc9a73
* Thu Jul 17 2014 Tom Callaway <spot@fedoraproject.org> - 3.1.2-9
cc9a73
- fix license handling
cc9a73
cc9a73
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.2-8
cc9a73
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
cc9a73
cc9a73
* Thu Aug 08 2013 Jaromir Koncicky <jkoncick@redhat.com> - 3.1.2-7
cc9a73
- Fixed Bug 993048 - added #ifdef ACL_TYPE_NFS4 to code which requires
cc9a73
  NFS4 ACL support
cc9a73
cc9a73
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.2-6
cc9a73
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
cc9a73
cc9a73
* Mon Jul 22 2013 Pavel Raiskup <praiskup@redhat.com> - 3.1.2-5
cc9a73
- try to workaround racy testsuite fail
cc9a73
cc9a73
* Sun Jun 30 2013 Pavel Raiskup <praiskup@redhat.com> - 3.1.2-4
cc9a73
- enable testsuite in the %%check phase
cc9a73
cc9a73
* Mon Jun 24 2013 Pavel Raiskup <praiskup@redhat.com> - 3.1.2-3
cc9a73
- bsdtar/bsdcpio should require versioned libarchive
cc9a73
cc9a73
* Wed Apr  3 2013 Tomas Bzatek <tbzatek@redhat.com> - 3.1.2-2
cc9a73
- Remove libunistring-devel build require
cc9a73
cc9a73
* Thu Mar 28 2013 Tomas Bzatek <tbzatek@redhat.com> - 3.1.2-1
cc9a73
- Update to 3.1.2
cc9a73
- Fix CVE-2013-0211: read buffer overflow on 64-bit systems (#927105)
cc9a73
cc9a73
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.1-2
cc9a73
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
cc9a73
cc9a73
* Mon Jan 14 2013 Tomas Bzatek <tbzatek@redhat.com> - 3.1.1-1
cc9a73
- Update to 3.1.1
cc9a73
- NEWS seems to be valid UTF-8 nowadays
cc9a73
cc9a73
* Wed Oct 03 2012 Pavel Raiskup <praiskup@redhat.com> - 3.0.4-3
cc9a73
- better install manual pages for libarchive/bsdtar/bsdcpio (# ... )
cc9a73
- several fedora-review fixes ...:
cc9a73
- Source0 has moved to github.com
cc9a73
- remove trailing white spaces
cc9a73
- repair summary to better describe bsdtar/cpiotar utilities
cc9a73
cc9a73
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.4-2
cc9a73
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
cc9a73
cc9a73
* Mon May  7 2012 Tomas Bzatek <tbzatek@redhat.com> - 3.0.4-1
cc9a73
- Update to 3.0.4
cc9a73
cc9a73
* Wed Feb  1 2012 Tomas Bzatek <tbzatek@redhat.com> - 3.0.3-2
cc9a73
- Enable bsdtar and bsdcpio in separate subpackages (#786400)
cc9a73
cc9a73
* Fri Jan 13 2012 Tomas Bzatek <tbzatek@redhat.com> - 3.0.3-1
cc9a73
- Update to 3.0.3
cc9a73
cc9a73
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.0-0.3.a
cc9a73
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
cc9a73
cc9a73
* Tue Nov 15 2011 Rex Dieter <rdieter@fedoraproject.org> 3.0.0-0.2.a
cc9a73
- track files/sonames closer, so abi bumps aren't a surprise
cc9a73
- tighten subpkg deps via %%_isa
cc9a73
cc9a73
* Mon Nov 14 2011 Tomas Bzatek <tbzatek@redhat.com> - 3.0.0-0.1.a
cc9a73
- Update to 3.0.0a (alpha release)
cc9a73
cc9a73
* Mon Sep  5 2011 Tomas Bzatek <tbzatek@redhat.com> - 2.8.5-1
cc9a73
- Update to 2.8.5
cc9a73
cc9a73
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.4-3
cc9a73
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
cc9a73
cc9a73
* Thu Jan 13 2011 Tomas Bzatek <tbzatek@redhat.com> - 2.8.4-2
cc9a73
- Rebuild for new xz-libs
cc9a73
cc9a73
* Wed Jun 30 2010 Tomas Bzatek <tbzatek@redhat.com> - 2.8.4-1
cc9a73
- Update to 2.8.4
cc9a73
cc9a73
* Fri Jun 25 2010 Tomas Bzatek <tbzatek@redhat.com> - 2.8.3-2
cc9a73
- Fix ISO9660 reader data type mismatches (#597243)
cc9a73
cc9a73
* Tue Mar 16 2010 Tomas Bzatek <tbzatek@redhat.com> - 2.8.3-1
cc9a73
- Update to 2.8.3
cc9a73
cc9a73
* Mon Mar  8 2010 Tomas Bzatek <tbzatek@redhat.com> - 2.8.1-1
cc9a73
- Update to 2.8.1
cc9a73
cc9a73
* Fri Feb  5 2010 Tomas Bzatek <tbzatek@redhat.com> - 2.8.0-1
cc9a73
- Update to 2.8.0
cc9a73
cc9a73
* Wed Jan  6 2010 Tomas Bzatek <tbzatek@redhat.com> - 2.7.902a-1
cc9a73
- Update to 2.7.902a
cc9a73
cc9a73
* Fri Aug 21 2009 Tomas Mraz <tmraz@redhat.com> - 2.7.1-2
cc9a73
- rebuilt with new openssl
cc9a73
cc9a73
* Fri Aug  7 2009 Tomas Bzatek <tbzatek@redhat.com> 2.7.1-1
cc9a73
- Update to 2.7.1
cc9a73
- Drop deprecated lzma dependency, libxz handles both formats
cc9a73
cc9a73
* Mon Jul 27 2009 Tomas Bzatek <tbzatek@redhat.com> 2.7.0-3
cc9a73
- Enable XZ compression format
cc9a73
cc9a73
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.7.0-2
cc9a73
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
cc9a73
cc9a73
* Tue May 12 2009 Tomas Bzatek <tbzatek@redhat.com> 2.7.0-1
cc9a73
- Update to 2.7.0
cc9a73
cc9a73
* Fri Mar  6 2009 Tomas Bzatek <tbzatek@redhat.com> 2.6.2-1
cc9a73
- Update to 2.6.2
cc9a73
cc9a73
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6.1-2
cc9a73
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
cc9a73
cc9a73
* Mon Feb 16 2009 Tomas Bzatek <tbzatek@redhat.com> 2.6.1-1
cc9a73
- Update to 2.6.1
cc9a73
cc9a73
* Thu Jan  8 2009 Tomas Bzatek <tbzatek@redhat.com> 2.6.0-1
cc9a73
- Update to 2.6.0
cc9a73
cc9a73
* Mon Dec 15 2008 Tomas Bzatek <tbzatek@redhat.com> 2.5.904a-1
cc9a73
- Update to 2.5.904a
cc9a73
cc9a73
* Tue Dec  9 2008 Tomas Bzatek <tbzatek@redhat.com> 2.5.903a-2
cc9a73
- Add LZMA support
cc9a73
cc9a73
* Mon Dec  8 2008 Tomas Bzatek <tbzatek@redhat.com> 2.5.903a-1
cc9a73
- Update to 2.5.903a
cc9a73
cc9a73
* Tue Jul 22 2008 Tomas Bzatek <tbzatek@redhat.com> 2.5.5-1
cc9a73
- Update to 2.5.5
cc9a73
cc9a73
* Wed Apr  2 2008 Tomas Bzatek <tbzatek@redhat.com> 2.4.17-1
cc9a73
- Update to 2.4.17
cc9a73
cc9a73
* Wed Mar 19 2008 Tomas Bzatek <tbzatek@redhat.com> 2.4.14-1
cc9a73
- Initial packaging