0f50b09
%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
0f50b09
%{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
7ddd80a
%global _libdir /%{_lib}
7ddd80a
%global _sbindir /sbin
0f50b09
Michael Halcrow fc39667
Name: ecryptfs-utils
896aded
Version: 87
657a003
Release: 3%{?dist}
Michael Halcrow fc39667
Summary: The eCryptfs mount helper and support libraries
Michael Halcrow fc39667
Group: System Environment/Base
d2d5d13
License: GPLv2+
0f50b09
URL: https://launchpad.net/ecryptfs
a225d8b
Source0: http://launchpad.net/ecryptfs/trunk/%{version}/+download/%{name}_%{version}.orig.tar.gz
e106002
Source1: ecryptfs-mount-private.png
a225d8b
7ddd80a
# rhbz#500829, do not use ubuntu/debian only service
7ddd80a
Patch2: ecryptfs-utils-75-nocryptdisks.patch
7beee01
d69e533
# rhbz#553629, fix usage of salt together with file_passwd
d69e533
Patch3: ecryptfs-utils-83-fixsalt.patch
d69e533
14f1a4b
# fedora/rhel specific, rhbz#486139, remove nss dependency from umount.ecryptfs
14f1a4b
Patch4: ecryptfs-utils-83-splitnss.patch
14f1a4b
fe13c07
# rhbz#664474, fix unsigned < 0 test
fe13c07
Patch5: ecryptfs-utils-84-fixsigness.patch
fe13c07
a5a6278
# fix build on arches where char is unsigned by default
5e5dc86
# also fixes this issue: char c; while((c = fgetc(fh)) != EOF)
a5a6278
Patch6: ecryptfs-utils-84-fgetc.patch
a5a6278
6bcf508
# autoload ecryptfs module in ecryptfs-setup-private when needed, rhbz#707608
6bcf508
Patch7: ecryptfs-utils-87-autoload.patch
6bcf508
657a003
# sent upstream, for e-u < 88, rhbz#706911
657a003
Patch10: ecryptfs-utils-87-mtab.patch
657a003
ea9f672
# allow building with -Werror
ea9f672
Patch999: ecryptfs-utils-75-werror.patch
ea9f672
e12eec2
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
247208f
Requires: keyutils, cryptsetup-luks, util-linux-ng, gettext
Michael Halcrow fc39667
BuildRequires: libgcrypt-devel keyutils-libs-devel openssl-devel pam-devel
d79558b
BuildRequires: trousers-devel nss-devel desktop-file-utils intltool
79c27c8
BuildRequires: pkcs11-helper-devel
14f1a4b
BuildRequires: automake autoconf libtool glib2-devel gettext-devel
Michael Halcrow fc39667
Michael Halcrow fc39667
%description
Michael Halcrow fc39667
eCryptfs is a stacked cryptographic filesystem that ships in Linux
Michael Halcrow fc39667
kernel versions 2.6.19 and above. This package provides the mount
Michael Halcrow fc39667
helper and supporting libraries to perform key management and mount
Michael Halcrow fc39667
functions.
Michael Halcrow fc39667
Michael Halcrow fc39667
Install ecryptfs-utils if you would like to mount eCryptfs.
Michael Halcrow fc39667
Michael Halcrow fc39667
%package devel
Michael Halcrow fc39667
Summary: The eCryptfs userspace development package
Michael Halcrow fc39667
Group: System Environment/Base
Michael Halcrow fc39667
Requires: keyutils-libs-devel %{name} = %{version}-%{release}
a225d8b
Requires: pkgconfig
Michael Halcrow fc39667
Michael Halcrow fc39667
%description devel
Michael Halcrow fc39667
Userspace development files for eCryptfs.
Michael Halcrow fc39667
0f50b09
%package python
0f50b09
Summary: Python bindings for the eCryptfs utils
0f50b09
Group: System Environment/Base
0f50b09
Requires: ecryptfs-utils %{name} = %{version}-%{release}
a225d8b
BuildRequires: python python-devel swig >= 1.3.31
0f50b09
0f50b09
%description python
0f50b09
The ecryptfs-utils-python package contains a module that permits 
0f50b09
applications written in the Python programming language to use 
0f50b09
the interface supplied by the ecryptfs-utils library.
0f50b09
Michael Halcrow fc39667
%prep
a938f81
%setup -q
7ddd80a
%patch2 -p1 -b .nocryptdisks
d69e533
%patch3 -p1 -b .fixsalt
14f1a4b
%patch4 -p1 -b .splitnss
fe13c07
%patch5 -p1 -b .fixsigness
a5a6278
%patch6 -p1 -b .fgetc
6bcf508
%patch7 -p1 -b .autoload
657a003
%patch10 -p1 -b .mtabfix
ea9f672
%patch999 -p1 -b .werror
Michael Halcrow fc39667
Michael Halcrow fc39667
%build
fe13c07
export CFLAGS="$RPM_OPT_FLAGS -ggdb -O2 -Werror -Wtype-limits"
14f1a4b
#we're modifing Makefile.am
14f1a4b
autoreconf -fiv
79c27c8
%configure --disable-rpath --enable-tspi --enable-nss --enable-pkcs11-helper
a225d8b
make clean
0f50b09
#disable rpath
0f50b09
sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
0f50b09
sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
a225d8b
Michael Halcrow fc39667
make %{?_smp_mflags}
Michael Halcrow fc39667
Michael Halcrow fc39667
%install
Michael Halcrow fc39667
rm -rf $RPM_BUILD_ROOT
Michael Halcrow fc39667
make install DESTDIR=$RPM_BUILD_ROOT
7ddd80a
find $RPM_BUILD_ROOT/ -name '*.la' | xargs rm -f
6091773
rm -rf $RPM_BUILD_ROOT%{_docdir}/%{name}
a225d8b
#install files Makefile forgot install
7beee01
install -m644 %{SOURCE1} $RPM_BUILD_ROOT%{_datadir}/%{name}/ecryptfs-mount-private.png
a225d8b
printf "Encoding=UTF-8\n" >>$RPM_BUILD_ROOT/%{_datadir}/%{name}/ecryptfs-mount-private.desktop
a225d8b
printf "Encoding=UTF-8\n" >>$RPM_BUILD_ROOT/%{_datadir}/%{name}/ecryptfs-setup-private.desktop
7beee01
printf "Icon=%{_datadir}/%{name}/ecryptfs-mount-private.png\n" >>$RPM_BUILD_ROOT/%{_datadir}/%{name}/ecryptfs-mount-private.desktop
7beee01
printf "Icon=%{_datadir}/%{name}/ecryptfs-mount-private.png\n" >>$RPM_BUILD_ROOT/%{_datadir}/%{name}/ecryptfs-setup-private.desktop
c7231a2
sed -i 's|^_||' $RPM_BUILD_ROOT/%{_datadir}/%{name}/ecryptfs-mount-private.desktop
c7231a2
sed -i 's|^_||' $RPM_BUILD_ROOT/%{_datadir}/%{name}/ecryptfs-setup-private.desktop
a225d8b
desktop-file-validate $RPM_BUILD_ROOT%{_datadir}/%{name}/ecryptfs-mount-private.desktop
a225d8b
desktop-file-validate $RPM_BUILD_ROOT%{_datadir}/%{name}/ecryptfs-setup-private.desktop
7beee01
chmod +x $RPM_BUILD_ROOT%{_datadir}/%{name}/ecryptfs-mount-private.desktop
7beee01
chmod +x $RPM_BUILD_ROOT%{_datadir}/%{name}/ecryptfs-setup-private.desktop
a225d8b
touch -r src/desktop/ecryptfs-mount-private.desktop \
a225d8b
     $RPM_BUILD_ROOT%{_datadir}/%{name}/ecryptfs-mount-private.desktop
a225d8b
touch -r src/desktop/ecryptfs-setup-private.desktop \
a225d8b
     $RPM_BUILD_ROOT%{_datadir}/%{name}/ecryptfs-mount-private.desktop
a225d8b
rm -f $RPM_BUILD_ROOT/%{_datadir}/%{name}/ecryptfs-record-passphrase
a225d8b
c7231a2
%find_lang %{name}
c7231a2
14f1a4b
%check
14f1a4b
if ldd $RPM_BUILD_ROOT%{_sbindir}/umount.ecryptfs | grep -q '/usr/'
14f1a4b
then
14f1a4b
  exit 1
14f1a4b
fi
14f1a4b
a225d8b
%pre
a225d8b
groupadd -r -f ecryptfs
Michael Halcrow 2fbd999
Michael Halcrow fc39667
%post -p /sbin/ldconfig
Michael Halcrow fc39667
Michael Halcrow fc39667
%postun -p /sbin/ldconfig
Michael Halcrow fc39667
Michael Halcrow fc39667
%clean
Michael Halcrow fc39667
rm -rf $RPM_BUILD_ROOT
Michael Halcrow fc39667
c7231a2
%files -f %{name}.lang
Michael Halcrow fc39667
%defattr(-,root,root,-)
Michael Halcrow fc39667
%doc README COPYING AUTHORS NEWS THANKS
Michael Halcrow 2fbd999
%doc doc/ecryptfs-faq.html doc/ecryptfs-pam-doc.txt
f747729
%doc doc/ecryptfs-pkcs11-helper-doc.txt
7ddd80a
%{_sbindir}/mount.ecryptfs
7ddd80a
%{_sbindir}/umount.ecryptfs
7ddd80a
%attr(4750,root,ecryptfs) %{_sbindir}/mount.ecryptfs_private
7ddd80a
%{_sbindir}/umount.ecryptfs_private
Michael Halcrow cf64279
%{_bindir}/ecryptfs-add-passphrase
3e7fc5e
%{_bindir}/ecryptfs-generate-tpm-key
c7231a2
%{_bindir}/ecryptfs-insert-wrapped-passphrase-into-keyring
c7231a2
%{_bindir}/ecryptfs-manager
c7231a2
%{_bindir}/ecryptfs-migrate-home
bf23fd2
%{_bindir}/ecryptfs-mount-private
012e823
%{_bindir}/ecryptfs-recover-private
c7231a2
%{_bindir}/ecryptfs-rewrap-passphrase
c7231a2
%{_bindir}/ecryptfs-rewrite-file
bf23fd2
%{_bindir}/ecryptfs-setup-private
6091773
%{_bindir}/ecryptfs-setup-swap
bf23fd2
%{_bindir}/ecryptfs-stat
c7231a2
%{_bindir}/ecryptfs-umount-private
c7231a2
%{_bindir}/ecryptfs-unwrap-passphrase
c7231a2
%{_bindir}/ecryptfs-wrap-passphrase
Michael Halcrow fc39667
%{_bindir}/ecryptfsd
Michael Halcrow fc39667
%{_libdir}/ecryptfs
7ddd80a
%{_libdir}/libecryptfs.so.*
7ddd80a
%{_libdir}/security/pam_ecryptfs.so
e12eec2
%dir %{_datadir}/%{name}
e12eec2
%{_datadir}/%{name}/ecryptfs-mount-private.txt
e12eec2
%{_datadir}/%{name}/ecryptfs-mount-private.desktop
7beee01
%{_datadir}/%{name}/ecryptfs-mount-private.png
a225d8b
%{_datadir}/%{name}/ecryptfs-setup-private.desktop
bf23fd2
%{_mandir}/man1/ecryptfs-add-passphrase.1.gz
bf23fd2
%{_mandir}/man1/ecryptfs-generate-tpm-key.1.gz
bf23fd2
%{_mandir}/man1/ecryptfs-insert-wrapped-passphrase-into-keyring.1.gz
bf23fd2
%{_mandir}/man1/ecryptfs-mount-private.1.gz
012e823
%{_mandir}/man1/ecryptfs-recover-private.1.gz
bf23fd2
%{_mandir}/man1/ecryptfs-rewrap-passphrase.1.gz
e12eec2
%{_mandir}/man1/ecryptfs-rewrite-file.1.gz
bf23fd2
%{_mandir}/man1/ecryptfs-setup-private.1.gz
c3bb6c3
%{_mandir}/man1/ecryptfs-setup-swap.1.gz
c3bb6c3
%{_mandir}/man1/ecryptfs-stat.1.gz
bf23fd2
%{_mandir}/man1/ecryptfs-umount-private.1.gz
bf23fd2
%{_mandir}/man1/ecryptfs-unwrap-passphrase.1.gz
bf23fd2
%{_mandir}/man1/ecryptfs-wrap-passphrase.1.gz
bf23fd2
%{_mandir}/man1/mount.ecryptfs_private.1.gz
bf23fd2
%{_mandir}/man1/umount.ecryptfs_private.1.gz
Michael Halcrow fc39667
%{_mandir}/man7/ecryptfs.7.gz
Michael Halcrow cf64279
%{_mandir}/man8/ecryptfs-manager.8.gz
Michael Halcrow cf64279
%{_mandir}/man8/ecryptfsd.8.gz
Michael Halcrow cf64279
%{_mandir}/man8/mount.ecryptfs.8.gz
bf23fd2
%{_mandir}/man8/pam_ecryptfs.8.gz
c3bb6c3
%{_mandir}/man8/umount.ecryptfs.8.gz
Michael Halcrow fc39667
Michael Halcrow fc39667
%files devel
Michael Halcrow fc39667
%defattr(-,root,root,-)
a225d8b
%{_libdir}/libecryptfs.so
Michael Halcrow c4a46e1
%{_libdir}/pkgconfig/libecryptfs.pc
Michael Halcrow fc39667
%{_includedir}/ecryptfs.h
Michael Halcrow fc39667
0f50b09
%files python
0f50b09
%defattr(-,root,root,-)
585602d
%dir %{python_sitelib}/ecryptfs-utils
0f50b09
%{python_sitelib}/ecryptfs-utils/libecryptfs.py
0f50b09
%{python_sitelib}/ecryptfs-utils/libecryptfs.pyc
0f50b09
%{python_sitelib}/ecryptfs-utils/libecryptfs.pyo
585602d
%dir %{python_sitearch}/ecryptfs-utils
0f50b09
%{python_sitearch}/ecryptfs-utils/_libecryptfs.so.0
0f50b09
%{python_sitearch}/ecryptfs-utils/_libecryptfs.so.0.0.0
0f50b09
%{python_sitearch}/ecryptfs-utils/_libecryptfs.so
0f50b09
Michael Halcrow fc39667
%changelog
657a003
* Tue Jun 07 2011 Michal Hlavinka <mhlavink@redhat.com> - 87-3
657a003
- update of mtab does not work if it's a symlink (#706911)
657a003
6bcf508
* Thu May 26 2011 Michal Hlavinka <mhlavink@redhat.com> - 87-2
6bcf508
- auto-load ecryptfs module in ecryptfs-setup-private
6bcf508
896aded
* Tue May 24 2011 Michal Hlavinka <mhlavink@redhat.com> - 87-1
896aded
- updated to v. 87
896aded
f9f0f39
* Wed Mar 02 2011 Michal Hlavinka <mhlavink@redhat.com> - 86-2
f9f0f39
- fix selinux context
f9f0f39
ea9f672
* Fri Feb 25 2011 Michal Hlavinka <mhlavink@redhat.com> - 86-1
ea9f672
- updated to v. 86
ea9f672
5e5dc86
* Tue Feb 01 2011 Michal Hlavinka <mhlavink@redhat.com> - 85-1
5e5dc86
- ecryptfs-utils updated to 85
5e5dc86
a5a6278
* Tue Jan 11 2011 Dan HorĂ¡k <dan[at]danny.cz> - 84-3
a5a6278
- fix build on arches where char is unsigned by default
a5a6278
773da8c
* Tue Jan 04 2011 Michal Hlavinka <mhlavink@redhat.com> - 84-2
fe13c07
- fix unsigned < 0 test (#664474)
fe13c07
012e823
* Mon Dec 20 2010 Michal Hlavinka <mhlavink@redhat.com> - 84-1
012e823
- ecryptfs-utils updated to 84
012e823
012e823
* Wed Sep 29 2010 jkeating - 83-9
Jesse Keating 5462c87
- Rebuilt for gcc bug 634757
Jesse Keating 5462c87
012e823
* Wed Sep 22 2010 Michal Hlavinka <mhlavink@redhat.com> - 83-8
247208f
- add missing gettext require (#630212)
247208f
beb646b
* Mon Jul 26 2010 Michal Hlavinka <mhlavink@redhat.com> - 83-7
beb646b
- fix ftbfs for python mass rebuild
beb646b
73e843d
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 83-6
73e843d
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
73e843d
14f1a4b
* Tue May 04 2010 Michal Hlavinka <mhlavink@redhat.com> - 83-5
14f1a4b
- remove nss dependency from umount.ecryptfs
14f1a4b
d69e533
* Fri Apr 16 2010 Michal Hlavinka <mhlavink@redhat.com> - 83-4
d69e533
- make salt working together with passwd_file
d69e533
79c27c8
* Mon Mar 22 2010 Michal Hlavinka <mhlavink@redhat.com> - 83-3
79c27c8
- enable PKCS#11 support
79c27c8
cab8715
* Wed Mar 10 2010 Michal Hlavinka <mhlavink@redhat.com> - 83-2
cab8715
- blkid moved from e2fsprogs to util-linux-ng, follow the change (#569996)
cab8715
cab8715
* Thu Feb 18 2010 Michal Hlavinka <mhlavink@redhat.com> - 83-1
c7231a2
- updated to v. 83
c7231a2
7ddd80a
* Wed Jan 27 2010 Michal Hlavinka <mhlavink@redhat.com> - 82-2
7ddd80a
- better fix for (#486139)
7ddd80a
4da8075
* Wed Nov 11 2009 Michal Hlavinka <mhlavink@redhat.com> - 82-1
4da8075
- updated to 82
4da8075
6ae9dcc
* Mon Nov 09 2009 Michal Hlavinka <mhlavink@redhat.com> - 81-2
6ae9dcc
- fix getext typos (#532732)
6ae9dcc
db66525
* Tue Sep 29 2009 Michal Hlavinka <mhlavink@redhat.com> - 81-1
db66525
- updated to 81
db66525
18e0c30
* Fri Aug 21 2009 Tomas Mraz <tmraz@redhat.com> - 79-2
18e0c30
- rebuilt with new openssl
18e0c30
c3bb6c3
* Tue Aug 18 2009 Michal Hlavinka <mhlavink@redhat.com> - 79-1
c3bb6c3
- updated to 79
c3bb6c3
b7546c6
* Wed Jul 29 2009 Michal Hlavinka <mhlavink@redhat.com> - 78-2
b7546c6
- ecryptfs-dot-private is no longer used
b7546c6
a938f81
* Wed Jul 29 2009 Michal Hlavinka <mhlavink@redhat.com> - 78-1
a938f81
- updated to 78
a938f81
5712745
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 76-2
5712745
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
5712745
538613f
* Mon Jul 20 2009 Michal Hlavinka <mhlavink@redhat.com> 76-1
538613f
- updated to 76
538613f
7beee01
* Thu May 21 2009 Michal Hlavinka <mhlavink@redhat.com> 75-1
7beee01
- removed executable permission from ecryptfs-dot-private (#500817)
7beee01
- require cryptsetup-luks for encrypted swap (#500824)
7beee01
- use blkid instead of vol_id (#500820)
7beee01
- don't rely on cryptdisks service (#500829)
7beee01
- add icon for Access-Your-Private-Data.desktop file
7beee01
a225d8b
* Mon May 04 2009 Michal Hlavinka <mhlavink@redhat.com> 75-1
a225d8b
- updated to 75
a225d8b
- restrict mount.ecryptfs_private to ecryptfs group members only
a225d8b
a225d8b
* Thu Apr 23 2009 Michal Hlavinka <mhlavink@redhat.com> 74-1
a225d8b
- updated to 74
a225d8b
e12eec2
* Sat Mar 21 2009 Michal Hlavinka <mhlavink@redhat.com> 73-1
e12eec2
- updated to 73
e12eec2
- move libs from /usr/lib to /lib (#486139)
e12eec2
- fix symlinks created by ecryptfs-setup-private (#486146)
e12eec2
6091773
* Mon Feb 24 2009 Michal Hlavinka <mhlavink@redhat.com> 71-1
6091773
- updated to 71
6091773
- remove .la files
6091773
3b73d05
* Mon Feb 16 2009 Michal Hlavinka <mhlavink@redhat.com> 70-1
3b73d05
- updated to 70
3b73d05
- fix: #479762 - ecryptfsecryptfs-setup-private broken
3b73d05
- added umount option to clear per-user keyring
3b73d05
585602d
* Mon Feb 02 2009 Michal Hlavinka <mhlavink@redhat.com> 69-4
585602d
- fix list of onwed directories
585602d
3d86b1e
* Tue Jan 27 2009 Michal Hlavinka <mhlavink@redhat.com> 69-3
3d86b1e
- add missing requires: keyutils
3d86b1e
2ee3b71
* Tue Jan 27 2009 Michal Hlavinka <mhlavink@redhat.com> 69-2
2ee3b71
- bump release for rebuild
2ee3b71
3099b4d
* Tue Jan 27 2009 Michal Hlavinka <mhlavink@redhat.com> 69-1
686bb7c
- updated to 69
bbebf82
aefcf63
* Mon Jan 12 2009 Michal Hlavinka <mhlavink@redhat.com> 68-0
aefcf63
- updated to 68
aefcf63
- fix #478464 - /usr/bin/ecryptfs-setup-private errors out
aefcf63
56ac97c
* Mon Dec 29 2008 Michal Hlavinka <mhlavink@redhat.com> 67-1
56ac97c
- bump release for rebuild
56ac97c
0f50b09
* Mon Dec 29 2008 Michal Hlavinka <mhlavink@redhat.com> 67-0
0f50b09
- updated to 67
0f50b09
Michael Halcrow 94b9e4d
* Wed Oct 22 2008 Mike Halcrow <mhalcrow@us.ibm.com> 61-0
Michael Halcrow 94b9e4d
- Add support for filename encryption enablement (future kernel feature)
Michael Halcrow 94b9e4d
- Replace uint32_t with size_t for x86_64 compatibility (patch by Eric Sandeen)
Michael Halcrow 94b9e4d
e6f8a9b
* Fri Oct 17 2008 Eric Sandeen <sandeen@redhat.com> 59-2
e6f8a9b
- Remove duplicate doc files from rpm
e6f8a9b
Michael Halcrow edef76d
* Tue Oct 07 2008 Mike Halcrow <mhalcrow@us.ibm.com> 59-1
Michael Halcrow edef76d
- Put attr declaration in the right spot
Michael Halcrow edef76d
Michael Halcrow 543e83a
* Tue Oct 07 2008 Mike Halcrow <mhalcrow@us.ibm.com> 59-0
Michael Halcrow 543e83a
- Make /sbin/*ecryptfs* files setuid
Michael Halcrow 543e83a
- Add /sbin path to ecryptfs-setup-private
Michael Halcrow 543e83a
Michael Halcrow 564f4d6
* Mon Oct 06 2008 Mike Halcrow <mhalcrow@us.ibm.com> 58-0
Michael Halcrow 564f4d6
- TSPI key module update to avoid flooding TrouSerS library with requests
Michael Halcrow 564f4d6
- OpenSSL key module parameter fixes
Michael Halcrow 564f4d6
- Updates to mount-on-login utilities
Michael Halcrow 564f4d6
Michael Halcrow 46cf03d
* Wed Aug 13 2008 Mike Halcrow <mhalcrow@us.ibm.com> 56-0
Michael Halcrow 46cf03d
- Namespace fixes for the key module parameter aliases
Michael Halcrow 46cf03d
- Updates to the man page and the README
Michael Halcrow 46cf03d
bf23fd2
* Wed Jul 30 2008 Eric Sandeen <sandeen@redhat.com> 53-0
bf23fd2
- New upstream version
bf23fd2
- Many new manpages, new ecryptfs-stat util
bf23fd2
d2d5d13
* Thu Jul 17 2008 Tom "spot" Callaway <tcallawa@redhat.com> 50-1
d2d5d13
- fix license tag
d2d5d13
Michael Halcrow 4e3694f
* Fri Jun 27 2008 Mike Halcrow <mhalcrow@us.ibm.com> 50-0
Michael Halcrow 4e3694f
- Add umount.ecryptfs_private symlink
Michael Halcrow 4e3694f
- Add pam_mount session hooks for mount and unmount
Michael Halcrow 4e3694f
Michael Halcrow 4e3694f
* Fri Jun 27 2008 Eric Sandeen <sandeen@redhat.com> 49-1
35849e7
- build with TrouSerS key module
35849e7
Michael Halcrow 4e3694f
* Fri Jun 27 2008 Eric Sandeen <sandeen@redhat.com> 49-0
f747729
- New upstream version
f747729
081353c
* Tue Jun 03 2008 Eric Sandeen <sandeen@redhat.com> 46-0
071d03d
- New upstream version
071d03d
Michael Halcrow d33da17
* Mon Feb 18 2008 Mike Halcrow <mhalcrow@us.ibm.com> 40-0
Michael Halcrow d33da17
- Enable passwd_file option in openssl key module
Michael Halcrow d33da17
Michael Halcrow 40f1de8
* Wed Feb 13 2008 Mike Halcrow <mhalcrow@us.ibm.com> 39-0
Michael Halcrow 40f1de8
- Fix include upstream
Michael Halcrow 40f1de8
a3da3da
* Wed Feb 13 2008 Karsten Hopp <karsten@redhat.com> 38-1
a3da3da
- fix includes
a3da3da
Michael Halcrow 61692c9
* Tue Jan 8 2008 Mike Halcrow <mhalcrow@us.ibm.com> 38-0
Michael Halcrow 61692c9
 - Fix passthrough mount option prompt
Michael Halcrow 61692c9
 - Clarify man page
Michael Halcrow 61692c9
 - Add HMAC option (for future kernel versions)
Michael Halcrow 61692c9
 - Bump to version 38
Michael Halcrow 61692c9
Michael Halcrow cc07789
* Wed Dec 19 2007 Mike Halcrow <mhalcrow@us.ibm.com> 37-0
Michael Halcrow cc07789
- Remove unsupported ciphers; bump to version 37
Michael Halcrow cc07789
Michael Halcrow 02c3423
* Tue Dec 18 2007 Mike Halcrow <mhalcrow@us.ibm.com> 36-0
Michael Halcrow 02c3423
- Cipher selection detects .gz ko files; bump to version 36
Michael Halcrow 02c3423
Michael Halcrow 43e5907
* Mon Dec 17 2007 Mike Halcrow <mhalcrow@us.ibm.com> 35-0
Michael Halcrow 43e5907
- Cleanups to cipher selection; bump to version 35
Michael Halcrow 43e5907
Michael Halcrow 8bc1347
* Mon Dec 17 2007 Mike Halcrow <mhalcrow@us.ibm.com> 34-0
Michael Halcrow 8bc1347
- Fix OpenSSL key module; bump to version 34
Michael Halcrow 8bc1347
Michael Halcrow 916d769
* Fri Dec 14 2007 Mike Halcrow <mhalcrow@us.ibm.com> 33-1
Michael Halcrow 916d769
- Add files to package
Michael Halcrow 916d769
Michael Halcrow d95d2d8
* Fri Dec 14 2007 Mike Halcrow <mhalcrow@us.ibm.com> 33-0
Michael Halcrow 2fbd999
- update to version 33
Michael Halcrow 2fbd999
Michael Halcrow 2fbd999
* Thu Dec 13 2007 Karsten Hopp <karsten@redhat.com> 32-1
Michael Halcrow 2fbd999
- update to version 32
Michael Halcrow d95d2d8
Michael Halcrow 2fbd999
* Thu Nov 29 2007 Karsten Hopp <karsten@redhat.com> 30-2
Michael Halcrow 2fbd999
- fix ia64 libdir
Michael Halcrow 2fbd999
- build initial RHEL-5 version
eff64e2
0396256
* Thu Nov 29 2007 Karsten Hopp <karsten@redhat.com> 30-1
0396256
- build version 30
0396256
Michael Halcrow cf64279
* Fri Oct 05 2007 Mike Halcrow <mhalcrow@us.ibm.com> - 30-0
Michael Halcrow cf64279
- Bump to version 30. Several bugfixes. Key modules are overhauled
Michael Halcrow cf64279
  with a more sane API.
0bb6f98
* Wed Aug 29 2007 Fedora Release Engineering <rel-eng at fedoraproject dot org> - 18-1
0bb6f98
- Rebuild for selinux ppc32 issue.
0bb6f98
Michael Halcrow fc39667
* Thu Jun 28 2007 Mike Halcrow <mhalcrow@us.ibm.com> - 18-0
Michael Halcrow fc39667
- Bump to version 18 with an OpenSSL key module fix
Michael Halcrow fc39667
* Thu Jun 21 2007 Kevin Fenzi <kevin@tummy.com> - 17-1
Michael Halcrow fc39667
- Change kernel Requires to Conflicts
Michael Halcrow fc39667
- Remove un-needed devel buildrequires
Michael Halcrow fc39667
* Wed Jun 20 2007 Mike Halcrow <mhalcrow@us.ibm.com>  - 17-0
Michael Halcrow fc39667
- Provide built-in fallback passphrase key module. Remove keyutils,
Michael Halcrow fc39667
  openssl, and pam requirements (library dependencies take care of
Michael Halcrow fc39667
  this). Include wrapped passphrase executables in file set.
Michael Halcrow fc39667
* Fri Apr 20 2007 Mike Halcrow <mhalcrow@us.ibm.com>  - 15-1
Michael Halcrow fc39667
- Change permission of pam_ecryptfs.so from 644 to 755.
Michael Halcrow fc39667
* Thu Apr 19 2007 Mike Halcrow <mhalcrow@us.ibm.com>  - 15-0
Michael Halcrow fc39667
- Fix mount option parse segfault. Fix pam_ecryptfs.so semaphore
Michael Halcrow fc39667
  issue when logging in via ssh.
Michael Halcrow fc39667
* Thu Mar 01 2007 Mike Halcrow <mhalcrow@us.ibm.com>  - 10-0
Michael Halcrow fc39667
- Remove verbose syslog() calls; change key module build to allow
Michael Halcrow fc39667
  OpenSSL module to be disabled from build; add AUTHORS, NEWS, and
Michael Halcrow fc39667
  THANKS to docs; update Requires with variables instead of hardcoded
Michael Halcrow fc39667
  name and version.
Michael Halcrow fc39667
* Tue Feb 06 2007 Mike Halcrow <mhalcrow@us.ibm.com>  - 9-1
Michael Halcrow fc39667
- Minor update in README, add dist tag to Release, add --disable-rpath
Michael Halcrow fc39667
  to configure step, and remove keyutils-libs from Requires.
Michael Halcrow fc39667
* Tue Jan 09 2007 Mike Halcrow <mhalcrow@us.ibm.com>  - 9-0
Michael Halcrow fc39667
- Correct install directories for 64-bit; add support for xattr and
Michael Halcrow fc39667
  encrypted_view mount options
Michael Halcrow fc39667
* Tue Jan 02 2007 Mike Halcrow <mhalcrow@us.ibm.com>  - 8-0
Michael Halcrow fc39667
- Introduce build support for openCryptoki key module.  Fix -dev build
Michael Halcrow fc39667
  dependencies for devel package
Michael Halcrow fc39667
* Mon Dec 11 2006 Mike Halcrow <mhalcrow@us.ibm.com>  - 7-0
Michael Halcrow fc39667
- Initial package creation