2009-07-23 23:16:05 +00:00
|
|
|
%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
|
|
|
|
|
|
|
|
Summary: An utility for manipulating storage encryption keys and passphrases
|
|
|
|
Name: volume_key
|
2009-09-30 15:50:13 +00:00
|
|
|
Version: 0.3
|
|
|
|
Release: 1%{?dist}
|
2009-07-23 23:16:05 +00:00
|
|
|
License: GPLv2
|
|
|
|
Group: Applications/System
|
|
|
|
URL: https://fedorahosted.org/volume_key/
|
|
|
|
Requires: volume_key-libs = %{version}-%{release}
|
|
|
|
|
|
|
|
Source0: https://fedorahosted.org/releases/v/o/volume_key/volume_key-%{version}.tar.bz2
|
|
|
|
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
|
2009-09-30 15:50:13 +00:00
|
|
|
BuildRequires: cryptsetup-luks-devel, gettext-devel, glib2-devel, gnupg
|
|
|
|
BuildRequires: gpgme-devel, libblkid-devel, nss-devel, python-devel
|
2009-07-23 23:16:05 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
This package provides a command-line tool for manipulating storage volume
|
|
|
|
encryption keys and storing them separately from volumes.
|
|
|
|
|
|
|
|
The main goal of the software is to allow restoring access to an encrypted
|
|
|
|
hard drive if the primary user forgets the passphrase. The encryption key
|
|
|
|
back up can also be useful for extracting data after a hardware or software
|
|
|
|
failure that corrupts the header of the encrypted volume, or to access the
|
|
|
|
company data after an employee leaves abruptly.
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: A library for manipulating storage encryption keys and passphrases
|
|
|
|
Group: Development/Libraries
|
|
|
|
Requires: volume_key-libs = %{version}-%{release}
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
This package provides libvolume_key, a library for manipulating storage volume
|
|
|
|
encryption keys and storing them separately from volumes.
|
|
|
|
|
|
|
|
The main goal of the software is to allow restoring access to an encrypted
|
|
|
|
hard drive if the primary user forgets the passphrase. The encryption key
|
|
|
|
back up can also be useful for extracting data after a hardware or software
|
|
|
|
failure that corrupts the header of the encrypted volume, or to access the
|
|
|
|
company data after an employee leaves abruptly.
|
|
|
|
|
|
|
|
%package libs
|
|
|
|
Summary: A library for manipulating storage encryption keys and passphrases
|
|
|
|
Group: System Environment/Libraries
|
|
|
|
|
|
|
|
%description libs
|
|
|
|
This package provides libvolume_key, a library for manipulating storage volume
|
|
|
|
encryption keys and storing them separately from volumes.
|
|
|
|
|
|
|
|
The main goal of the software is to allow restoring access to an encrypted
|
|
|
|
hard drive if the primary user forgets the passphrase. The encryption key
|
|
|
|
back up can also be useful for extracting data after a hardware or software
|
|
|
|
failure that corrupts the header of the encrypted volume, or to access the
|
|
|
|
company data after an employee leaves abruptly.
|
|
|
|
|
|
|
|
%package -n python-volume_key
|
|
|
|
Summary: Python bindings for libvolume_key
|
|
|
|
Group: System Environment/Libraries
|
|
|
|
Requires: volume_key-libs = %{version}-%{release}
|
|
|
|
|
|
|
|
%description -n python-volume_key
|
|
|
|
This package provides Python bindings for libvolume_key, a library for
|
|
|
|
manipulating storage volume encryption keys and storing them separately from
|
|
|
|
volumes.
|
|
|
|
|
|
|
|
The main goal of the software is to allow restoring access to an encrypted
|
|
|
|
hard drive if the primary user forgets the passphrase. The encryption key
|
|
|
|
back up can also be useful for extracting data after a hardware or software
|
|
|
|
failure that corrupts the header of the encrypted volume, or to access the
|
|
|
|
company data after an employee leaves abruptly.
|
|
|
|
|
|
|
|
volume_key currently supports only the LUKS volume encryption format. Support
|
|
|
|
for other formats is possible, some formats are planned for future releases.
|
|
|
|
|
|
|
|
%prep
|
2009-09-30 15:50:13 +00:00
|
|
|
%setup -q
|
2009-07-23 23:16:05 +00:00
|
|
|
|
|
|
|
%build
|
2009-09-30 15:50:13 +00:00
|
|
|
%configure
|
2009-07-23 23:16:05 +00:00
|
|
|
make %{?_smp_mflags}
|
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
2009-08-08 03:34:48 +00:00
|
|
|
make install DESTDIR=$RPM_BUILD_ROOT INSTALL='install -p'
|
2009-07-23 23:16:05 +00:00
|
|
|
|
|
|
|
%find_lang volume_key
|
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
%post libs -p /sbin/ldconfig
|
|
|
|
%postun libs -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%doc README
|
|
|
|
%{_bindir}/volume_key
|
|
|
|
%{_mandir}/man8/volume_key.8*
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%{_includedir}/volume_key
|
|
|
|
%exclude %{_libdir}/libvolume_key.la
|
|
|
|
%{_libdir}/libvolume_key.so
|
|
|
|
|
|
|
|
%files libs -f volume_key.lang
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%doc AUTHORS COPYING ChangeLog NEWS
|
|
|
|
%{_libdir}/libvolume_key.so.*
|
|
|
|
|
|
|
|
%files -n python-volume_key
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%exclude %{python_sitearch}/_volume_key.la
|
|
|
|
%{python_sitearch}/_volume_key.so
|
|
|
|
%{python_sitearch}/volume_key.py*
|
|
|
|
|
|
|
|
%changelog
|
2009-09-30 15:50:13 +00:00
|
|
|
* Wed Sep 30 2009 Miloslav Trmač <mitr@redhat.com> - 0.3-1
|
|
|
|
- Update to volume_key-0.3.
|
|
|
|
- Drop bundled libcryptsetup.
|
|
|
|
|
2009-08-08 03:34:48 +00:00
|
|
|
* Sat Aug 8 2009 Miloslav Trmač <mitr@redhat.com> - 0.2-3
|
|
|
|
- Handle changed "TYPE=crypto_LUKS" from libblkid
|
|
|
|
- Preserve file timestamps during installation
|
|
|
|
|
2009-07-27 06:58:12 +00:00
|
|
|
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-07-23 23:16:05 +00:00
|
|
|
* Tue Jun 30 2009 Miloslav Trmač <mitr@redhat.com> - 0.2-1
|
|
|
|
- Initial build.
|