Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-biology/cutg/
Date: Fri, 13 May 2022 20:04:18
Message-Id: 1652472214.221f6b599dcf26ab84be8e4ee2d77cfbb16c257b.sam@gentoo
1 commit: 221f6b599dcf26ab84be8e4ee2d77cfbb16c257b
2 Author: Thomas Bracht Laumann Jespersen <t <AT> laumann <DOT> xyz>
3 AuthorDate: Wed Apr 20 19:57:06 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Fri May 13 20:03:34 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=221f6b59
7
8 sci-biology/cutg: [QA] eend without argument
9
10 Signed-off-by: Thomas Bracht Laumann Jespersen <t <AT> laumann.xyz>
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 sci-biology/cutg/cutg-160-r1.ebuild | 6 +++---
14 1 file changed, 3 insertions(+), 3 deletions(-)
15
16 diff --git a/sci-biology/cutg/cutg-160-r1.ebuild b/sci-biology/cutg/cutg-160-r1.ebuild
17 index 97abacaab1e4..417248e5890c 100644
18 --- a/sci-biology/cutg/cutg-160-r1.ebuild
19 +++ b/sci-biology/cutg/cutg-160-r1.ebuild
20 @@ -1,4 +1,4 @@
21 -# Copyright 1999-2021 Gentoo Authors
22 +# Copyright 1999-2022 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 EAPI=7
26 @@ -22,8 +22,8 @@ src_compile() {
27 if use emboss; then
28 mkdir CODONS || die
29 ebegin "Indexing CUTG for usage with EMBOSS."
30 - EMBOSS_DATA="." cutgextract -auto -directory "${S}" || die "Indexing CUTG failed"
31 - eend
32 + EMBOSS_DATA="." cutgextract -auto -directory "${S}"
33 + eend $? "Indexing CUTG failed" || die
34 fi
35 }