commit: 23873c94cd4a4e55527136a26696c53dee787d8c
Author: Petr Vaněk <arkamar <AT> atlas <DOT> cz>
AuthorDate: Sun Feb 12 17:21:13 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Feb 15 08:31:28 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23873c94
app-admin/entr: fix prepare and test phases issues
- Use correct name of PATCHES array in order to apply patch
- Fix issue with interfering tmux sessions in test phase by exporting
TMUX_TMPDIR="${T}"
Fixes: 8a7dc41ca137 ("app-admin/entr: add 5.3")
Closes: https://bugs.gentoo.org/893628
Signed-off-by: Petr Vaněk <arkamar <AT> atlas.cz>
Closes: https://github.com/gentoo/gentoo/pull/29577
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-admin/entr/{entr-5.3.ebuild => entr-5.3-r1.ebuild} | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/app-admin/entr/entr-5.3.ebuild b/app-admin/entr/entr-5.3-r1.ebuild
similarity index 94%
rename from app-admin/entr/entr-5.3.ebuild
rename to app-admin/entr/entr-5.3-r1.ebuild
index cd6c30b6b897..142efed43b1f 100644
--- a/app-admin/entr/entr-5.3.ebuild
+++ b/app-admin/entr/entr-5.3-r1.ebuild
@@ -27,7 +27,7 @@ BDEPEND="
)
"
-PATCH=(
+PATCHES=(
"${FILESDIR}/${P}-no-which.patch"
)
@@ -35,6 +35,7 @@ src_configure() {
tc-export CC
export PREFIX="${EPREFIX}/usr"
export SHELL="${BROOT}/bin/bash"
+ export TMUX_TMPDIR="${T}"
edo ./configure
}