blob: fe37c1991d931f372eade43aec03c67fcd4b670d (
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
|
# https://dev.gnupg.org/T4191
# patch from Debian, see: https://salsa.debian.org/debian/gpgme/blob/debian/master/debian/patches/0004-Avoid-Y2038-problem-on-32-bit-architectures.patch
source+=(0004-Avoid-Y2038-problem-on-32-bit-architectures.patch)
sha256sums+=('0c788590e0bb7cc9da04457f94360ceef9cb9fc0525e6bfbf9fbb8d72801ae8f')
eval "$(
{
declare -f prepare || \
printf 'prepare() {\n}\n'
} \
| sed '
$i cd "${srcdir}/${pkgbase}-${pkgver}" \
patch -Np1 -i "$srcdir/0004-Avoid-Y2038-problem-on-32-bit-architectures.patch"
'
)"
# touches for pyc cache in build are 64-bittish
eval "$(
declare -f build | \
sed '
s/lib.linux-x86_64/lib.linux-i686/g
'
)"
|