dev-lua/lua-openssl: disable TestCRL test

Reported to upstream:
https://github.com/zhaozg/lua-openssl/issues/231

Bug: https://bugs.gentoo.org/783423
Closes: https://bugs.gentoo.org/784851
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
This commit is contained in:
Conrad Kostecki
2021-04-21 22:10:30 +02:00
parent 22394d577a
commit c58a9edbd7

View File

@@ -49,9 +49,10 @@ src_prepare() {
# Allow override of LUA* variables
sed -e '/LUA /s/:=/?=/g' -e '/LUA_VERSION/s/:=/?=/g' -i Makefile || die
# Disable TestCMS test suite, as it fails
# Disable TestCMS and TestCRL test suite, as it fails
# See: https://github.com/zhaozg/lua-openssl/issues/230
sed -e '/6.cms.lua/d' -i test/test.lua || die
# See: https://github.com/zhaozg/lua-openssl/issues/231
sed -e '/6.cms.lua/d' -e '/5.x509_crl.lua/d' -i test/test.lua || die
# Prepare needed dependencies (source code files only)
rm -r deps/{auxiliar,lua-compat} || die