Blame SPECS/device-mapper-persistent-data.spec

25ce8c
#
25ce8c
# Copyright (C) 2011-2017 Red Hat, Inc
25ce8c
#
25ce8c
85793c
# The suffix for tarball and directory:
85793c
#%%global version_suffix -rc2
85793c
# The release suffix for RPMs:
85793c
#%%global release_suffix .test3
85793c
25ce8c
Summary: Device-mapper Persistent Data Tools
25ce8c
Name: device-mapper-persistent-data
85793c
Version: 0.9.0
9b26e5
Release: 7%{?dist}%{?release_suffix}
25ce8c
License: GPLv3+
25ce8c
URL: https://github.com/jthornber/thin-provisioning-tools
85793c
#Source0: https://github.com/jthornber/thin-provisioning-tools/archive/thin-provisioning-tools-%%{version}.tar.gz
85793c
Source0: https://github.com/jthornber/thin-provisioning-tools/archive/v%{version}%{?version_suffix}.tar.gz
94bc47
Source1: dmpd090-vendor3.tar.gz
25ce8c
Patch0: device-mapper-persistent-data-avoid-strip.patch
85793c
Patch1: 0001-Update-dependencies.patch
85793c
Patch2: 0001-all-Fix-resource-leaks.patch
85793c
Patch3: 0002-thin_show_metadata-Fix-out-of-bounds-access.patch
85793c
Patch4: 0003-build-Fix-customized-emitter-linkage.patch
85793c
Patch5: 0004-thin_dump-Fix-leaked-shared-object-handle.patch
85793c
Patch6: 0005-thin_show_duplicates-Fix-potential-errors.patch
85793c
Patch7: 0006-thin_metadata_size-Fix-potential-string-overflow.patch
85793c
Patch8: 0007-all-Fix-uninitialized-class-members.patch
85793c
Patch9: 0008-thin_dump-Fix-warnings-on-potential-NULL-pointer.patch
85793c
Patch10: 0009-build-Remove-unused-sources-from-the-regular-build.patch
85793c
Patch11: 0010-all-Remove-unreachable-code.patch
85793c
Patch12: 0011-file_utils-Fix-resource-leak.patch
85793c
Patch13: 0012-thin_delta-Clean-up-duplicated-code.patch
94bc47
# BZ 1974781:
94bc47
Patch14: 0013-build-Remove-lboost_iostreams-linker-flag.patch
94bc47
# Fix usize vs u32 compilation issues with rust 1.53:
94bc47
Patch15: 0014-cargo-update.patch
e064fa
# BZ 1993290:
e064fa
Patch16: 0015-thin-Clear-superblock-flags-in-restored-metadata.patch
8cb1ad
# BZ 2001000:
8cb1ad
Patch17: 0016-thin_repair-thin_dump-Fix-sorting-of-data-mapping-ca.patch
8cb1ad
# BZ 2000896:
8cb1ad
Patch18: 0017-thin_repair-thin_dump-Change-the-label-type-for-empt.patch
8cb1ad
# BZ 2000981:
8cb1ad
Patch19: 0018-thin_repair-thin_dump-Check-consistency-of-thin_ids-.patch
257a2a
# BZ 2028905:
257a2a
Patch20: 0019-thin_check-Allow-using-clear-needs-check-and-skip-ma.patch
9b26e5
# BZ 2100178:
9b26e5
Patch21: 0020-thin_repair-thin_dump-Exclude-unwanted-btree-nodes.patch
25ce8c
25ce8c
BuildRequires: autoconf, expat-devel, libaio-devel, libstdc++-devel, boost-devel, gcc-c++
25ce8c
Requires: expat
85793c
%ifarch %{rust_arches}
85793c
BuildRequires: rust-toolset
85793c
BuildRequires: rust >= 1.35
85793c
BuildRequires: cargo
85793c
%endif
85793c
BuildRequires: make
25ce8c
25ce8c
%description
25ce8c
thin-provisioning-tools contains check,dump,restore,repair,rmap
25ce8c
and metadata_size tools to manage device-mapper thin provisioning
25ce8c
target metadata devices; cache check,dump,metadata_size,restore
25ce8c
and repair tools to manage device-mapper cache metadata devices
25ce8c
are included and era check, dump, restore and invalidate to manage
25ce8c
snapshot eras
25ce8c
25ce8c
%prep
85793c
%setup -q -n thin-provisioning-tools-%{version}%{?version_suffix}
85793c
%ifarch %{rust_arches}
85793c
%patch1 -p1 -b .toml_update
94bc47
%patch15 -p1 -b .backup15
85793c
#%%cargo_prep
85793c
#%%cargo_generate_buildrequires
85793c
tar xf %{SOURCE1}
85793c
mkdir -p .cargo
85793c
cat > .cargo/config <
85793c
[source.crates-io]
85793c
replace-with = "vendored-sources"
85793c
85793c
[source.vendored-sources]
85793c
directory = "vendor"
85793c
85793c
END
85793c
%endif
25ce8c
%patch0 -p1 -b .avoid_strip
85793c
%patch2 -p1 -b .backup2
a75682
%patch3 -p1 -b .backup3
85793c
%patch4 -p1 -b .backup4
85793c
%patch5 -p1 -b .backup5
85793c
%patch6 -p1 -b .backup6
85793c
%patch7 -p1 -b .backup7
85793c
%patch8 -p1 -b .backup8
85793c
%patch9 -p1 -b .backup9
85793c
%patch10 -p1 -b .backup10
85793c
%patch11 -p1 -b .backup11
85793c
%patch12 -p1 -b .backup12
85793c
%patch13 -p1 -b .backup13
94bc47
%patch14 -p1 -b .backup14
94bc47
# NOTE: patch 15 is above at the rust setup
e064fa
%patch16 -p1 -b .backup16
8cb1ad
%patch17 -p1 -b .backup17
8cb1ad
%patch18 -p1 -b .backup18
8cb1ad
%patch19 -p1 -b .backup19
257a2a
%patch20 -p1 -b .backup20
9b26e5
%patch21 -p1 -b .backup21
25ce8c
echo %{version}-%{release} > VERSION
25ce8c
25ce8c
%build
25ce8c
autoconf
25ce8c
%configure --with-optimisation=
25ce8c
make %{?_smp_mflags} V=
85793c
%ifarch %{rust_arches}
85793c
%cargo_build
85793c
%endif
25ce8c
25ce8c
%install
25ce8c
make DESTDIR=%{buildroot} MANDIR=%{_mandir} install
85793c
%ifarch %{rust_arches}
85793c
make DESTDIR=%{buildroot} MANDIR=%{_mandir} install-rust-tools
85793c
# cargo_install installs into /usr/bin
85793c
#%%cargo_install
85793c
%endif
25ce8c
25ce8c
%files
25ce8c
%doc COPYING README.md
25ce8c
%{_mandir}/man8/cache_check.8.gz
25ce8c
%{_mandir}/man8/cache_dump.8.gz
25ce8c
%{_mandir}/man8/cache_metadata_size.8.gz
25ce8c
%{_mandir}/man8/cache_repair.8.gz
25ce8c
%{_mandir}/man8/cache_restore.8.gz
25ce8c
%{_mandir}/man8/cache_writeback.8.gz
25ce8c
%{_mandir}/man8/era_check.8.gz
25ce8c
%{_mandir}/man8/era_dump.8.gz
25ce8c
%{_mandir}/man8/era_invalidate.8.gz
25ce8c
%{_mandir}/man8/era_restore.8.gz
25ce8c
%{_mandir}/man8/thin_check.8.gz
25ce8c
%{_mandir}/man8/thin_delta.8.gz
25ce8c
%{_mandir}/man8/thin_dump.8.gz
25ce8c
%{_mandir}/man8/thin_ls.8.gz
25ce8c
%{_mandir}/man8/thin_metadata_size.8.gz
25ce8c
%{_mandir}/man8/thin_repair.8.gz
25ce8c
%{_mandir}/man8/thin_restore.8.gz
25ce8c
%{_mandir}/man8/thin_rmap.8.gz
25ce8c
%{_mandir}/man8/thin_trim.8.gz
85793c
%ifarch %{rust_arches}
85793c
%{_mandir}/man8/thin_metadata_pack.8.gz
85793c
%{_mandir}/man8/thin_metadata_unpack.8.gz
85793c
%endif
25ce8c
%{_sbindir}/pdata_tools
25ce8c
%{_sbindir}/cache_check
25ce8c
%{_sbindir}/cache_dump
25ce8c
%{_sbindir}/cache_metadata_size
25ce8c
%{_sbindir}/cache_repair
25ce8c
%{_sbindir}/cache_restore
25ce8c
%{_sbindir}/cache_writeback
25ce8c
%{_sbindir}/era_check
25ce8c
%{_sbindir}/era_dump
25ce8c
%{_sbindir}/era_invalidate
25ce8c
%{_sbindir}/era_restore
25ce8c
%{_sbindir}/thin_check
25ce8c
%{_sbindir}/thin_delta
25ce8c
%{_sbindir}/thin_dump
25ce8c
%{_sbindir}/thin_ls
25ce8c
%{_sbindir}/thin_metadata_size
25ce8c
%{_sbindir}/thin_repair
25ce8c
%{_sbindir}/thin_restore
25ce8c
%{_sbindir}/thin_rmap
25ce8c
%{_sbindir}/thin_trim
85793c
%ifarch %{rust_arches}
85793c
%{_sbindir}/thin_metadata_pack
85793c
%{_sbindir}/thin_metadata_unpack
85793c
%endif
25ce8c
#% {_sbindir}/thin_show_duplicates
25ce8c
25ce8c
%changelog
9b26e5
* Thu Jun 23 2022 Marian Csontos <mcsontos@redhat.com> - 0.9.0-7
9b26e5
- Improve duration of thin_repair on very large metadata devices.
9b26e5
257a2a
* Wed Dec 08 2021 Marian Csontos <mcsontos@redhat.com> - 0.9.0-6
257a2a
- Allows --clear-needs-check with --super-block-only or --skip-mappings.
257a2a
8cb1ad
* Tue Sep 07 2021 Marian Csontos <mcsontos@redhat.com> - 0.9.0-5
8cb1ad
- Fix several corner cases in thin_repair.
8cb1ad
e064fa
* Tue Aug 16 2021 Marian Csontos <mcsontos@redhat.com> - 0.9.0-4
e064fa
- Fix thin_repair clearing needs_check flag in repaired metadata.
e064fa
94bc47
* Mon Jun 28 2021 Marian Csontos <mcsontos@redhat.com> - 0.9.0-3
94bc47
- Fix rust-1.53 compilation issues.
94bc47
94bc47
* Thu Jun 24 2021 Jonathan Wakely <jwakely@redhat.com> - 0.9.0-2
94bc47
- Remove libboost_iostreams dependency.
94bc47
85793c
* Mon Jun 14 2021 Marian Csontos <mcsontos@redhat.com> - 0.9.0-1
85793c
- Update to upstream version 0.9.0.
85793c
- Fix important issues found by static analysis.
85793c
- Update crc32c to version 0.5 supporting non x86 architectures.
85793c
- New tools thin_metadata_pack and thin_metadata_unpack.
85793c
0de323
* Fri Aug 21 2020 Marian Csontos <mcsontos@redhat.com> - 0.8.5-4
0de323
- Under-populated btree nodes are non fatal to thin_check.
0de323
a75682
* Wed Nov 27 2019 Marian Csontos <mcsontos@redhat.com> - 0.8.5-3
a75682
- Remove obsolete pool-inactive option from thin_trim man page.
a75682
- Check input file exists eralier, and prevent writing incorrect metadata.
a75682
25ce8c
* Tue Jun 04 2019 Marian Csontos <mcsontos@redhat.com> - 0.8.5-2
25ce8c
- Bump release
25ce8c
25ce8c
* Tue Jun 04 2019 Marian Csontos <mcsontos@redhat.com> - 0.8.5-1
25ce8c
- Update to latest upstream version
25ce8c
25ce8c
* Tue Apr 24 2018 Marian Csontos <mcsontos@redhat.com> - 0.7.6-1
25ce8c
- Update to latest upstream version
25ce8c
25ce8c
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.5-3
25ce8c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
25ce8c
25ce8c
* Tue Jan 23 2018 Jonathan Wakely <jwakely@redhat.com> - 0.7.5-2
25ce8c
- Rebuilt for Boost 1.66
25ce8c
25ce8c
* Tue Nov 14 2017 Marian Csontos <mcsontos@redhat.com> - 0.7.5-1
25ce8c
- Fix version 2 metadata corruption in cache_restore.
25ce8c
25ce8c
* Fri Oct 06 2017 Marian Csontos <mcsontos@redhat.com> - 0.7.3-1
25ce8c
- Update to latest bugfix and documentation update release.
25ce8c
- *_restore tools wipe superblock as a last resort.
25ce8c
- Add thin_check --override-mapping-root.
25ce8c
25ce8c
* Fri Sep 22 2017 Marian Csontos <mcsontos@redhat.com> - 0.7.2-1
25ce8c
- Update to latest upstream release including various bug fixes and new features.
25ce8c
- Fix segfault when dump tools are given a tiny metadata file.
25ce8c
- Fix -V exiting with 1.
25ce8c
- Fix thin_check when running on XML dump instead of binary data.
25ce8c
- Speed up free block searching.
25ce8c
25ce8c
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.0-0.6.rc6
25ce8c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
25ce8c
25ce8c
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.0-0.5.rc6
25ce8c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
25ce8c
25ce8c
* Mon Jul 03 2017 Jonathan Wakely <jwakely@redhat.com> - 0.7.0-0.4.rc6
25ce8c
- Rebuilt for Boost 1.64
25ce8c
25ce8c
* Tue May 23 2017 Marian Csontos <mcsontos@redhat.com> - 0.7.0-0.3.rc6
25ce8c
- Rebuilt for mass rebuild incorrectly tagging master to .fc26
25ce8c
25ce8c
* Mon May 15 2017 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.0-0.2.rc6
25ce8c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_27_Mass_Rebuild
25ce8c
25ce8c
* Mon Mar 27 2017 Peter Rajnoha <prajnoha@redhat.com> - 0.7.0-0.1-rc6
25ce8c
- Don't open devices as writeable if --clear-needs-check-flag is not set.
25ce8c
- Fix cache metadata format version 2 superblock packing.
25ce8c
25ce8c
* Wed Mar 22 2017 Peter Rajnoha <prajnoha@redhat.com> - 0.7.0-0.1-rc5
25ce8c
- Switch to a faster implementation of crc32 used for checksums.
25ce8c
25ce8c
* Tue Mar 21 2017 Peter Rajnoha <prajnoha@redhat.com> - 0.7.0-0.1-rc4
25ce8c
- Add support for cache metadata format version 2 in cache tools.
25ce8c
25ce8c
* Thu Mar 16 2017 Peter Rajnoha <prajnoha@redhat.com> - 0.7.0-0.1-rc3
25ce8c
- Fix compilation warnings and further code cleanup.
25ce8c
25ce8c
* Thu Mar 09 2017 Peter Rajnoha <prajnoha@redhat.com> - 0.7.0-0.1-rc2
25ce8c
- Update to latest upstream release including various bug fixes and new features.
25ce8c
- New thin_show_duplicates command.
25ce8c
- Add '--skip-mappings' and '--format custom' options to thin_dump.
25ce8c
25ce8c
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.3-3
25ce8c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
25ce8c
25ce8c
* Fri Jan 27 2017 Jonathan Wakely <jwakely@redhat.com> - 0.6.3-2
25ce8c
- Rebuilt for Boost 1.63
25ce8c
25ce8c
* Thu Sep 22 2016 Peter Rajnoha <prajnoha@redhat.com> - 0.6.3-1
25ce8c
- Preallocate output file for thin_repair and thin_restore.
25ce8c
25ce8c
* Mon Jul 11 2016 Peter Rajnoha <prajnoha@redhat.com> - 0.6.2-1
25ce8c
- Fixes providing proper use of compiler flags.
25ce8c
25ce8c
* Mon Apr 11 2016 Peter Rajnoha <prajnoha@redhat.com> - 0.6.2-0.1.rc8
25ce8c
- Fixes for thin_trim.
25ce8c
25ce8c
* Tue Mar 22 2016 Peter Rajnoha <prajnoha@redhat.com> - 0.6.2-0.1.rc7
25ce8c
- Fixes for thin_repair.
25ce8c
25ce8c
* Wed Mar 09 2016 Peter Rajnoha <prajnoha@redhat.com> - 0.6.2-0.1.rc6
25ce8c
- Add new fields to thin_ls: MAPPED_BYTES, EXCLUSIVE_BYTES and SHARED_BYTES.
25ce8c
25ce8c
* Thu Feb 18 2016 Peter Rajnoha <prajnoha@redhat.com> - 0.6.2-0.1.rc5
25ce8c
- Fixes for thin_delta.
25ce8c
25ce8c
* Mon Feb 15 2016 Peter Rajnoha <prajnoha@redhat.com> - 0.6.2-0.1.rc4
25ce8c
- Fix bug in mapping comparison while using thin_delta.
25ce8c
25ce8c
* Mon Feb 15 2016 Peter Rajnoha <prajnoha@redhat.com> - 0.6.2-0.1.rc3
25ce8c
- Fix recent regression in thin_repair.
25ce8c
- Force g++-98 dialect.
25ce8c
25ce8c
* Mon Feb 15 2016 Peter Rajnoha <prajnoha@redhat.com> - 0.6.2-0.1.rc1
25ce8c
- Fix bug in thin_dump when using metadata snaps.
25ce8c
25ce8c
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.0-2
25ce8c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
25ce8c
25ce8c
* Wed Jan 20 2016 Peter Rajnoha <prajnoha@redhat.com> - 0.6.0-1
25ce8c
- New thin_ls command.
25ce8c
25ce8c
* Wed Jan 20 2016 Peter Rajnoha <prajnoha@redhat.com> - 0.5.6-1
25ce8c
- era_invalidate may be run on live metadata if the --metadata-snap
25ce8c
  option is given.
