Gentoo Archives: gentoo-commits

From: Ionen Wolkens <ionen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-puzzle/pathological/
Date: Tue, 07 Dec 2021 00:55:30
Message-Id: 1638838488.7e5213b08ce4a0dd39e8582487cd31f06210400e.ionen@gentoo
1 commit: 7e5213b08ce4a0dd39e8582487cd31f06210400e
2 Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 7 00:53:26 2021 +0000
4 Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 7 00:54:48 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e5213b0
7
8 games-puzzle/pathological: add missing || die
9
10 Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
11
12 games-puzzle/pathological/pathological-1.1.3_p16-r3.ebuild | 3 ++-
13 1 file changed, 2 insertions(+), 1 deletion(-)
14
15 diff --git a/games-puzzle/pathological/pathological-1.1.3_p16-r3.ebuild b/games-puzzle/pathological/pathological-1.1.3_p16-r3.ebuild
16 index 0c32cefd318d..a16de8ecbe0d 100644
17 --- a/games-puzzle/pathological/pathological-1.1.3_p16-r3.ebuild
18 +++ b/games-puzzle/pathological/pathological-1.1.3_p16-r3.ebuild
19 @@ -36,7 +36,8 @@ PATCHES=(
20 src_prepare() {
21 # debian's patches add python3 support and sanitize other aspects
22 # use_ogg_music: excluded given .xm files are fine
23 - local debian=($(<"${WORKDIR}"/debian/patches/series))
24 + local debian
25 + debian=($(<"${WORKDIR}"/debian/patches/series)) || die
26 debian=(${debian[@]/60_use_ogg_music.patch/})
27 PATCHES+=("${debian[@]/#/${WORKDIR}/debian/patches/}")