From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 58B651382C5 for ; Wed, 21 Apr 2021 20:11:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B19C5E084A; Wed, 21 Apr 2021 20:11:21 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 94E82E084A for ; Wed, 21 Apr 2021 20:11:21 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 158613410D0 for ; Wed, 21 Apr 2021 20:11:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 72EFA5C9 for ; Wed, 21 Apr 2021 20:11:18 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1619035864.c58a9edbd762835c7b91280ea3ab3ba509a166b1.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lua/lua-openssl/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lua/lua-openssl/lua-openssl-0.8.0_p6.ebuild X-VCS-Directories: dev-lua/lua-openssl/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: c58a9edbd762835c7b91280ea3ab3ba509a166b1 X-VCS-Branch: master Date: Wed, 21 Apr 2021 20:11:18 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 475c8780-2ce9-475e-9f59-4ed00520cd1a X-Archives-Hash: 52dc84f5e5cc8c517596d46466dbbe8f commit: c58a9edbd762835c7b91280ea3ab3ba509a166b1 Author: Conrad Kostecki gentoo org> AuthorDate: Wed Apr 21 20:10:30 2021 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Wed Apr 21 20:11:04 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c58a9edb 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 gentoo.org> dev-lua/lua-openssl/lua-openssl-0.8.0_p6.ebuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dev-lua/lua-openssl/lua-openssl-0.8.0_p6.ebuild b/dev-lua/lua-openssl/lua-openssl-0.8.0_p6.ebuild index 64b5f3d8e52..d1e79376de0 100644 --- a/dev-lua/lua-openssl/lua-openssl-0.8.0_p6.ebuild +++ b/dev-lua/lua-openssl/lua-openssl-0.8.0_p6.ebuild @@ -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