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
|
2011-03-31 21:50:17 +00:00
|
|
|
Version: 0.3.6
|
|
|
|
Release: 1%{?dist}
|
2009-07-23 23:16:05 +00:00
|
|
|
License: GPLv2
|
|
|
|
Group: Applications/System
|
|
|
|
URL: https://fedorahosted.org/volume_key/
|
2011-02-04 22:33:23 +00:00
|
|
|
Requires: volume_key-libs%{?_isa} = %{version}-%{release}
|
2009-07-23 23:16:05 +00:00
|
|
|
|
2010-03-04 21:27:11 +00:00
|
|
|
Source0: https://fedorahosted.org/releases/v/o/volume_key/volume_key-%{version}.tar.xz
|
2009-09-30 15:47:30 +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
|
2011-02-04 22:33:23 +00:00
|
|
|
Requires: volume_key-libs%{?_isa} = %{version}-%{release}
|
2009-07-23 23:16:05 +00:00
|
|
|
|
|
|
|
%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
|
2011-02-04 22:33:23 +00:00
|
|
|
Requires: volume_key-libs%{?_isa} = %{version}-%{release}
|
2009-07-23 23:16:05 +00:00
|
|
|
|
|
|
|
%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:47:30 +00:00
|
|
|
%setup -q
|
2009-07-23 23:16:05 +00:00
|
|
|
|
|
|
|
%build
|
2009-09-30 15:47:30 +00:00
|
|
|
%configure
|
2009-07-23 23:16:05 +00:00
|
|
|
make %{?_smp_mflags}
|
|
|
|
|
|
|
|
%install
|
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,-)
|
2010-11-24 15:52:33 +00:00
|
|
|
%doc README contrib
|
2009-07-23 23:16:05 +00:00
|
|
|
%{_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
|
2011-03-31 21:50:17 +00:00
|
|
|
* Thu Mar 31 2011 Miloslav Trmač <mitr@redhat.com> - 0.3.6-1
|
|
|
|
- Update to volume_key-0.3.6
|
|
|
|
|
2011-02-08 01:47:12 +00:00
|
|
|
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3.5-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2011-02-04 22:33:23 +00:00
|
|
|
* Fri Feb 4 2011 Miloslav Trmač <mitr@redhat.com> - 0.3.5-2
|
|
|
|
- Use %%{?_isa} in Requires:
|
|
|
|
|
2010-11-24 15:52:33 +00:00
|
|
|
* Wed Nov 24 2010 Miloslav Trmač <mitr@redhat.com> - 0.3.5-1
|
|
|
|
- Update to volume_key-0.3.5
|
|
|
|
|
2010-10-18 15:45:07 +00:00
|
|
|
* Mon Oct 18 2010 Miloslav Trmač <mitr@redhat.com> - 0.3.4-4
|
|
|
|
- Tell the user if asking for the same passphrase again
|
|
|
|
Resolves: #641111
|
|
|
|
- Check certificate file before interacting with the user
|
|
|
|
Resolves: #643897
|
|
|
|
|
2010-10-08 17:30:21 +00:00
|
|
|
* Fri Oct 8 2010 Miloslav Trmač <mitr@redhat.com> - 0.3.4-3
|
|
|
|
- Make it possible to interrupt password prompts
|
|
|
|
Resolves: #641111
|
|
|
|
|
2010-09-29 19:37:53 +00:00
|
|
|
* Wed Sep 29 2010 Miloslav Trmač <mitr@redhat.com> - 0.3.4-2
|
|
|
|
- Clarify which block device should be passed as an argument
|
|
|
|
Resolves: #636541
|
|
|
|
- Recognize SSL error messages from NSS as well
|
|
|
|
Resolves: #638732
|
|
|
|
|
2010-08-26 22:42:46 +00:00
|
|
|
* Fri Aug 27 2010 Miloslav Trmač <mitr@redhat.com> - 0.3.4-1
|
|
|
|
- Update to volume_key-0.3.4
|
|
|
|
|
2010-07-26 13:29:23 +00:00
|
|
|
* Mon Jul 26 2010 Miloslav Trmač <mitr@redhat.com> - 0.3.3-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
|
|
|
|
|
2010-07-22 12:58:14 +00:00
|
|
|
* Thu Jul 22 2010 Miloslav Trmač <mitr@redhat.com> - 0.3.3-3
|
|
|
|
- Fix build with new gpgme
|
|
|
|
|
2010-07-22 07:11:45 +00:00
|
|
|
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 0.3.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
|
|
|
|
|
2010-03-26 15:48:36 +00:00
|
|
|
* Fri Mar 26 2010 Miloslav Trmač <mitr@redhat.com> - 0.3.3-1
|
|
|
|
- Update to volume_key-0.3.3
|
|
|
|
|
2010-03-04 21:27:11 +00:00
|
|
|
* Thu Mar 4 2010 Miloslav Trmač <mitr@redhat.com> - 0.3.2-1
|
|
|
|
- Update to volume_key-0.3.2
|
|
|
|
- Drop no longer necessary references to BuildRoot:
|
|
|
|
|
2010-02-05 17:01:26 +00:00
|
|
|
* Fri Feb 5 2010 Miloslav Trmač <mitr@redhat.com> - 0.3.1-2
|
|
|
|
- Fix a crash when an empty passphrase is provided
|
|
|
|
Resolves: #558410
|
|
|
|
|
2009-12-11 13:37:02 +00:00
|
|
|
* Fri Dec 11 2009 Miloslav Trmač <mitr@redhat.com> - 0.3.1-1
|
|
|
|
- Update to volume_key-0.3.1.
|
|
|
|
|
2009-09-30 15:47:30 +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.
|