From 3f6f862e10d8eadb682ebb278db61189014082d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Wed, 17 Feb 2021 20:24:28 +0700 Subject: [PATCH] python3-grpcio: correct asm for boringssl The line was changed to: if BUILD_WITH_BORING_SSL_ASM and not BUILD_WITH_SYSTEM_OPENSSL: --- srcpkgs/python3-grpcio/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-grpcio/template b/srcpkgs/python3-grpcio/template index 76b88b3c8c4..749846e54cd 100644 --- a/srcpkgs/python3-grpcio/template +++ b/srcpkgs/python3-grpcio/template @@ -1,7 +1,7 @@ # Template file for 'python3-grpcio' pkgname=python3-grpcio version=1.35.0 -revision=1 +revision=2 archs="x86_64* i686* aarch64* armv[67]* ppc64le*" wrksrc="${pkgname#*-}-${version}" build_style=python3-module @@ -47,5 +47,5 @@ post_patch() { vsed -i setup.py \ -e "s/asm_key = .*/asm_key = '${asm_key}'/" \ - -e "s/if BUILD_WITH_BORING_SSL_ASM:/if False:/" + -e "s/if BUILD_WITH_BORING_SSL_ASM.*:/if False:/" }