device-mapper-persistent-data/device-mapper-persistent-da...

57 lines
1.6 KiB
RPMSpec
Raw Normal View History

2011-12-21 15:51:14 +00:00
#
# Copyright (C) 2011 Red Hat, Inc
#
Summary: Device-mapper thin provisioning tools
Name: device-mapper-persistent-data
Version: 0.0.1
2012-02-28 18:12:59 +00:00
Release: 3%{?dist}
2011-12-21 15:51:14 +00:00
License: GPLv3+
Group: System Environment/Base
URL: https://github.com/jthornber/thin-provisioning-tools
BuildRequires: expat-devel, libstdc++-devel, boost-devel, autoconf, automake
# The source for this package was pulled from upstream's git.
# Use the following URL to access the tarball:
# https://github.com/jthornber/thin-provisioning-tools/tarball/%%{version}
%global upstream_tag 4dcab4b
%global upstream_version %{version}-0-g%{upstream_tag}
Source0: jthornber-thin-provisioning-tools-%{upstream_version}.tar.gz
Requires: expat
%description
thin-provisioning-tools contains dump,restore and repair tools to
manage device-mapper thin provisioning target metadata devices.
%prep
%setup -q -n jthornber-thin-provisioning-tools-%{upstream_tag}
autoreconf
%build
%global _root_sbindir /sbin
%configure --enable-debug --enable-testing
%install
make DESTDIR=%{buildroot} MANDIR=%{_mandir} install
%clean
%files
%doc COPYING README
%{_mandir}/man8/thin_dump.8.gz
%{_mandir}/man8/thin_repair.8.gz
%{_mandir}/man8/thin_restore.8.gz
%{_root_sbindir}/thin_dump
%{_root_sbindir}/thin_repair
%{_root_sbindir}/thin_restore
%changelog
2012-02-28 18:12:59 +00:00
* Tue Feb 28 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.0.1-3
- Rebuilt for c++ ABI breakage
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.0.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
2011-12-21 15:51:14 +00:00
* Wed Dec 21 2011 Milan Broz <mbroz@redhat.com> - 0.0.1-1
- Initial version