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.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 09AA615808C for ; Wed, 23 Mar 2022 01:02:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B402CE08FE; Wed, 23 Mar 2022 01:02:16 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9106DE08F2 for ; Wed, 23 Mar 2022 01:02:16 +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 B8249342DD0 for ; Wed, 23 Mar 2022 01:02:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 252DA343 for ; Wed, 23 Mar 2022 01:02:13 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1647997227.2c39de081befb0aa4e6f16ddc9f8255938b4c813.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lua/lualdap/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lua/lualdap/lualdap-1.3.0-r2.ebuild X-VCS-Directories: dev-lua/lualdap/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 2c39de081befb0aa4e6f16ddc9f8255938b4c813 X-VCS-Branch: master Date: Wed, 23 Mar 2022 01:02:13 +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: 3b3678dc-6827-46d8-a54c-3d8f75217a4c X-Archives-Hash: 7c6b1e753b8e641c62886e6f62ce5b73 commit: 2c39de081befb0aa4e6f16ddc9f8255938b4c813 Author: Sam James gentoo org> AuthorDate: Wed Mar 23 01:00:27 2022 +0000 Commit: Sam James gentoo org> CommitDate: Wed Mar 23 01:00:27 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c39de08 dev-lua/lualdap: fix definition of src_test/src_install Signed-off-by: Sam James gentoo.org> dev-lua/lualdap/lualdap-1.3.0-r2.ebuild | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dev-lua/lualdap/lualdap-1.3.0-r2.ebuild b/dev-lua/lualdap/lualdap-1.3.0-r2.ebuild index bd92eaf88080..1abb207ea041 100644 --- a/dev-lua/lualdap/lualdap-1.3.0-r2.ebuild +++ b/dev-lua/lualdap/lualdap-1.3.0-r2.ebuild @@ -50,7 +50,7 @@ lua_src_compile() { emake "${myemakeargs[@]}" - popd + popd || die } src_compile() { @@ -59,11 +59,11 @@ src_compile() { lua_src_test() { pushd "${BUILD_DIR}" || die - LUA_CPATH="./src/?.so" ${ELUA} tests/test.lua - popd + LUA_CPATH="./src/?.so" ${ELUA} tests/test.lua || die + popd || die } -src_install() { +src_test() { lua_foreach_impl lua_src_test } @@ -80,7 +80,7 @@ lua_src_install() { emake "${myemakeargs[@]}" install - popd + popd || die } src_install() {