Diff libassuan-2.5.5 with a libassuan-2.5.6

/usr/portage/dev-libs/libassuan/libassuan-2.5.6.ebuild 2023-10-09 14:52:29.508368351 +0300
1 1
# Copyright 1999-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4
EAPI=7
4
EAPI=8
5 5

  
6
inherit libtool
6
# Maintainers should:
7
# 1. Join the "Gentoo" project at https://dev.gnupg.org/project/view/27/
8
# 2. Subscribe to release tasks like https://dev.gnupg.org/T6159
9
# (find the one for the current release then subscribe to it +
10
# any subsequent ones linked within so you're covered for a while.)
11

  
12
VERIFY_SIG_OPENPGP_KEY_PATH="${BROOT}"/usr/share/openpgp-keys/gnupg.asc
13
inherit libtool verify-sig
7 14

  
8 15
DESCRIPTION="IPC library used by GnuPG and GPGME"
9 16
HOMEPAGE="https://www.gnupg.org/related_software/libassuan/index.en.html"
10 17
SRC_URI="mirror://gnupg/${PN}/${P}.tar.bz2"
18
SRC_URI+=" verify-sig? ( mirror://gnupg/${PN}/${P}.tar.bz2.sig )"
11 19

  
12 20
LICENSE="GPL-3 LGPL-2.1"
13 21
SLOT="0"
14 22
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris"
15 23

  
16 24
# Note: On each bump, update dep bounds on each version from configure.ac!
17
# We need >= 1.28 for gpgrt_malloc
18
RDEPEND=">=dev-libs/libgpg-error-1.28"
25
RDEPEND=">=dev-libs/libgpg-error-1.33"
19 26
DEPEND="${RDEPEND}"
27
BDEPEND="verify-sig? ( sec-keys/openpgp-keys-gnupg )"
20 28

  
21 29
src_prepare() {
22 30
	default
......
35 43

  
36 44
src_configure() {
37 45
	local myeconfargs=(
38
		--disable-static
39 46
		GPG_ERROR_CONFIG="${ESYSROOT}/usr/bin/${CHOST}-gpg-error-config"
40 47
		$("${S}/configure" --help | grep -o -- '--without-.*-prefix')
41 48
	)
Thank you!