blob: fd40a2d5b4e1bba5193ce32183a44fe318dd3df2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Copyright 2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
# Key isn't in a convenient format to download
# https://gdal.org/en/stable/download.html#current-release
SEC_KEYS_VALIDPGPKEYS=(
# openpgp GDPR policy strikes again. Dont use it
"7B130E955B44D87CCE2765F0DBD81FF52EC2A42A:gdal:ubuntu,manual"
)
inherit sec-keys
DESCRIPTION="OpenPGP keys used to sign GDAL"
HOMEPAGE="https://gdal.org"
KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
src_compile() {
# hack
A="${A} ${FILESDIR}/gdal-${PV}.gpg" sec-keys_src_compile
}
|