25ce8c
25ce8c
* Fri Jan 15 2016 Jonathan Wakely <jwakely@redhat.com> - 0.5.5-3
25ce8c
- Rebuilt for Boost 1.60
25ce8c
25ce8c
* Thu Aug 27 2015 Jonathan Wakely <jwakely@redhat.com> - 0.5.5-2
25ce8c
- Rebuilt for Boost 1.59
25ce8c
25ce8c
* Thu Aug 13 2015 Peter Rajnoha <prajnoha@redhat.com> - 0.5.5-1
25ce8c
- Support thin_delta's --metadata_snap option without specifying snap location.
25ce8c
- Update man pages to make it clearer that tools shoulnd't be run on live metadata.
25ce8c
- Fix bugs in the metadata reference counting for thin_check.
25ce8c
25ce8c
* Wed Jul 29 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5.4-3
25ce8c
- Rebuilt for https://fedoraproject.org/wiki/Changes/F23Boost159
25ce8c
25ce8c
* Wed Jul 22 2015 David Tardon <dtardon@redhat.com> - 0.5.4-2
25ce8c
- rebuild for Boost 1.58
25ce8c
25ce8c
* Fri Jul 17 2015 Peter Rajnoha <prajnoha@redhat.com> - 0.5.4-1
25ce8c
- Fix cache_check with --clear-needs-check-flag option to
25ce8c
  make sure metadata device is not open already by the tool
