- 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.
This commit is contained in:
parent
430e1b2f42
commit
2415545d9f
@ -1 +1 @@
|
|||||||
gnupg-1.9.14.tar.bz2
|
gnupg-1.9.16.tar.bz2
|
||||||
|
Binary file not shown.
11
gnupg-1.9.16-pth.patch
Normal file
11
gnupg-1.9.16-pth.patch
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
--- gnupg-1.9.16/scd/command.c.pth 2005-04-20 05:23:46.000000000 -0500
|
||||||
|
+++ gnupg-1.9.16/scd/command.c 2005-04-26 09:17:35.000000000 -0500
|
||||||
|
@@ -1264,7 +1264,7 @@
|
||||||
|
else
|
||||||
|
locked_session = ctrl->server_local;
|
||||||
|
|
||||||
|
-#ifdef USE_GNU_PTH
|
||||||
|
+#if 0
|
||||||
|
if (rc && has_option (line, "--wait"))
|
||||||
|
{
|
||||||
|
pth_sleep (1); /* Better implement an event mechanism. However,
|
20
gnupg-1.9.16-strsignal.patch
Normal file
20
gnupg-1.9.16-strsignal.patch
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
diff -Nur gnupg-1.9.16-orig/common/signal.c gnupg-1.9.16/common/signal.c
|
||||||
|
--- gnupg-1.9.16-orig/common/signal.c 2004-12-21 11:03:00.000000000 +0100
|
||||||
|
+++ gnupg-1.9.16/common/signal.c 2005-05-10 07:55:06.000000000 +0200
|
||||||
|
@@ -73,12 +73,12 @@
|
||||||
|
static const char *
|
||||||
|
get_signal_name( int signum )
|
||||||
|
{
|
||||||
|
-#if defined(SYS_SIGLIST_DECLARED) && defined(NSIG)
|
||||||
|
- return (signum >= 0 && signum < NSIG) ? sys_siglist[signum] : "?";
|
||||||
|
-#else
|
||||||
|
- return "some signal";
|
||||||
|
-#endif
|
||||||
|
+ const char* tmp = strsignal(signum);
|
||||||
|
+ if (tmp)
|
||||||
|
+ return tmp;
|
||||||
|
+ else
|
||||||
|
+ return "some signal";
|
||||||
|
}
|
||||||
|
#endif /*!HAVE_DOSISH_SYSTEM*/
|
||||||
|
|
9
gnupg-1.9.16-testverbose.patch
Normal file
9
gnupg-1.9.16-testverbose.patch
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
diff -Nur gnupg-1.9.16-orig/tests/runtest gnupg-1.9.16/tests/runtest
|
||||||
|
--- gnupg-1.9.16-orig/tests/runtest 2004-02-20 14:46:35.000000000 +0100
|
||||||
|
+++ gnupg-1.9.16/tests/runtest 2005-05-10 07:49:56.000000000 +0200
|
||||||
|
@@ -1,4 +1,4 @@
|
||||||
|
#!/bin/sh
|
||||||
|
[ -x "$1" ] && exec $1 $2
|
||||||
|
-exec ./asschk --no-echo -DGPGSM=${GPGSM} <"$1"
|
||||||
|
+exec ./asschk --verbose --no-echo -DGPGSM=${GPGSM} <"$1"
|
||||||
|
|
BIN
gnupg-1.9.16.tar.bz2.sig
Normal file
BIN
gnupg-1.9.16.tar.bz2.sig
Normal file
Binary file not shown.
71
gnupg2.spec
71
gnupg2.spec
@ -1,16 +1,17 @@
|
|||||||
# $Id$
|
|
||||||
|
|
||||||
Summary: GNU utility for secure communication and data storage
|
Summary: GNU utility for secure communication and data storage
|
||||||
Name: gnupg2
|
Name: gnupg2
|
||||||
Version: 1.9.15
|
Version: 1.9.16
|
||||||
Release: 4%{?dist_tag}
|
Release: 1%{?dist}
|
||||||
|
|
||||||
License: GPL
|
License: GPL
|
||||||
Group: Applications/System
|
Group: Applications/System
|
||||||
Source0: ftp://ftp.gnupg.org/gcrypt/alpha/gnupg/gnupg-%{version}.tar.bz2
|
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
|
Source1: ftp://ftp.gnupg.org/gcrypt/alpha/gnupg/gnupg-%{version}.tar.bz2.sig
|
||||||
URL: http://www.gnupg.org/
|
URL: http://www.gnupg.org/
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||||
|
|
||||||
|
Patch0: gnupg-1.9.16-pth.patch
|
||||||
|
Patch1: gnupg-1.9.16-strsignal.patch
|
||||||
|
Patch2: gnupg-1.9.16-testverbose.patch
|
||||||
|
|
||||||
Obsoletes: newpg < 0.9.5
|
Obsoletes: newpg < 0.9.5
|
||||||
|
|
||||||
@ -28,12 +29,9 @@ BuildRequires: libgcrypt-devel => 1.2.0
|
|||||||
BuildRequires: libgpg-error-devel => 1.0
|
BuildRequires: libgpg-error-devel => 1.0
|
||||||
Requires: libgpg-error >= 1.0
|
Requires: libgpg-error >= 1.0
|
||||||
BuildRequires: libassuan-devel >= 0.6.9
|
BuildRequires: libassuan-devel >= 0.6.9
|
||||||
BuildRequires: libksba-devel >= 0.9.7
|
BuildRequires: libksba-devel >= 0.9.11
|
||||||
# to build without opensc support: --without opensc
|
BuildRequires: opensc-devel >= 0.9
|
||||||
%{!?_without_opensc:BuildRequires: opensc-devel >= 0.9}
|
BuildRequires: pcsc-lite-devel
|
||||||
%{!?_without_opensc:BuildRequires: pcsc-lite-devel }
|
|
||||||
%{?_without_opensc:BuildConflicts: opensc-devel }
|
|
||||||
|
|
||||||
BuildRequires: gettext
|
BuildRequires: gettext
|
||||||
BuildRequires: openldap-devel
|
BuildRequires: openldap-devel
|
||||||
BuildRequires: libusb-devel
|
BuildRequires: libusb-devel
|
||||||
@ -50,20 +48,25 @@ Provides: gpg
|
|||||||
Provides: openpgp
|
Provides: openpgp
|
||||||
|
|
||||||
%description
|
%description
|
||||||
GnuPG 1.9 is the future version of GnuPG; it is based on the gnupg-1.3
|
GnuPG 1.9 is the development version of GnuPG; it is based on some old
|
||||||
code and the previous newpg package. It will eventually lead to a
|
GnuPG 1.3 code and the previous NewPG package. It will eventually
|
||||||
GnuPG 2.0 release. Note that GnuPG 1.3 and 1.9 are not always in sync
|
lead to a GnuPG 2.0 release. Note that GnuPG 1.4 and 1.9 are not yet
|
||||||
and thus features and bug fixes done in 1.3 are not necessary
|
in sync and thus features and bug fixes done in 1.4 are not available
|
||||||
available in 1.9.
|
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 this GnuPG version if you want to use the gpg-agent or
|
You should use GnuPG 1.9 if you want to use the gpg-agent or gpgsm
|
||||||
gpgsm (the S/MIME variant of gpg). Note that the gpg-agent is also
|
(the S/MIME variant of gpg). The gpg-agent is also helpful when using
|
||||||
helpful when using the standard gpg versions (1.2.x or 1.3.x).
|
the stable gpg version 1.4 (as well as the old 1.2 series).
|
||||||
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n gnupg-%{version}
|
%setup -q -n gnupg-%{version}
|
||||||
|
|
||||||
|
%patch0 -p1 -b .pth
|
||||||
|
%patch1 -p1 -b .strsignal
|
||||||
|
%patch2 -p1 -b .testverbose
|
||||||
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
|
|
||||||
@ -72,17 +75,16 @@ helpful when using the standard gpg versions (1.2.x or 1.3.x).
|
|||||||
|
|
||||||
%configure \
|
%configure \
|
||||||
--program-prefix="%{?_program_prefix}" \
|
--program-prefix="%{?_program_prefix}" \
|
||||||
--disable-rpath
|
--disable-rpath \
|
||||||
|
--enable-gpg
|
||||||
|
|
||||||
make %{?_smp_mflags}
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
|
|
||||||
|
%check || :
|
||||||
make check
|
make check
|
||||||
|
|
||||||
|
|
||||||
%clean
|
|
||||||
rm -rf $RPM_BUILD_ROOT
|
|
||||||
|
|
||||||
|
|
||||||
%install
|
%install
|
||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf $RPM_BUILD_ROOT
|
||||||
|
|
||||||
@ -94,11 +96,11 @@ rm -f $RPM_BUILD_ROOT%{_infodir}/dir
|
|||||||
|
|
||||||
|
|
||||||
%post
|
%post
|
||||||
/sbin/install-info %{_infodir}/gnupg.info.gz %{_infodir}/dir 2>/dev/null ||:
|
/sbin/install-info %{_infodir}/gnupg.info %{_infodir}/dir 2>/dev/null ||:
|
||||||
|
|
||||||
%preun
|
%preun
|
||||||
if [ $1 -eq 0 ]; then
|
if [ $1 -eq 0 ]; then
|
||||||
/sbin/install-info --delete %{_infodir}/gnupg.info.gz %{_infodir}/dir \
|
/sbin/install-info --delete %{_infodir}/gnupg.info %{_infodir}/dir \
|
||||||
2>/dev/null ||:
|
2>/dev/null ||:
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -106,8 +108,10 @@ fi
|
|||||||
%files -f %{name}.lang
|
%files -f %{name}.lang
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%doc AUTHORS COPYING ChangeLog NEWS README THANKS TODO
|
%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
|
#attr(4755,root,root) %{_bindir}/gpg2
|
||||||
%{_bindir}/gpg2
|
%{_bindir}/gpg2
|
||||||
|
%{_bindir}/gpg-connect-agent
|
||||||
%{_bindir}/gpg-agent
|
%{_bindir}/gpg-agent
|
||||||
%{_bindir}/gpgconf
|
%{_bindir}/gpgconf
|
||||||
%{_bindir}/gpgsm*
|
%{_bindir}/gpgsm*
|
||||||
@ -123,7 +127,20 @@ fi
|
|||||||
%{_infodir}/*
|
%{_infodir}/*
|
||||||
|
|
||||||
|
|
||||||
|
%clean
|
||||||
|
rm -rf $RPM_BUILD_ROOT
|
||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* 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>
|
* Sun May 8 2005 Michael Schwendt <mschwendt[AT]users.sf.net>
|
||||||
- Drop patch0 again.
|
- Drop patch0 again.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user