From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1336461-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2B786158086 for <garchives@archives.gentoo.org>; Thu, 4 Nov 2021 21:57:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4FBABE07C5; Thu, 4 Nov 2021 21:57:24 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D4A09E07C5 for <gentoo-commits@lists.gentoo.org>; Thu, 4 Nov 2021 21:57:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4ABA034304E for <gentoo-commits@lists.gentoo.org>; Thu, 4 Nov 2021 21:57:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 064A483 for <gentoo-commits@lists.gentoo.org>; Thu, 4 Nov 2021 21:57:20 +0000 (UTC) From: "Conrad Kostecki" <conikost@gentoo.org> 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" <conikost@gentoo.org> Message-ID: <1636063026.e04a74d0358e6aa6f19b8cadbb5504b81af0e52a.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lua/luadbi/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lua/luadbi/luadbi-0.7.2-r103.ebuild X-VCS-Directories: dev-lua/luadbi/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: e04a74d0358e6aa6f19b8cadbb5504b81af0e52a X-VCS-Branch: master Date: Thu, 4 Nov 2021 21:57:20 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 93d29b59-8089-4f57-960e-1f9ee3c3fbc8 X-Archives-Hash: 45ead6f937a47f9a5ea8985e4fb7908e commit: e04a74d0358e6aa6f19b8cadbb5504b81af0e52a Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org> AuthorDate: Thu Nov 4 21:56:10 2021 +0000 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org> CommitDate: Thu Nov 4 21:57:06 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e04a74d0 dev-lua/luadbi: fix die Closes: https://bugs.gentoo.org/821724 Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org> dev-lua/luadbi/luadbi-0.7.2-r103.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-lua/luadbi/luadbi-0.7.2-r103.ebuild b/dev-lua/luadbi/luadbi-0.7.2-r103.ebuild index 0f05380ff39..c158bd4ebfd 100644 --- a/dev-lua/luadbi/luadbi-0.7.2-r103.ebuild +++ b/dev-lua/luadbi/luadbi-0.7.2-r103.ebuild @@ -62,7 +62,7 @@ lua_src_compile() { use postgres && emake ${myemakeargs} PSQL_INC="-I$(pg_config --libdir)" psql use sqlite emake ${myemakeargs} SQLITE3_INC="-I/usr/include" sqlite - die + popd } src_compile() { @@ -72,7 +72,7 @@ src_compile() { lua_src_test() { pushd "${BUILD_DIR}" || die cd "${S}"/tests && ${ELUA} run_tests.lua || die - die + popd } src_test() { @@ -93,7 +93,7 @@ lua_src_install() { use postgres && emake ${myemakeargs[@]} install_psql use sqlite && emake ${myemakeargs[@]} install_sqlite3 - die + popd } src_install() {