3805ff83e8
x86_64 build system
188 lines
4.8 KiB
RPMSpec
188 lines
4.8 KiB
RPMSpec
Summary: GNU utility for secure communication and data storage
|
|
Name: gnupg2
|
|
Version: 1.9.16
|
|
Release: 4%{?dist}
|
|
License: GPL
|
|
Group: Applications/System
|
|
Source0: ftp://ftp.gnupg.org/gcrypt/alpha/gnupg/gnupg-%{version}.tar.bz2
|
|
Source1: ftp://ftp.gnupg.org/gcrypt/alpha/gnupg/gnupg-%{version}.tar.bz2.sig
|
|
URL: http://www.gnupg.org/
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
|
Patch0: gnupg-1.9.16-pth.patch
|
|
Patch1: gnupg-1.9.16-signal-info.patch
|
|
Patch2: gnupg-1.9.16-testverbose.patch
|
|
|
|
Obsoletes: newpg < 0.9.5
|
|
|
|
Requires(post): /sbin/install-info
|
|
Requires(postun): /sbin/install-info
|
|
|
|
## gcc version in use?
|
|
BuildRequires: gcc
|
|
%define gcc_ver %(rpm -q --qf '%%{version}' gcc )
|
|
%if "%{gcc_ver}" >= "3.2.3"
|
|
%define pie 1
|
|
%endif
|
|
|
|
BuildRequires: libgcrypt-devel => 1.2.0
|
|
BuildRequires: libgpg-error-devel => 1.0
|
|
Requires: libgpg-error >= 1.0
|
|
BuildRequires: libassuan-devel >= 0.6.9
|
|
BuildRequires: libksba-devel >= 0.9.11
|
|
BuildRequires: opensc-devel >= 0.9
|
|
BuildRequires: pcsc-lite-devel
|
|
BuildRequires: gettext
|
|
BuildRequires: openldap-devel
|
|
BuildRequires: libusb-devel
|
|
BuildRequires: pth-devel
|
|
BuildRequires: zlib-devel
|
|
BuildRequires: bzip2-devel
|
|
Buildrequires: libusb-devel
|
|
BuildRequires: docbook-utils
|
|
|
|
Requires: pinentry >= 0.7.1
|
|
|
|
# Should these be versioned? -- Rex
|
|
Provides: gpg
|
|
Provides: openpgp
|
|
|
|
%description
|
|
GnuPG 1.9 is the development version of GnuPG; it is based on some old
|
|
GnuPG 1.3 code and the previous NewPG package. It will eventually
|
|
lead to a GnuPG 2.0 release. Note that GnuPG 1.4 and 1.9 are not yet
|
|
in sync and thus features and bug fixes done in 1.4 are not available
|
|
in 1.9. *Please keep on using 1.4.x for OpenPGP*; 1.9.x and 1.4.x may
|
|
be installed simultaneously.
|
|
|
|
You should use GnuPG 1.9 if you want to use the gpg-agent or gpgsm
|
|
(the S/MIME variant of gpg). The gpg-agent is also helpful when using
|
|
the stable gpg version 1.4 (as well as the old 1.2 series).
|
|
|
|
|
|
%prep
|
|
%setup -q -n gnupg-%{version}
|
|
|
|
%patch0 -p1 -b .pth
|
|
%patch1 -p1 -b .strsignal
|
|
%patch2 -p1 -b .testverbose
|
|
|
|
|
|
%build
|
|
|
|
%{?pie:CFLAGS="$RPM_OPT_FLAGS -fPIE" ; export CFLAGS}
|
|
%{?pie:LDFLAGS="$RPM_OPT_FLAGS -pie" ; export LDFLAG}
|
|
|
|
%configure \
|
|
--program-prefix="%{?_program_prefix}" \
|
|
--disable-rpath \
|
|
--enable-gpg
|
|
|
|
make %{?_smp_mflags}
|
|
|
|
|
|
%check || :
|
|
make check
|
|
|
|
|
|
%install
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
make install DESTDIR=$RPM_BUILD_ROOT
|
|
|
|
%find_lang %{name}
|
|
|
|
rm -f $RPM_BUILD_ROOT%{_infodir}/dir
|
|
|
|
|
|
%post
|
|
/sbin/install-info %{_infodir}/gnupg.info %{_infodir}/dir 2>/dev/null ||:
|
|
|
|
%preun
|
|
if [ $1 -eq 0 ]; then
|
|
/sbin/install-info --delete %{_infodir}/gnupg.info %{_infodir}/dir \
|
|
2>/dev/null ||:
|
|
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}/gpg-connect-agent
|
|
%{_bindir}/gpg-agent
|
|
%{_bindir}/gpgconf
|
|
%{_bindir}/gpgsm*
|
|
%{_bindir}/gpgv2
|
|
%{_bindir}/kbxutil
|
|
%{_bindir}/sc-copykeys
|
|
%{_bindir}/scdaemon
|
|
%{_bindir}/watchgnupg
|
|
%{_sbindir}/*
|
|
%{_datadir}/gnupg
|
|
%{_libdir}/gnupg
|
|
%{_libexecdir}/*
|
|
%{_infodir}/*
|
|
|
|
|
|
%clean
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
%changelog
|
|
* 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
|
|
|