25ce8c
  when open with O_EXCL mode is requested.
25ce8c
25ce8c
* Fri Jul 03 2015 Peter Rajnoha <prajnoha@redhat.com> - 0.5.3-1
25ce8c
- Tools now open the metadata device in O_EXCL mode to stop
25ce8c
  running the tools on active metadata.
25ce8c
25ce8c
* Fri Jul 03 2015 Peter Rajnoha <prajnoha@redhat.com> - 0.5.2-1
25ce8c
- Fix bug in damage reporting in thin_dump and thin_check.
25ce8c
25ce8c
* Thu Jun 25 2015 Peter Rajnoha <prajnoha@redhat.com> - 0.5.1-1
25ce8c
- Fix crash if tools are given a very large metadata device to restore to.
25ce8c
25ce8c
* Mon Jun 22 2015 Peter Rajnoha <prajnoha@redhat.com> - 0.5.0-1
25ce8c
- Add space map checking for thin_check.
25ce8c
- Add --clear-needs-check option for cache_check.
25ce8c
- Update to latest upstream release.
25ce8c
25ce8c
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.2-2
25ce8c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
25ce8c
25ce8c
* Mon Jun 08 2015 Peter Rajnoha <prajnoha@redhat.com> - 0.4.2-1
25ce8c
- New thin_delta and thin_trim commands.
25ce8c
- Update to latest upstream release.
25ce8c
25ce8c
* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 0.4.1-4
25ce8c
- Rebuilt for GCC 5 C++11 ABI change
25ce8c
25ce8c
* Mon Jan 26 2015 Petr Machata <pmachata@redhat.com> - 0.4.1-3
25ce8c
- Rebuild for boost 1.57.0
25ce8c
25ce8c
* Wed Oct 29 2014 Heinz Mauelshagen <heinzm@redhat.com> - 0.4.1-2
25ce8c
- Resolves: bz#1159466
25ce8c
25ce8c
* Wed Oct 29 2014 Heinz Mauelshagen <heinzm@redhat.com> - 0.4.1-1
25ce8c
- New upstream version
25ce8c
- Manual header additions/fixes
25ce8c
25ce8c
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3.2-4
25ce8c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
25ce8c
25ce8c
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3.2-3
25ce8c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
25ce8c
25ce8c
* Thu May 22 2014 Petr Machata <pmachata@redhat.com> - 0.3.2-2
25ce8c
- Rebuild for boost 1.55.0
25ce8c
25ce8c
* Fri Apr 11 2014 Heinz Mauelshagen <heinzm@redhat.com> - 0.3.2-1
25ce8c
- New upstream version 0.3.2 fixing needs_check flag processing
25ce8c
25ce8c
* Thu Mar 27 2014 Heinz Mauelshagen <heinzm@redhat.com> - 0.3.0-1
25ce8c
- New upstream version 0.3.0 introducing era_{check,dump,invalidate}
25ce8c
25ce8c
* Fri Oct 18 2013 Heinz Mauelshagen <heinzm@redhat.com> - 0.2.8-1
25ce8c
- New upstream version 0.2.8 introducing cache_{check,dump,repair,restore}
25ce8c
25ce8c
* Tue Sep 17 2013 Heinz Mauelshagen <heinzm@redhat.com> - 0.2.7-1
25ce8c
- New upstream version 0.2.7
25ce8c
25ce8c
* Wed Jul 31 2013 Heinz Mauelshagen <heinzm@redhat.com> - 0.2.3-1
25ce8c
- New upstream version
25ce8c
25ce8c
* Tue Jul 30 2013 Dennis Gilmore <dennis@ausil.us> - 0.2.2-2
25ce8c
- rebuild against boost 1.54.0
25ce8c
25ce8c
* Tue Jul 30 2013 Heinz Mauelshagen <heinzm@redhat.com> - 0.2.2-1
25ce8c
- New upstream version
25ce8c
- manual header fixes 
25ce8c
25ce8c
* Tue Jul 30 2013 Petr Machata <pmachata@redhat.com> - 0.2.1-6
25ce8c
- Rebuild for boost 1.54.0
25ce8c
25ce8c
* Thu Jul 25 2013 Heinz Mauelshagen <heinzm@redhat.com> - 0.2.1-5
25ce8c
- enhance manual pages and fix typos
25ce8c
25ce8c
* Thu Jul 18 2013 Heinz Mauelshagen <heinzm@redhat.com> - 0.2.1-4
25ce8c
- Update thin_metadata_size manual page
25ce8c
- thin_dump: support dumping default metadata snapshot
25ce8c
25ce8c
* Thu Jul 18 2013 Heinz Mauelshagen <heinzm@redhat.com> - 0.2.1-3
25ce8c
- New thin_metadata_size tool to estimate amount of metadata space
25ce8c
  based on block size, pool size and maximum amount of thin devs and snapshots
