15e58a0b10
- gpg-agent not restarted after kde session crash/killed (#196327)
375 lines
11 KiB
RPMSpec
375 lines
11 KiB
RPMSpec
|
|
## Keep an eye on http://bugzilla.redhat.com/175744,
|
|
## in case these dirs go away or change
|
|
%if 0%{?fedora} > 3 || 0%{?rhel} > 4
|
|
%define kde_scriptdir %{_sysconfdir}/kde
|
|
%else
|
|
%define kde_scriptdir %{_prefix}
|
|
%endif
|
|
|
|
Summary: Utility for secure communication and data storage
|
|
Name: gnupg2
|
|
Version: 2.0.5
|
|
Release: 1%{?dist}
|
|
|
|
License: GPL
|
|
Group: Applications/System
|
|
Source0: ftp://ftp.gnupg.org/gcrypt/gnupg/gnupg-%{version}.tar.bz2
|
|
Source1: ftp://ftp.gnupg.org/gcrypt/gnupg/gnupg-%{version}.tar.bz2.sig
|
|
URL: http://www.gnupg.org/
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
|
# enable auto-startup/shutdown of gpg-agent
|
|
Source10: gpg-agent-startup.sh
|
|
Source11: gpg-agent-shutdown.sh
|
|
|
|
Patch1: gnupg-1.9.16-testverbose.patch
|
|
|
|
# ancient, deprecated
|
|
#Obsoletes: newpg < 0.9.5
|
|
|
|
Requires(post): /sbin/install-info
|
|
Requires(postun): /sbin/install-info
|
|
|
|
BuildRequires: libassuan-static >= 1.0.1
|
|
BuildRequires: libgcrypt-devel => 1.2.2
|
|
BuildRequires: libgpg-error-devel => 1.4
|
|
BuildRequires: libksba-devel >= 1.0.0
|
|
|
|
BuildRequires: gettext
|
|
BuildRequires: readline-devel ncurses-devel
|
|
BuildRequires: openldap-devel
|
|
BuildRequires: libusb-devel
|
|
BuildRequires: pth-devel
|
|
BuildRequires: zlib-devel
|
|
BuildRequires: bzip2-devel
|
|
Buildrequires: libusb-devel
|
|
BuildRequires: docbook-utils
|
|
%if 0%{?fedora} > 3
|
|
BuildRequires: pcsc-lite-libs
|
|
%endif
|
|
|
|
# sed/kill used in gpg-agent-(startup/shutdown).sh
|
|
Requires: fileutils util-linux
|
|
Requires: pinentry >= 0.7.1
|
|
|
|
Provides: gpg
|
|
Provides: openpgp
|
|
|
|
%description
|
|
GnuPG is GNU's tool for secure communication and data storage. It can
|
|
be used to encrypt data and to create digital signatures. It includes
|
|
an advanced key management facility and is compliant with the proposed
|
|
OpenPGP Internet standard as described in RFC2440 and the S/MIME
|
|
standard as described by several RFCs.
|
|
|
|
GnuPG 2.0 is the stable version of GnuPG integrating support for
|
|
OpenPGP and S/MIME. It does not conflict with an installed 1.x
|
|
OpenPGP-only version.
|
|
|
|
GnuPG 2.0 is a newer version of GnuPG with additional support for
|
|
S/MIME. It has a different design philosophy that splits
|
|
functionality up into several modules. Both versions may be installed
|
|
simultaneously without any conflict (gpg is called gpg2 in GnuPG 2).
|
|
In fact, the gpg version from GnuPG 1.x is able to make use of the
|
|
gpg-agent as included in GnuPG 2 and allows for seamless passphrase
|
|
caching. The advantage of GnupG 1.x is its smaller size and no
|
|
dependency on other modules at run and build time.
|
|
|
|
|
|
|
|
%prep
|
|
%setup -q -n gnupg-%{version}%{?beta}
|
|
|
|
#patch1 -p1 -b .testverbose
|
|
|
|
# pcsc-lite library major: 0 in 1.2.0, 1 in 1.2.9+ (dlopen()'d in pcsc-wrapper)
|
|
# Note: this is just the name of the default shared lib to load in scdaemon,
|
|
# it can use other implementations too (including non-pcsc ones).
|
|
%if 0%{?fedora} > 3 || 0%{?rhel} > 4
|
|
%global pcsclib %(basename $(ls -1 %{_libdir}/libpcsclite.so.? 2>/dev/null ) 2>/dev/null )
|
|
%else
|
|
%define pcsclib libpcsclite.so.0
|
|
%endif
|
|
|
|
sed -i -e 's/"libpcsclite\.so"/"%{pcsclib}"/' scd/{scdaemon,pcsc-wrapper}.c
|
|
|
|
# need scratch gpg database for tests
|
|
mkdir -p $HOME/.gnupg
|
|
|
|
|
|
%build
|
|
|
|
%configure \
|
|
--disable-rpath \
|
|
--enable-selinux-support \
|
|
%ifarch x86_64
|
|
--disable-optimization
|
|
%endif
|
|
|
|
# not smp-safe
|
|
make
|
|
|
|
|
|
%install
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
make install DESTDIR=$RPM_BUILD_ROOT
|
|
|
|
# enable auto-startup/shutdown of gpg-agent
|
|
mkdir -p $RPM_BUILD_ROOT%{kde_scriptdir}/{env,shutdown}
|
|
install -p -m0755 %{SOURCE10} $RPM_BUILD_ROOT%{kde_scriptdir}/env/
|
|
install -p -m0755 %{SOURCE11} $RPM_BUILD_ROOT%{kde_scriptdir}/shutdown/
|
|
|
|
%find_lang %{name}
|
|
|
|
# file conflicts with gnupg-1.x
|
|
rm -f $RPM_BUILD_ROOT%{_bindir}/{gpgsplit,gpg-zip}
|
|
rm -f $RPM_BUILD_ROOT%{_datadir}/gnupg/{FAQ,faq.html}
|
|
mv $RPM_BUILD_ROOT%{_mandir}/man7/gnupg.7 $RPM_BUILD_ROOT%{_mandir}/man7/gnupg2.7 ||:
|
|
|
|
# Unpackaged files
|
|
rm -f $RPM_BUILD_ROOT%{_infodir}/dir
|
|
|
|
|
|
%check
|
|
# some gpg2 tests (still) FAIL
|
|
make -k check ||:
|
|
|
|
|
|
%post
|
|
/sbin/install-info %{_infodir}/gnupg.info %{_infodir}/dir ||:
|
|
|
|
%preun
|
|
if [ $1 -eq 0 ]; then
|
|
/sbin/install-info --delete %{_infodir}/gnupg.info %{_infodir}/dir ||:
|
|
fi
|
|
|
|
|
|
%files -f %{name}.lang
|
|
%defattr(-,root,root,-)
|
|
%doc AUTHORS COPYING ChangeLog NEWS README THANKS TODO
|
|
#docs say to install suid root, but we won't, for now.
|
|
#attr(4755,root,root) %{_bindir}/gpg2
|
|
%{_bindir}/gpg2
|
|
%{_bindir}/gpgv2
|
|
%{_bindir}/gpg-connect-agent
|
|
%{_bindir}/gpg-agent
|
|
%{_bindir}/gpgconf
|
|
%{_bindir}/gpgkey2ssh
|
|
%{_bindir}/gpgparsemail
|
|
%{_bindir}/gpgsm*
|
|
#{_bindir}/gpgsplit
|
|
#{_bindir}/gpg-zip
|
|
%{_bindir}/kbxutil
|
|
%{_bindir}/scdaemon
|
|
%{_bindir}/watchgnupg
|
|
%{_sbindir}/*
|
|
%{_datadir}/gnupg/
|
|
%{_libexecdir}/*
|
|
%{_infodir}/*
|
|
%{_mandir}/man?/*
|
|
%{kde_scriptdir}/env/*.sh
|
|
%{kde_scriptdir}/shutdown/*.sh
|
|
|
|
|
|
%clean
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
%changelog
|
|
* Fri Jul 06 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 2.0.5-1
|
|
- gnupg-2.0.5
|
|
- gpg-agent not restarted after kde session crash/killed (#196327)
|
|
|
|
* Fri May 18 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 2.0.4-1
|
|
- gnupg-2.0.4
|
|
|
|
* Thu Mar 08 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 2.0.3-1
|
|
- gnupg-2.0.3
|
|
|
|
* Fri Feb 02 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 2.0.2-1
|
|
- gnupg-2.0.2
|
|
|
|
* Wed Dec 06 2006 Rex Dieter <rexdieter[AT]users.sf.net> 2.0.1-2
|
|
- CVE-2006-6235 (#219934)
|
|
|
|
* Wed Nov 29 2006 Rex Dieter <rexdieter[AT]users.sf.net> 2.0.1-1
|
|
- gnupg-2.0.1
|
|
- CVE-2006-6169 (#217950)
|
|
|
|
* Sat Nov 25 2006 Rex Dieter <rexdieter[AT]users.sf.net> 2.0.1-0.3.rc1
|
|
- gnupg-2.0.1rc1
|
|
|
|
* Thu Nov 16 2006 Rex Dieter <rexdieter[AT]users.sf.net> 2.0.0-4
|
|
- update %%description
|
|
- drop dearmor patch
|
|
|
|
* Mon Nov 13 2006 Rex Dieter <rexdieter[AT]users.sf.net> 2.0.0-3
|
|
- BR: libassuan-static >= 1.0.0
|
|
|
|
* Mon Nov 13 2006 Rex Dieter <rexdieter[AT]users.sf.net> 2.0.0-2
|
|
- gnupg-2.0.0
|
|
|
|
* Fri Nov 10 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.95-3
|
|
- upstream 64bit patch
|
|
|
|
* Mon Nov 06 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.95-2
|
|
- fix (more) file conflicts with gnupg
|
|
|
|
* Mon Nov 06 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.95-1
|
|
- 1.9.95
|
|
|
|
* Wed Oct 25 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.94-1
|
|
- 1.9.94
|
|
|
|
* Wed Oct 18 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.93-1
|
|
- 1.9.93
|
|
|
|
* Wed Oct 11 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.92-2
|
|
- fix file conflicts with gnupg
|
|
|
|
* Wed Oct 11 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.92-1
|
|
- 1.9.92
|
|
|
|
* Tue Oct 10 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.91-4
|
|
- make check ||: (apparently checks return err even on success?)
|
|
|
|
* Tue Oct 10 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.91-3
|
|
- --enable-selinux-support
|
|
- x86_64: --disable-optimization (to avoid gpg2 segfaults), for now
|
|
|
|
* Thu Oct 05 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.91-1
|
|
- 1.9.91
|
|
|
|
* Wed Oct 04 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.22-8
|
|
- respin
|
|
|
|
* Tue Sep 26 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.90-1
|
|
- 1.9.90 (doesn't build, not released)
|
|
|
|
* Mon Sep 18 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.23-1
|
|
- 1.9.23 (doesn't build, not released)
|
|
|
|
* Mon Sep 18 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.22-7
|
|
- gpg-agent-startup.sh: fix case where valid .gpg-agent-info exists
|
|
|
|
* Mon Sep 18 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.22-6
|
|
- fix "syntax error in gpg-agent-startup.sh" (#206887)
|
|
|
|
* Thu Sep 07 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.22-3
|
|
- fc6 respin (for libksba-1.0)
|
|
|
|
* Tue Aug 29 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.22-2
|
|
- fc6 respin
|
|
|
|
* Fri Jul 28 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.22-1
|
|
- 1.9.22
|
|
|
|
* Thu Jun 22 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.21-3
|
|
- fix "gpg-agent not restarted after kde session crash/killed (#196327)
|
|
|
|
* Thu Jun 22 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.21-2
|
|
- 1.9.21
|
|
- omit gpg2 binary to address CVS-2006-3082 (#196190)
|
|
|
|
* Mon Mar 6 2006 Ville Skyttä <ville.skytta at iki.fi>> 1.9.20-3
|
|
- Don't hardcode pcsc-lite lib name (#184123)
|
|
|
|
* Thu Feb 16 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.20-2
|
|
- fc4+: use /etc/kde/(env|shutdown) for scripts (#175744)
|
|
|
|
* Fri Feb 10 2006 Rex Dieter <rexdieter[AT]users.sf.net>
|
|
- fc5: gcc/glibc respin
|
|
|
|
* Tue Dec 20 2005 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.20-1
|
|
- 1.9.20
|
|
|
|
* Thu Dec 01 2005 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.19-8
|
|
- include gpg-agent-(startup|shutdown) scripts (#136533)
|
|
- BR: libksba-devel >= 1.9.12
|
|
- %%check: be permissive about failures (for now)
|
|
|
|
* Wed Nov 30 2005 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.19-3
|
|
- BR: libksba-devel >= 1.9.13
|
|
|
|
* Tue Oct 11 2005 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.19-2
|
|
- back to BR: libksba-devel = 1.9.11
|
|
|
|
* Tue Oct 11 2005 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.19-1
|
|
- 1.9.19
|
|
|
|
* Fri Aug 26 2005 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.18-9
|
|
- configure: NEED_KSBA_VERSION=0.9.12 -> 0.9.11
|
|
|
|
* Fri Aug 26 2005 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.18-7
|
|
- re-enable 'make check', rebuild against (older) libksba-0.9.11
|
|
|
|
* Tue Aug 9 2005 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.18-6
|
|
- don't 'make check' by default (regular builds pass, but FC4/5+plague fails)
|
|
|
|
* Mon Aug 8 2005 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.18-5
|
|
- 1.9.18
|
|
- drop pth patch (--enable-gpg build fixed)
|
|
- update description (from README)
|
|
|
|
* Fri Jul 1 2005 Ville Skyttä <ville.skytta at iki.fi> - 1.9.17-1
|
|
- 1.9.17, signal info patch applied upstream (#162264).
|
|
- Patch to fix lvalue build error with gcc4 (upstream #485).
|
|
- Patch scdaemon and pcsc-wrapper to load the versioned (non-devel)
|
|
pcsc-lite lib by default.
|
|
|
|
* Fri May 13 2005 Michael Schwendt <mschwendt[AT]users.sf.net> - 1.9.16-3
|
|
- Include upstream's patch for signal.c.
|
|
|
|
* Tue May 10 2005 Michael Schwendt <mschwendt[AT]users.sf.net> - 1.9.16-1
|
|
- Merge changes from Rex's 1.9.16-1 (Thu Apr 21):
|
|
- opensc support unconditional
|
|
- remove hard-coded .gz from %%post/%%postun
|
|
- add %%check section
|
|
- add pth patch
|
|
- Put back patch modified from 1.9.15-4 to make tests verbose
|
|
and change signal.c to describe received signals better.
|
|
|
|
* Sun May 8 2005 Michael Schwendt <mschwendt[AT]users.sf.net>
|
|
- Drop patch0 again.
|
|
|
|
* Sun May 8 2005 Michael Schwendt <mschwendt[AT]users.sf.net> - 1.9.15-4
|
|
- Add patch0 temporarily to get some output from failing test.
|
|
|
|
* Sat May 7 2005 David Woodhouse <dwmw2@infradead.org> 1.9.15-3
|
|
- Rebuild.
|
|
|
|
* Fri Apr 7 2005 Michael Schwendt <mschwendt[AT]users.sf.net>
|
|
- rebuilt
|
|
|
|
* Tue Feb 1 2005 Michael Schwendt <mschwendt[AT]users.sf.net> - 0:1.9.15-1
|
|
- Make install-info in scriptlets less noisy.
|
|
|
|
* Tue Jan 18 2005 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.15-0.fdr.1
|
|
- 1.9.15
|
|
|
|
* Fri Jan 07 2005 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.14-0.fdr.2
|
|
- note patch/hack to build against older ( <1.0) libgpg-error-devel
|
|
|
|
* Thu Jan 06 2005 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.14-0.fdr.1
|
|
- 1.9.14
|
|
- enable opensc support
|
|
- BR: libassuan-devel >= 0.6.9
|
|
|
|
* Thu Oct 21 2004 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.11-0.fdr.4
|
|
- remove suid.
|
|
|
|
* Thu Oct 21 2004 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.11-0.fdr.3
|
|
- remove Provides: newpg
|
|
|
|
* Wed Oct 20 2004 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.11-0.fdr.2
|
|
- Requires: pinentry
|
|
- gpg2 suid
|
|
- update description
|
|
|
|
* Tue Oct 19 2004 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.11-0.fdr.1
|
|
- first try
|
|
- leave out opensc support (for now), enable --with-opensc
|
|
|