From a390326493b1a45a5b994b15346c8dd7cfc136ee Mon Sep 17 00:00:00 2001 From: CentOS Buildsys Date: Nov 05 2013 13:58:17 +0000 Subject: import cryptsetup-1.6.2-2.el7.src.rpm --- diff --git a/.cryptsetup.metadata b/.cryptsetup.metadata new file mode 100644 index 0000000..e34e4ec --- /dev/null +++ b/.cryptsetup.metadata @@ -0,0 +1 @@ +8d04c5c1a8cad4faf7418fc2124b31bba2d50a1e SOURCES/cryptsetup-1.6.2.tar.bz2 diff --git a/README.md b/README.md deleted file mode 100644 index 0e7897f..0000000 --- a/README.md +++ /dev/null @@ -1,5 +0,0 @@ -The master branch has no content - -Look at the c7 branch if you are working with CentOS-7, or the c4/c5/c6 branch for CentOS-4, 5 or 6 - -If you find this file in a distro specific branch, it means that no content has been checked in yet diff --git a/SOURCES/cryptsetup-reencrypt-module.patch b/SOURCES/cryptsetup-reencrypt-module.patch new file mode 100644 index 0000000..6afac61 --- /dev/null +++ b/SOURCES/cryptsetup-reencrypt-module.patch @@ -0,0 +1,106 @@ +diff -rupN cryptsetup-1.6.2.old/misc/dracut_90reencrypt/module-setup.sh cryptsetup-1.6.2/misc/dracut_90reencrypt/module-setup.sh +--- cryptsetup-1.6.2.old/misc/dracut_90reencrypt/module-setup.sh 2013-10-22 17:49:43.677906826 +0200 ++++ cryptsetup-1.6.2/misc/dracut_90reencrypt/module-setup.sh 2013-10-22 17:53:11.214137892 +0200 +@@ -7,14 +7,21 @@ check() { + + depends() { + echo dm rootfs-block +- return 0 + } + + installkernel() { +- instmods dm_crypt =crypto ++ # requires hostonly='' override so that loop module is pulled in initramfs ++ # even if not loaded in actual kernel. dracut bug? ++ hostonly='' instmods dm_crypt =crypto loop + } + + install() { ++ if dracut_module_included crypt; then ++ derror "'reencrypt' can't be installed together with 'crypt'." ++ derror "Add '-o crypt' option to install reencrypt module." ++ return 1 ++ fi ++ + dracut_install cryptsetup-reencrypt + + inst_hook cmdline 30 "$moddir/parse-reencrypt.sh" + inst_simple "$moddir"/reencrypt.sh /sbin/reencrypt +diff -rupN cryptsetup-1.6.2.old/misc/dracut_90reencrypt/parse-reencrypt.sh cryptsetup-1.6.2/misc/dracut_90reencrypt/parse-reencrypt.sh +--- cryptsetup-1.6.2.old/misc/dracut_90reencrypt/parse-reencrypt.sh 2013-10-22 17:49:43.677906826 +0200 ++++ cryptsetup-1.6.2/misc/dracut_90reencrypt/parse-reencrypt.sh 2013-10-22 17:57:58.391063270 +0200 +@@ -1,10 +1,10 @@ + #!/bin/sh + +-REENC=$(getargs rd_REENCRYPT=) ++REENC=$(getargs rd.luks.reencrypt=) + REENC_DEV=$(echo $REENC | sed 's/:.*//') + REENC_SIZE=$(echo $REENC | sed -n 's/.*://p') + +-REENC_KEY=$(getargs rd_REENCRYPT_KEY=) ++REENC_KEY=$(getargs rd.luks.reencrypt_key=) + if [ -z "$REENC_KEY" ] ; then + REENC_KEY=none + fi +diff -rupN cryptsetup-1.6.2.old/misc/dracut_90reencrypt/README cryptsetup-1.6.2/misc/dracut_90reencrypt/README +--- cryptsetup-1.6.2.old/misc/dracut_90reencrypt/README 2013-10-22 17:49:43.677906826 +0200 ++++ cryptsetup-1.6.2/misc/dracut_90reencrypt/README 2013-10-22 18:01:08.224347499 +0200 +@@ -2,10 +2,12 @@ Example of simple dracut module for reen + LUKS drive on-the-fly. + + Install in /usr/[share|lib]/dracut/modules.d/90reencrypt, then +-rebuild intramfs "with dracut -f -a reencrypt". ++build special intramfs "with dracut -a reencrypt -o crypt". ++Reencrypt module doesn't work (has a conflict) with crypt module as ++of now. After successfull reencryption reboot using original initramfs. + +-Dracut then recognize argument rd_REENCRYPT=name:size, +-e.g. rd_REENCRYPT=sda2:52G means only 52G of device ++Dracut then recognize argument rd.luks.reencrypt=name:size, ++e.g. rd.luks.reencrypt=sda2:52G means only 52G of device + will be reencrypted (default is whole device). + (Name is kernel name of device.) + +diff -rupN cryptsetup-1.6.2.old/misc/dracut_90reencrypt/reencrypt.sh cryptsetup-1.6.2/misc/dracut_90reencrypt/reencrypt.sh +--- cryptsetup-1.6.2.old/misc/dracut_90reencrypt/reencrypt.sh 2013-10-22 17:49:43.677906826 +0200 ++++ cryptsetup-1.6.2/misc/dracut_90reencrypt/reencrypt.sh 2013-10-22 18:00:18.871533944 +0200 +@@ -5,6 +5,8 @@ + + [ -d /sys/module/dm_crypt ] || modprobe dm_crypt + ++[ -d /sys/module/loop ] || modprobe loop ++ + [ -f /tmp/reencrypted ] && exit 0 + + . /lib/dracut-lib.sh +@@ -43,6 +45,7 @@ reenc_run() { + info "REENCRYPT using key $1" + reenc_readkey "$1" | /sbin/cryptsetup-reencrypt -d - $PARAMS + fi ++ _ret=$? + cd $cwd + } + +@@ -50,9 +53,18 @@ info "REENCRYPT $device requested" + # flock against other interactive activities + { flock -s 9; + reenc_run $2 +-} 9>/.console.lock ++} 9>/.console_lock ++ ++if [ $_ret -eq 0 ]; then ++ # do not ask again ++ >> /tmp/reencrypted ++ warn "Reencryption of device $device has finished successfully. Use previous" ++ warn "initramfs image (without reencrypt module) to boot the system. When" ++ warn "you leave the emergency shell, the system will reboot." + +-# do not ask again +->> /tmp/reencrypted ++ emergency_shell -n "(reboot)" ++ /usr/bin/systemctl reboot ++fi + +-exit 0 ++# panic the kernel otherwise ++exit 1 diff --git a/SPECS/cryptsetup.spec b/SPECS/cryptsetup.spec new file mode 100644 index 0000000..e1cdcfd --- /dev/null +++ b/SPECS/cryptsetup.spec @@ -0,0 +1,475 @@ +Summary: A utility for setting up encrypted disks +Name: cryptsetup +Version: 1.6.2 +Release: 2%{?dist} +License: GPLv2+ and LGPLv2+ +Group: Applications/System +URL: http://cryptsetup.googlecode.com/ +BuildRequires: libgcrypt-devel, popt-devel, device-mapper-devel +BuildRequires: libgpg-error-devel, libuuid-devel, libsepol-devel +BuildRequires: libselinux-devel, python-devel, libpwquality-devel +BuildRequires: fipscheck-devel >= 1.3.0 +Provides: cryptsetup-luks = %{version}-%{release} +Obsoletes: cryptsetup-luks < 1.4.0 +Requires: cryptsetup-libs = %{version}-%{release} +Requires: fipscheck-lib%{_isa} >= 1.3.0 +Requires: libpwquality >= 1.2.0 + +%define dracutmodulesdir %{_prefix}/lib/dracut/modules.d +%define upstream_version %{version} +Source0: http://cryptsetup.googlecode.com/files/cryptsetup-%{upstream_version}.tar.bz2 +Patch0: cryptsetup-reencrypt-module.patch + +%if 0%{?fedora} >= 19 || 0%{?rhel} >= 7 +%define configure_cipher --enable-gcrypt-pbkdf2 +%else +%define configure_cipher --with-luks1-cipher=aes --with-luks1-mode=cbc-essiv:sha256 --with-luks1-keybits=256 +%endif + +%description +The cryptsetup package contains a utility for setting up +disk encryption using dm-crypt kernel module. + +%package devel +Group: Development/Libraries +Requires: %{name} = %{version}-%{release} +Requires: libgcrypt-devel > 1.1.42, device-mapper-devel, libuuid-devel +Requires: pkgconfig +Summary: Headers and libraries for using encrypted file systems +Provides: cryptsetup-luks-devel = %{version}-%{release} +Obsoletes: cryptsetup-luks-devel < 1.4.0 + +%description devel +The cryptsetup-devel package contains libraries and header files +used for writing code that makes use of disk encryption. + +%package libs +Group: System Environment/Libraries +Summary: Cryptsetup shared library +Provides: cryptsetup-luks-libs = %{version}-%{release} +Obsoletes: cryptsetup-luks-libs < 1.4.0 +Requires: fipscheck-lib%{_isa} >= 1.3.0 +# Need support for empty password in gcrypt PBKDF2 +%if 0%{?fedora} >= 19 || 0%{?rhel} >= 7 +Requires: libgcrypt >= 1.5.0-9 +%endif + +%description libs +This package contains the cryptsetup shared library, libcryptsetup. + +%package -n veritysetup +Group: Applications/System +Summary: A utility for setting up dm-verity volumes +Requires: cryptsetup-libs = %{version}-%{release} + +%description -n veritysetup +The veritysetup package contains a utility for setting up +disk verification using dm-verity kernel module. + +%package reencrypt +Group: Applications/System +Summary: A utility for offline reencryption of LUKS encrypted disks. +Requires: cryptsetup-libs = %{version}-%{release} + +%description reencrypt +This package contains cryptsetup-reencrypt utility which +can be used for offline reencryption of disk in site. +Also includes dracut module required to perform reencryption +of device containing a root filesystem. + +%package python +Group: System Environment/Libraries +Summary: Python bindings for libcryptsetup +Requires: %{name}-libs = %{version}-%{release} +Provides: python-cryptsetup = %{version}-%{release} +Obsoletes: python-cryptsetup < 1.4.0 + +%description python +This package provides Python bindings for libcryptsetup, a library +for setting up disk encryption using dm-crypt kernel module. + +%prep +%setup -q -n cryptsetup-%{upstream_version} +%patch0 -p1 +chmod -x python/pycryptsetup-test.py + +%build +%configure --enable-python --enable-fips --enable-cryptsetup-reencrypt --enable-pwquality %{?configure_cipher} +# remove rpath +sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool +sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool +make %{?_smp_mflags} + +%install +# Generate HMAC checksums (FIPS) +%define __spec_install_post \ + %{?__debug_package:%{__debug_install_post}} \ + %{__arch_install_post} \ + %{__os_install_post} \ + fipshmac -d %{buildroot}/%{_libdir}/fipscheck %{buildroot}/%{_sbindir}/cryptsetup \ + fipshmac -d %{buildroot}/%{_libdir}/fipscheck %{buildroot}/%{_libdir}/libcryptsetup.so.* \ +%{nil} + +make install DESTDIR=%{buildroot} +rm -rf %{buildroot}/%{_libdir}/*.la +install -d %{buildroot}/%{_libdir}/fipscheck +%find_lang cryptsetup + +install -d -m755 %{buildroot}/%{dracutmodulesdir}/90reencrypt +install -m755 misc/dracut_90reencrypt/module-setup.sh %{buildroot}/%{dracutmodulesdir}/90reencrypt +install -m755 misc/dracut_90reencrypt/parse-reencrypt.sh %{buildroot}/%{dracutmodulesdir}/90reencrypt +install -m755 misc/dracut_90reencrypt/reencrypt.sh %{buildroot}/%{dracutmodulesdir}/90reencrypt + +%post -n cryptsetup-libs -p /sbin/ldconfig + +%postun -n cryptsetup-libs -p /sbin/ldconfig + +%files +%doc COPYING AUTHORS FAQ docs/*ReleaseNotes +%{_mandir}/man8/cryptsetup.8.gz +%{_sbindir}/cryptsetup +%{_libdir}/fipscheck/cryptsetup.hmac + +%files -n veritysetup +%doc COPYING +%{_mandir}/man8/veritysetup.8.gz +%{_sbindir}/veritysetup + +%files reencrypt +%doc COPYING misc/dracut_90reencrypt/README +%{_mandir}/man8/cryptsetup-reencrypt.8.gz +%{_sbindir}/cryptsetup-reencrypt +%{dracutmodulesdir}/90reencrypt +%{dracutmodulesdir}/90reencrypt/* + +%files devel +%doc docs/examples/* +%{_includedir}/libcryptsetup.h +%{_libdir}/libcryptsetup.so +%{_libdir}/pkgconfig/libcryptsetup.pc + +%files libs -f cryptsetup.lang +%doc COPYING COPYING.LGPL +%{_libdir}/libcryptsetup.so.* +%{_libdir}/fipscheck/libcryptsetup.so.*.hmac + +%files python +%doc COPYING.LGPL python/pycryptsetup-test.py +%exclude %{python_sitearch}/pycryptsetup.la +%{python_sitearch}/pycryptsetup.so + +%clean + +%changelog +* Tue Nov 5 2013 Ondrej Kozina - 1.6.2-2 +- 90reencrypt: Move conflict with 90crypt to install() section. +- 90reencrypt: Drop to emergency_shell after successful reencryption. +- Resolves: #1021593 + +* Mon Oct 14 2013 Ondrej Kozina - 1.6.2-1 +- Update to cryptsetup 1.6.2. +- Add dracut module for cryptsetup-reencrypt (90reencrypt). +- 90reencrypt: Rename dracut parameteres to be compliant with actual naming guidance. +- 90reencrypt: Install and load loop kernel module. +- 90reencrypt: Fix lock file name. +- 90reencrypt: Add conflict with 90crypt dracut module (more info in #1010287) +- Resolves: #1010278 #1010287 + +* Sun Mar 31 2013 Milan Broz - 1.6.1-1 +- Update to cryptsetup 1.6.1. +- Install ReleaseNotes files instead of empty Changelog file. + +* Wed Feb 13 2013 Fedora Release Engineering - 1.6.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Mon Jan 14 2013 Milan Broz - 1.6.0-1 +- Update to cryptsetup 1.6.0. +- Change default LUKS encryption mode to aes-xts-plain64 (AES128). +- Force use of gcrypt PBKDF2 instead of internal implementation. + +* Sat Dec 29 2012 Milan Broz - 1.6.0-0.1 +- Update to cryptsetup 1.6.0-rc1. +- Relax license to GPLv2+ according to new release. +- Compile cryptsetup with libpwquality support. + +* Tue Oct 16 2012 Milan Broz - 1.5.1-1 +- Update to cryptsetup 1.5.1. + +* Wed Jul 18 2012 Fedora Release Engineering - 1.5.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Tue Jul 10 2012 Milan Broz - 1.5.0-1 +- Update to cryptsetup 1.5.0. + +* Wed Jun 20 2012 Milan Broz - 1.5.0-0.2 +- Update to cryptsetup 1.5.0-rc2. +- Add cryptsetup-reencrypt subpackage. + +* Mon Jun 11 2012 Milan Broz - 1.5.0-0.1 +- Update to cryptsetup 1.5.0-rc1. +- Add veritysetup subpackage. +- Move localization files to libs subpackage. + +* Thu May 31 2012 Milan Broz - 1.4.3-2 +- Build with fipscheck (verification in fips mode). +- Clean up spec file, use install to /usr. + +* Thu May 31 2012 Milan Broz - 1.4.3-1 +- Update to cryptsetup 1.4.3. + +* Thu Apr 12 2012 Milan Broz - 1.4.2-1 +- Update to cryptsetup 1.4.2. + +* Fri Jan 13 2012 Fedora Release Engineering - 1.4.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Wed Nov 09 2011 Milan Broz - 1.4.1-1 +- Update to cryptsetup 1.4.1. +- Add Python cryptsetup bindings. +- Obsolete separate python-cryptsetup package. + +* Wed Oct 26 2011 Milan Broz - 1.4.0-1 +- Update to cryptsetup 1.4.0. + +* Mon Oct 10 2011 Milan Broz - 1.4.0-0.1 +- Update to cryptsetup 1.4.0-rc1. +- Rename package back from cryptsetup-luks to cryptsetup. + +* Wed Jun 22 2011 Milan Broz - 1.3.1-2 +- Fix return code for status command when device doesn't exist. + +* Tue May 24 2011 Milan Broz - 1.3.1-1 +- Update to cryptsetup 1.3.1. + +* Tue Apr 05 2011 Milan Broz - 1.3.0-1 +- Update to cryptsetup 1.3.0. + +* Tue Mar 22 2011 Milan Broz - 1.3.0-0.2 +- Update to cryptsetup 1.3.0-rc2 + +* Mon Mar 14 2011 Milan Broz - 1.3.0-0.1 +- Update to cryptsetup 1.3.0-rc1 + +* Tue Feb 08 2011 Fedora Release Engineering - 1.2.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Mon Dec 20 2010 Milan Broz - 1.2.0-1 +- Update to cryptsetup 1.2.0 + +* Thu Nov 25 2010 Milan Broz - 1.2.0-0.2 +- Fix crypt_activate_by_keyfile() to work with PLAIN devices. + +* Tue Nov 16 2010 Milan Broz - 1.2.0-0.1 +- Add FAQ to documentation. +- Update to cryptsetup 1.2.0-rc1 + +* Sat Jul 03 2010 Milan Broz - 1.1.3-1 +- Update to cryptsetup 1.1.3 + +* Mon Jun 07 2010 Milan Broz - 1.1.2-2 +- Fix alignment ioctl use. +- Fix API activation calls to handle NULL device name. + +* Sun May 30 2010 Milan Broz - 1.1.2-1 +- Update to cryptsetup 1.1.2 +- Fix luksOpen handling of new line char on stdin. + +* Sun May 23 2010 Milan Broz - 1.1.1-1 +- Update to cryptsetup 1.1.1 +- Fix luksClose for stacked LUKS/LVM devices. + +* Mon May 03 2010 Milan Broz - 1.1.1-0.2 +- Update to cryptsetup 1.1.1-rc2. + +* Sat May 01 2010 Milan Broz - 1.1.1-0.1 +- Update to cryptsetup 1.1.1-rc1. + +* Sun Jan 17 2010 Milan Broz - 1.1.0-1 +- Update to cryptsetup 1.1.0. + +* Fri Jan 15 2010 Milan Broz - 1.1.0-0.6 +- Fix gcrypt initialisation. +- Fix backward compatibility for hash algorithm (uppercase). + +* Wed Dec 30 2009 Milan Broz - 1.1.0-0.5 +- Update to cryptsetup 1.1.0-rc4 + +* Mon Nov 16 2009 Milan Broz - 1.1.0-0.4 +- Update to cryptsetup 1.1.0-rc3 + +* Thu Oct 01 2009 Milan Broz - 1.1.0-0.3 +- Update to cryptsetup 1.1.0-rc2 +- Fix libcryptsetup to properly export only versioned symbols. + +* Tue Sep 29 2009 Milan Broz - 1.1.0-0.2 +- Update to cryptsetup 1.1.0-rc1 +- Add luksHeaderBackup and luksHeaderRestore commands. + +* Fri Sep 11 2009 Milan Broz - 1.1.0-0.1 +- Update to new upstream testing version with new API interface. +- Add luksSuspend and luksResume commands. +- Introduce pkgconfig. + +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Wed Jul 22 2009 Milan Broz - 1.0.7-1 +- Update to upstream final release. +- Split libs subpackage. +- Remove rpath setting from cryptsetup binary. + +* Wed Jul 15 2009 Till Maas - 1.0.7-0.2 +- update BR because of libuuid splitout from e2fsprogs + +* Mon Jun 22 2009 Milan Broz - 1.0.7-0.1 +- Update to new upstream 1.0.7-rc1. + +- Wipe old fs headers to not confuse blkid (#468062) +* Tue Feb 24 2009 Fedora Release Engineering - 1.0.6-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Thu Oct 30 2008 Milan Broz - 1.0.6-6 +- Wipe old fs headers to not confuse blkid (#468062) + +* Tue Sep 23 2008 Milan Broz - 1.0.6-5 +- Change new project home page. +- Print more descriptive messages for initialization errors. +- Refresh patches to versions commited upstream. + +* Sat Sep 06 2008 Milan Broz - 1.0.6-4 +- Fix close of zero decriptor. +- Fix udevsettle delays - use temporary crypt device remapping. + +* Wed May 28 2008 Till Maas - 1.0.6-3 +- remove a duplicate sentence from the manpage (RH #448705) +- add patch metadata about upstream status + +* Tue Apr 15 2008 Bill Nottinghm - 1.0.6-2 +- Add the device to the luksOpen prompt (#433406) +- Use iconv, not recode (#442574) + +* Thu Mar 13 2008 Till Maas - 1.0.6-1 +- Update to latest version +- remove patches that have been merged upstream + +* Mon Mar 03 2008 Till Maas - 1.0.6-0.1.pre2 +- Update to new version with several bugfixes +- remove patches that have been merged upstream +- add patch from cryptsetup newsgroup +- fix typo / missing luksRemoveKey in manpage (patch) + +* Tue Feb 19 2008 Fedora Release Engineering - 1.0.5-9 +- Autorebuild for GCC 4.3 + +* Sat Jan 19 2008 Peter Jones - 1.0.5-8 +- Rebuild for broken deps. + +* Thu Aug 30 2007 Till Maas - 1.0.5-7 +- update URL +- update license tag +- recode ChangeLog from latin1 to uf8 +- add smp_mflags to make + +* Fri Aug 24 2007 Till Maas - 1.0.5-6 +- cleanup BuildRequires: +- removed versions, packages in Fedora are new enough +- changed popt to popt-devel + +* Thu Aug 23 2007 Till Maas - 1.0.5-5 +- fix devel subpackage requires +- remove empty NEWS README +- remove uneeded INSTALL +- remove uneeded ldconfig requires +- add readonly detection patch + +* Wed Aug 08 2007 Till Maas - 1.0.5-4 +- disable patch2, libsepol is now detected by configure +- move libcryptsetup.so to %%{_libdir} instead of /%%{_lib} + +* Fri Jul 27 2007 Till Maas - 1.0.5-3 +- Use /%%{_lib} instead of /lib to use /lib64 on 64bit archs + +* Thu Jul 26 2007 Till Maas - 1.0.5-2 +- Use /lib as libdir (#243228) +- sync header and library (#215349) +- do not use %%makeinstall (recommended by PackageGuidelines) +- select sbindir with %%configure instead with make +- add TODO + +* Wed Jun 13 2007 Jeremy Katz - 1.0.5-1 +- update to 1.0.5 + +* Mon Jun 04 2007 Peter Jones - 1.0.3-5 +- Don't build static any more. + +* Mon Feb 05 2007 Alasdair Kergon - 1.0.3-4 +- Add build dependency on new device-mapper-devel package. +- Add preun and post ldconfig requirements. +- Update BuildRoot. + +* Wed Nov 1 2006 Peter Jones - 1.0.3-3 +- Require newer libselinux (#213414) + +* Wed Jul 12 2006 Jesse Keating - 1.0.3-2.1 +- rebuild + +* Wed Jun 7 2006 Jeremy Katz - 1.0.3-2 +- put shared libs in the right subpackages + +* Fri Apr 7 2006 Bill Nottingham 1.0.3-1 +- update to final 1.0.3 + +* Mon Feb 27 2006 Bill Nottingham 1.0.3-0.rc2 +- update to 1.0.3rc2, fixes bug with HAL & encrypted devices (#182658) + +* Wed Feb 22 2006 Bill Nottingham 1.0.3-0.rc1 +- update to 1.0.3rc1, reverts changes to default encryption type + +* Tue Feb 21 2006 Bill Nottingham 1.0.2-1 +- update to 1.0.2, fix incompatiblity with old cryptsetup (#176726) + +* Mon Feb 20 2006 Karsten Hopp 1.0.1-5 +- BuildRequires: libselinux-devel + +* Fri Feb 10 2006 Jesse Keating - 1.0.1-4.2.1 +- bump again for double-long bug on ppc(64) + +* Tue Feb 07 2006 Jesse Keating - 1.0.1-4.2 +- rebuilt for new gcc4.1 snapshot and glibc changes + +* Fri Dec 09 2005 Jesse Keating +- rebuilt + +* Mon Dec 5 2005 Bill Nottingham 1.0.1-4 +- rebuild against new libdevmapper + +* Thu Oct 13 2005 Florian La Roche +- add -lsepol to rebuild on current fc5 + +* Mon Aug 22 2005 Karel Zak 1.0.1-2 +- fix cryptsetup help for isLuks action + +* Fri Jul 1 2005 Bill Nottingham 1.0.1-1 +- update to 1.0.1 - fixes incompatiblity with previous cryptsetup for + piped passwords + +* Thu Jun 16 2005 Bill Nottingham 1.0-2 +- add patch for 32/64 bit compatibility (#160445, ) + +* Tue Mar 29 2005 Bill Nottingham 1.0-1 +- update to 1.0 + +* Thu Mar 10 2005 Bill Nottingham 0.993-1 +- switch to cryptsetup-luks, for LUKS support + +* Tue Oct 12 2004 Bill Nottingham 0.1-4 +- oops, make that *everything* static (#129926) + +* Tue Aug 31 2004 Bill Nottingham 0.1-3 +- link some things static, move to /sbin (#129926) + +* Tue Jun 15 2004 Elliot Lee +- rebuilt + +* Fri Apr 16 2004 Bill Nottingham 0.1-1 +- initial packaging