Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lua/luadbi/
Date: Thu, 04 Nov 2021 21:57:25
Message-Id: 1636063026.e04a74d0358e6aa6f19b8cadbb5504b81af0e52a.conikost@gentoo
1 commit: e04a74d0358e6aa6f19b8cadbb5504b81af0e52a
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Thu Nov 4 21:56:10 2021 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Thu Nov 4 21:57:06 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e04a74d0
7
8 dev-lua/luadbi: fix die
9
10 Closes: https://bugs.gentoo.org/821724
11 Package-Manager: Portage-3.0.28, Repoman-3.0.3
12 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
13
14 dev-lua/luadbi/luadbi-0.7.2-r103.ebuild | 6 +++---
15 1 file changed, 3 insertions(+), 3 deletions(-)
16
17 diff --git a/dev-lua/luadbi/luadbi-0.7.2-r103.ebuild b/dev-lua/luadbi/luadbi-0.7.2-r103.ebuild
18 index 0f05380ff39..c158bd4ebfd 100644
19 --- a/dev-lua/luadbi/luadbi-0.7.2-r103.ebuild
20 +++ b/dev-lua/luadbi/luadbi-0.7.2-r103.ebuild
21 @@ -62,7 +62,7 @@ lua_src_compile() {
22 use postgres && emake ${myemakeargs} PSQL_INC="-I$(pg_config --libdir)" psql
23 use sqlite emake ${myemakeargs} SQLITE3_INC="-I/usr/include" sqlite
24
25 - die
26 + popd
27 }
28
29 src_compile() {
30 @@ -72,7 +72,7 @@ src_compile() {
31 lua_src_test() {
32 pushd "${BUILD_DIR}" || die
33 cd "${S}"/tests && ${ELUA} run_tests.lua || die
34 - die
35 + popd
36 }
37
38 src_test() {
39 @@ -93,7 +93,7 @@ lua_src_install() {
40 use postgres && emake ${myemakeargs[@]} install_psql
41 use sqlite && emake ${myemakeargs[@]} install_sqlite3
42
43 - die
44 + popd
45 }
46
47 src_install() {