Accepting request 330467 from home:AndreasStieger:branches:Base:System
gnupg 2.1.8 OBS-URL: https://build.opensuse.org/request/show/330467 OBS-URL: https://build.opensuse.org/package/show/Base:System/gpg2?expand=0&rev=116
This commit is contained in:
parent
389631ebcd
commit
be180c1615
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:c18a3776d47fec98892d51d28b6574ef16bf0a25eabb0956231058aaf2e7846e
|
|
||||||
size 4918583
|
|
Binary file not shown.
3
gnupg-2.1.8.tar.bz2
Normal file
3
gnupg-2.1.8.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:a3b8d01e4690715d42e8f289493c85413766f3fa935e4fe7e5ff5b0f6e2781a3
|
||||||
|
size 4900705
|
BIN
gnupg-2.1.8.tar.bz2.sig
Normal file
BIN
gnupg-2.1.8.tar.bz2.sig
Normal file
Binary file not shown.
17
gpg2.changes
17
gpg2.changes
@ -1,3 +1,20 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Sep 11 06:02:23 UTC 2015 - astieger@suse.com
|
||||||
|
|
||||||
|
- GnuPG 2.1.8:
|
||||||
|
* gpg: Sending very large keys to the keyservers works again.
|
||||||
|
* gpg: Validity strings in key listings are now again translatable.
|
||||||
|
* gpg: Emit FAILURE status lines to help GPGME.
|
||||||
|
* gpg: Does not anymore link to Libksba to reduce dependencies.
|
||||||
|
* gpgsm: Export of secret keys via Assuan is now possible.
|
||||||
|
* agent: Raise the maximum passphrase length from 100 to 255 bytes.
|
||||||
|
* agent: Fix regression using EdDSA keys with ssh.
|
||||||
|
* Does not anymore use a build timestamp by default.
|
||||||
|
* The fallback encoding for broken locale settings changed
|
||||||
|
from Latin-1 to UTF-8.
|
||||||
|
* Many code cleanups and improved internal documentation.
|
||||||
|
* Various minor bug fixes.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Aug 12 10:58:48 UTC 2015 - astieger@suse.com
|
Wed Aug 12 10:58:48 UTC 2015 - astieger@suse.com
|
||||||
|
|
||||||
|
13
gpg2.spec
13
gpg2.spec
@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: gpg2
|
Name: gpg2
|
||||||
Version: 2.1.7
|
Version: 2.1.8
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: GnuPG 2
|
Summary: GnuPG 2
|
||||||
License: GPL-3.0+
|
License: GPL-3.0+
|
||||||
@ -27,6 +27,7 @@ Source: ftp://ftp.gnupg.org/gcrypt/gnupg/gnupg-%{version}.tar.bz2
|
|||||||
Source2: ftp://ftp.gnupg.org/gcrypt/gnupg/gnupg-%{version}.tar.bz2.sig
|
Source2: ftp://ftp.gnupg.org/gcrypt/gnupg/gnupg-%{version}.tar.bz2.sig
|
||||||
# https://www.gnupg.org/signature_key.html
|
# https://www.gnupg.org/signature_key.html
|
||||||
Source3: %{name}.keyring
|
Source3: %{name}.keyring
|
||||||
|
Source99: %{name}.changes
|
||||||
Patch4: gnupg-2.0.9-langinfo.patch
|
Patch4: gnupg-2.0.9-langinfo.patch
|
||||||
Patch5: gnupg-2.0.18-files-are-digests.patch
|
Patch5: gnupg-2.0.18-files-are-digests.patch
|
||||||
Patch6: gnupg-dont-fail-with-seahorse-agent.patch
|
Patch6: gnupg-dont-fail-with-seahorse-agent.patch
|
||||||
@ -91,6 +92,7 @@ PIE="-fpie"
|
|||||||
%endif
|
%endif
|
||||||
export CFLAGS="%{optflags} ${PIE}"
|
export CFLAGS="%{optflags} ${PIE}"
|
||||||
export LDFLAGS=-pie
|
export LDFLAGS=-pie
|
||||||
|
date=$(date -u +%{Y}-%{m}-%{dT}%{H}:%{M}+0000 -r %{SOURCE99})
|
||||||
%configure \
|
%configure \
|
||||||
--libexecdir=%{_libdir} \
|
--libexecdir=%{_libdir} \
|
||||||
--docdir=%{_docdir}/%{name} \
|
--docdir=%{_docdir}/%{name} \
|
||||||
@ -104,7 +106,8 @@ export LDFLAGS=-pie
|
|||||||
--enable-gpgtar \
|
--enable-gpgtar \
|
||||||
--enable-large-rsa \
|
--enable-large-rsa \
|
||||||
--enable-large-secmem \
|
--enable-large-secmem \
|
||||||
--with-gnu-ld
|
--with-gnu-ld \
|
||||||
|
--enable-build-timestamp=$date
|
||||||
|
|
||||||
make %{?_smp_mflags}
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
@ -140,7 +143,7 @@ install -m 755 tools/gpgsplit %{buildroot}/%{_bindir}
|
|||||||
%check
|
%check
|
||||||
%if ! 0%{?qemu_user_space_build}
|
%if ! 0%{?qemu_user_space_build}
|
||||||
%ifnarch ppc64
|
%ifnarch ppc64
|
||||||
make check
|
make %{?_smp_mflags} check
|
||||||
%endif
|
%endif
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
@ -155,8 +158,8 @@ make check
|
|||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%doc %{_infodir}/gnupg*
|
%{_infodir}/gnupg*
|
||||||
%doc %{_mandir}/*/*.gz
|
%{_mandir}/*/*.gz
|
||||||
%doc %{_docdir}/%{name}
|
%doc %{_docdir}/%{name}
|
||||||
%{_bindir}/*
|
%{_bindir}/*
|
||||||
%{_libdir}/[^d]*
|
%{_libdir}/[^d]*
|
||||||
|
Loading…
Reference in New Issue
Block a user