diff options
author | Francesco Turco <fturco@fastmail.fm> | 2017-09-05 13:54:04 +0200 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2017-10-07 19:30:08 +0200 |
commit | 39287641452c0686648f4536b058e8e3e5c1293e (patch) | |
tree | 9eb7acf5abedb57073974caa3efed127c88be8ea /app-crypt/seahorse | |
parent | app-misc/pet: install zsh completion scripts. (diff) | |
download | gentoo-39287641452c0686648f4536b058e8e3e5c1293e.tar.gz gentoo-39287641452c0686648f4536b058e8e3e5c1293e.tar.bz2 gentoo-39287641452c0686648f4536b058e8e3e5c1293e.zip |
app-crypt/seahorse: accept GnuPG 2.2.0.
Upstream commit:
https://git.gnome.org/browse/seahorse/commit/?id=31a9a6ffc10f9737e70d7f0051ff590ff284ad07.
Closes: https://bugs.gentoo.org/629864
Closes: https://github.com/gentoo/gentoo/pull/5620
Diffstat (limited to 'app-crypt/seahorse')
-rw-r--r-- | app-crypt/seahorse/seahorse-3.20.0.ebuild | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/app-crypt/seahorse/seahorse-3.20.0.ebuild b/app-crypt/seahorse/seahorse-3.20.0.ebuild index 63175bbaa502..3a5351bb36e0 100644 --- a/app-crypt/seahorse/seahorse-3.20.0.ebuild +++ b/app-crypt/seahorse/seahorse-3.20.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -46,6 +46,10 @@ src_prepare() { -e '/CFLAGS="$CFLAGS -O0/d' \ -i configure.ac configure || die "sed 1 failed" + # Accept GnuPG 2.2.0 + sed -e 's/GNUPG_ACCEPTED="2.0.12 2.1.4"/GNUPG_ACCEPTED="2.0.12 2.1.4 2.2.0"/g' \ + -i configure.ac configure || die "sed failed" + gnome2_src_prepare } |