25ce8c
- support metadata snapshots in thin_dump tool
25ce8c
- New man pages for thin_metadata_size, thin_repair and thin_rmap and man page fixes
25ce8c
25ce8c
* Tue Jul 16 2013 Heinz Mauelshagen <heinzm@redhat.com> - 0.2.1-2
25ce8c
- Build with nostrip fix from Ville Skyttä
25ce8c
25ce8c
* Mon Jul 15 2013 Ville Skyttä <ville.skytta@iki.fi> - 0.2.1-2
25ce8c
- Let rpmbuild strip binaries, don't override optflags, build more verbose.
25ce8c
25ce8c
* Fri Jul 12 2013 Heinz Mauelshagen <heinzm@redhat.com> - 0.2.1-1
25ce8c
- New upstream version.
25ce8c
25ce8c
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.4-3
25ce8c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
25ce8c
25ce8c
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.4-2
25ce8c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
25ce8c
25ce8c
* Thu Apr 19 2012 Milan Broz <mbroz@redhat.com> - 0.1.4-1
25ce8c
- Fix thin_check man page (add -q option).
25ce8c
- Install utilities in /usr/sbin.
25ce8c
25ce8c
* Tue Mar 13 2012 Milan Broz <mbroz@redhat.com> - 0.1.2-1
25ce8c
- New upstream version.
25ce8c
25ce8c
* Mon Mar 05 2012 Milan Broz <mbroz@redhat.com> - 0.1.1-1
25ce8c
- Fix quiet option.
25ce8c
25ce8c
* Fri Mar 02 2012 Milan Broz <mbroz@redhat.com> - 0.1.0-1
25ce8c
- New upstream version.
25ce8c
25ce8c
* Tue Feb 28 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.0.1-3
25ce8c
- Rebuilt for c++ ABI breakage
25ce8c
25ce8c
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.0.1-2
25ce8c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
25ce8c
25ce8c
* Wed Dec 21 2011 Milan Broz <mbroz@redhat.com> - 0.0.1-1
25ce8c
- Initial version