diff options
author | Pascal Jäger <pascal.jaeger@leimstift.de> | 2023-09-04 09:14:05 +0200 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-09-09 03:14:56 +0100 |
commit | 56535862e410c3a661248f9e2f94d24385af11db (patch) | |
tree | 295a46a48d7955786cfb8d217a3e264996851af5 | |
parent | sys-fs/zfs: drop more linux-mod.eclass cruft (diff) | |
download | gentoo-56535862e410c3a661248f9e2f94d24385af11db.tar.gz gentoo-56535862e410c3a661248f9e2f94d24385af11db.tar.bz2 gentoo-56535862e410c3a661248f9e2f94d24385af11db.zip |
app-admin/entr: add 5.4
Signed-off-by: Pascal Jäger <pascal.jaeger@leimstift.de>
Closes: https://github.com/gentoo/gentoo/pull/32601
Signed-off-by: Sam James <sam@gentoo.org>
-rw-r--r-- | app-admin/entr/Manifest | 1 | ||||
-rw-r--r-- | app-admin/entr/entr-5.4.ebuild | 37 |
2 files changed, 38 insertions, 0 deletions
diff --git a/app-admin/entr/Manifest b/app-admin/entr/Manifest index c8b74aab047e..f4db57f335ee 100644 --- a/app-admin/entr/Manifest +++ b/app-admin/entr/Manifest @@ -1 +1,2 @@ DIST entr-5.3.tar.gz 20905 BLAKE2B 79b4c39ee3f9530db1d8a6cd62a6aa925e201d6b5b370b25c3884b160a83658688204005db612b1d18743ba39f0de6ccad8492910142ebfff7b550a5ec48516d SHA512 b160cb60de99a743226b472256d937ef6ace54f5350a83420f59ac2706cd0fb042d6f85fcac6c73e76c161c6225b956df8b00156dea9ce55d8b8225e8ca13e7f +DIST entr-5.4.tar.gz 21215 BLAKE2B 52e24b56d876ff22bb8660ed3bb822e532da97999b20a358c5b9c120a5526eeb80ed01b56c993d7da10471124c52295145f8c948f88530b086d6af5b593ee70a SHA512 c366254df6df28edbcb2a9d12ab97e063baa4d78889e54b3de6b75e8c7ef2468c661216485bbf297a4d539ac3d186fcc9b140a99a1a89306f6cac1f969a7d95f diff --git a/app-admin/entr/entr-5.4.ebuild b/app-admin/entr/entr-5.4.ebuild new file mode 100644 index 000000000000..6a6fd5457653 --- /dev/null +++ b/app-admin/entr/entr-5.4.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit edo toolchain-funcs + +DESCRIPTION="Run arbitrary commands when files change" +HOMEPAGE=" + https://eradman.com/entrproject/ + https://github.com/eradman/entr +" +SRC_URI="https://eradman.com/entrproject/code/${P}.tar.gz" + +LICENSE="ISC" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" +IUSE="test" +RESTRICT="!test? ( test )" + +BDEPEND=" + test? ( + app-editors/vim + app-misc/tmux + dev-vcs/git + sys-apps/file + ) +" + +src_configure() { + tc-export CC + export PREFIX="${EPREFIX}/usr" + export SHELL="${BROOT}/bin/bash" + export TMUX_TMPDIR="${T}" + + edo ./configure +} |