commit c6a703d384d996c8b4c0be3890bc025a434027be Author: CentOS Sources Date: Tue Jul 27 17:59:17 2021 +0000 import volume_key-0.3.11-5.el8 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3ca1779 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/volume_key-0.3.11.tar.xz diff --git a/.volume_key.metadata b/.volume_key.metadata new file mode 100644 index 0000000..843a7b6 --- /dev/null +++ b/.volume_key.metadata @@ -0,0 +1 @@ +6b78342047d234fcccb3d1baa6b558f656c44be6 SOURCES/volume_key-0.3.11.tar.xz diff --git a/SOURCES/volume_key-0.3.11-support_LUKS_all.patch b/SOURCES/volume_key-0.3.11-support_LUKS_all.patch new file mode 100644 index 0000000..0516842 --- /dev/null +++ b/SOURCES/volume_key-0.3.11-support_LUKS_all.patch @@ -0,0 +1,36 @@ +From d0aa966c014d8301371e693966dcac3d9e9c0ccd Mon Sep 17 00:00:00 2001 +From: Vojtech Trefny +Date: Mon, 10 Sep 2018 13:07:41 +0200 +Subject: [PATCH] Add suppport for opening LUKS2 devices + +--- + lib/volume_luks.c | 6 +++++- + 1 file changed, 5 insertions(+), 1 deletion(-) + +diff --git a/lib/volume_luks.c b/lib/volume_luks.c +index f4bf2c8..d1c5d47 100644 +--- a/lib/volume_luks.c ++++ b/lib/volume_luks.c +@@ -30,6 +30,10 @@ Author: Miloslav Trmač */ + #include "volume.h" + #include "volume_luks.h" + ++#ifndef CRYPT_LUKS ++#define CRYPT_LUKS NULL ++#endif ++ + /* LUKS - specific code */ + + /* Return an error message for ERR_NO, for g_free (). */ +@@ -105,7 +109,7 @@ open_crypt_device (const char *path, char **last_log_entry, GError **error) + if (r < 0) + goto err; + crypt_set_log_callback(cd, record_cryptsetup_log_entry, last_log_entry); +- r = crypt_load (cd, CRYPT_LUKS1, NULL); ++ r = crypt_load (cd, CRYPT_LUKS, NULL); + if (r < 0) + goto err_cd; + return cd; +-- +2.17.1 + diff --git a/SPECS/volume_key.spec b/SPECS/volume_key.spec new file mode 100644 index 0000000..15f06fe --- /dev/null +++ b/SPECS/volume_key.spec @@ -0,0 +1,308 @@ +Summary: An utility for manipulating storage encryption keys and passphrases +Name: volume_key +Version: 0.3.11 +Release: 5%{?dist} +# lib/{SECerrs,SSLerrs}.h are both licensed under MPLv1.1, GPLv2 and LGPLv2 +License: GPLv2 and (MPLv1.1 or GPLv2 or LGPLv2) +Group: Applications/System +URL: https://pagure.io/volume_key/ +Requires: volume_key-libs%{?_isa} = %{version}-%{release} + +Source0: https://releases.pagure.org/volume_key/volume_key-%{version}.tar.xz +# Add support for opening all types of LUKS devices (not just LUKS1) +# Resolves: rhbz#1626974 +Patch0: volume_key-0.3.11-support_LUKS_all.patch +BuildRequires: cryptsetup-luks-devel, gettext-devel, glib2-devel, /usr/bin/gpg2 +BuildRequires: gpgme-devel, libblkid-devel, nss-devel, python3-devel +# Needed by %%check: +BuildRequires: nss-tools + +%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%{?_isa} = %{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 +Requires: /usr/bin/gpg2 + +%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 python3-volume_key +%{?python_provide:%python_provide python3-volume_key} +Summary: Python bindings for libvolume_key +Group: System Environment/Libraries +Requires: volume_key-libs%{?_isa} = %{version}-%{release} + +%description -n python3-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 +%setup -q +%patch0 -p1 + +%build +%configure +make %{?_smp_mflags} + +%install +make install DESTDIR=$RPM_BUILD_ROOT INSTALL='install -p' + +%find_lang volume_key + +%check +make check || { \ +echo "======================== ./test-suite.log ========================"; \ +cat ./test-suite.log; \ +echo "=================================================================="; \ +exit 1; \ +} + +%clean +rm -rf $RPM_BUILD_ROOT + +%ldconfig_scriptlets libs + +%files +%defattr(-,root,root,-) +%doc README contrib +%{_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 python3-volume_key +%defattr(-,root,root,-) +%exclude %{python3_sitearch}/_volume_key.la +%{python3_sitearch}/_volume_key.so +%{python3_sitearch}/volume_key.py* +%{python3_sitearch}/__pycache__/volume_key.* + +%changelog +* Wed Aug 14 2019 Jiri Kucera - 0.3.11-5 +- Place %%find_lang to proper place + Resolves: #1665135 + +* Tue Jan 08 2019 Jiri Kucera - 0.3.11-4 +- fixed License +- Requires: /usr/bin/gpg2 in libs subpackage +- Added support for opening all types of LUKS devices + Resolves: #1626974 + +* Thu Aug 09 2018 Jiri Kucera - 0.3.11-3 +- Added %%check + Resolves: #1614420 + +* Tue Jul 24 2018 Jiri Kucera - 0.3.11-2 +- added missing licenses +- update to gpg2 + +* Thu Jul 19 2018 Charalampos Stratakis - 0.3.11-1 +- Update to 3.11 +- Change to Python 3 + +* Fri Jul 13 2018 Petr Viktorin - 0.3.9-20 +- Allow Python 2 for build + +* Fri Feb 09 2018 Fedora Release Engineering - 0.3.9-19 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Sat Feb 03 2018 Igor Gnatenko - 0.3.9-18 +- Switch to %%ldconfig_scriptlets + +* Tue Nov 7 2017 Miloslav Trmač - 0.3.9-17 +- Update for libcryptsetup ABI change + +* Sat Aug 19 2017 Zbigniew Jędrzejewski-Szmek - 0.3.9-16 +- Python 2 binary package renamed to python2-volume_key + See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3 + +* Thu Aug 03 2017 Fedora Release Engineering - 0.3.9-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Thu Jul 27 2017 Fedora Release Engineering - 0.3.9-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Mon May 29 2017 Miloslav Trmač - 0.3.9-13 +- Point URL: and Source: to the new home at pagure.io + Resolves: 1456378 + +* Sat Feb 11 2017 Fedora Release Engineering - 0.3.9-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Sat Dec 10 2016 Igor Gnatenko - 0.3.9-11 +- Rebuild for gpgme 1.18 + +* Tue Jul 19 2016 Fedora Release Engineering - 0.3.9-10 +- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages + +* Fri Feb 05 2016 Fedora Release Engineering - 0.3.9-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Fri Jun 19 2015 Fedora Release Engineering - 0.3.9-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Tue Jan 13 2015 Miloslav Trmač - 0.3.9-7 +- Don't #include in libvolume_key.h + Patch by Vratislav Podzimek . + +* Mon Aug 18 2014 Fedora Release Engineering - 0.3.9-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + +* Sun Jun 08 2014 Fedora Release Engineering - 0.3.9-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Sun Aug 04 2013 Fedora Release Engineering - 0.3.9-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Fri Feb 15 2013 Fedora Release Engineering - 0.3.9-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Thu Nov 22 2012 Miloslav Trmač - 0.3.9-2 +- Fix a crash when trying to use passphrase encryption in FIPS mode + +* Sat Sep 22 2012 Miloslav Trmač - 0.3.9-1 +- Update to volume_key-0.3.9 + +* Mon Aug 6 2012 Miloslav Trmač - 0.3.8-4 +- Use BuildRequires: /usr/bin/gpg instead of gnupg, for compatibility with RHEL + +* Mon Jul 23 2012 Miloslav Trmač - 0.3.8-3 +- Add Requires: /usr/bin/gpg + Resolves: #842074 + +* Sun Jul 22 2012 Fedora Release Engineering - 0.3.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Sat Mar 3 2012 Miloslav Trmač - 0.3.8-1 +- Update to volume_key-0.3.8 + +* Sat Jan 14 2012 Fedora Release Engineering - 0.3.7-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Fri Oct 14 2011 Miloslav Trmač - 0.3.7-2 +- Rebuild with newer libcryptsetup + +* Wed Aug 24 2011 Miloslav Trmač - 0.3.7-1 +- Update to volume_key-0.3.7 + +* Fri Jun 10 2011 Miloslav Trmač - 0.3.6-2 +- Fix a typo + Resolves: #712256 + +* Thu Mar 31 2011 Miloslav Trmač - 0.3.6-1 +- Update to volume_key-0.3.6 + +* Mon Feb 07 2011 Fedora Release Engineering - 0.3.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Fri Feb 4 2011 Miloslav Trmač - 0.3.5-2 +- Use %%{?_isa} in Requires: + +* Wed Nov 24 2010 Miloslav Trmač - 0.3.5-1 +- Update to volume_key-0.3.5 + +* Mon Oct 18 2010 Miloslav Trmač - 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 + +* Fri Oct 8 2010 Miloslav Trmač - 0.3.4-3 +- Make it possible to interrupt password prompts + Resolves: #641111 + +* Wed Sep 29 2010 Miloslav Trmač - 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 + +* Fri Aug 27 2010 Miloslav Trmač - 0.3.4-1 +- Update to volume_key-0.3.4 + +* Mon Jul 26 2010 Miloslav Trmač - 0.3.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild + +* Thu Jul 22 2010 Miloslav Trmač - 0.3.3-3 +- Fix build with new gpgme + +* Thu Jul 22 2010 David Malcolm - 0.3.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild + +* Fri Mar 26 2010 Miloslav Trmač - 0.3.3-1 +- Update to volume_key-0.3.3 + +* Thu Mar 4 2010 Miloslav Trmač - 0.3.2-1 +- Update to volume_key-0.3.2 +- Drop no longer necessary references to BuildRoot: + +* Fri Feb 5 2010 Miloslav Trmač - 0.3.1-2 +- Fix a crash when an empty passphrase is provided + Resolves: #558410 + +* Fri Dec 11 2009 Miloslav Trmač - 0.3.1-1 +- Update to volume_key-0.3.1. + +* Wed Sep 30 2009 Miloslav Trmač - 0.3-1 +- Update to volume_key-0.3. +- Drop bundled libcryptsetup. + +* Sat Aug 8 2009 Miloslav Trmač - 0.2-3 +- Handle changed "TYPE=crypto_LUKS" from libblkid +- Preserve file timestamps during installation + +* Sun Jul 26 2009 Fedora Release Engineering - 0.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Tue Jun 30 2009 Miloslav Trmač - 0.2-1 +- Initial build.