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