commit: b9c55b165770dcaac139631344810e1cf36946a9
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 17 19:30:24 2026 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Tue Feb 17 22:08:13 2026 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9c55b16
app-shells/posh-z: bump to 1.1.15
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
app-shells/posh-z/Manifest | 1 +
app-shells/posh-z/posh-z-1.1.15.ebuild | 39 ++++++++++++++++++++++++++++++++++
2 files changed, 40 insertions(+)
diff --git a/app-shells/posh-z/Manifest b/app-shells/posh-z/Manifest
index eb10bef7dd4d..95b69e19f158 100644
--- a/app-shells/posh-z/Manifest
+++ b/app-shells/posh-z/Manifest
@@ -1 +1,2 @@
DIST posh-z-1.1.12_p20230811.tar.gz 290155 BLAKE2B
227d14c947daf121d013e4ad020a80935c87fd198e57e486d0f3598ef9c7d72d660e61b9576fecc6635226a47388d2eb9ea785762436fd177a74eeb867ad4095
SHA512
91d2173205ef5d27e9385ed5a09e6809be284488e69e4d6ca85019cdf0abfac26aaa01765c52eaee85aacd367982510bad5b3881ca3679f2e8ba19101db3cd50
+DIST posh-z-1.1.15.snapshot.gh.tar.gz 290598 BLAKE2B
da1d90eb23260b99b47f36d328091aabfd8c89d8c97d07ac1bde97094078fe1d909c0cbe11f1266722b9ea7ccc11a692607cc305a4ef2d3ea902ac790aa906b6
SHA512
1d48113b052ccfd89e07af88914a6293de89b063ad930cbb7fa1400e0d9c2ff001d78ee3a5d06a8a32b60aa5b5f5fa1ef52d1cd73c8d940de1e415c0a21f2bdf
diff --git a/app-shells/posh-z/posh-z-1.1.15.ebuild
b/app-shells/posh-z/posh-z-1.1.15.ebuild
new file mode 100644
index 000000000000..2e1d7ecbe32b
--- /dev/null
+++ b/app-shells/posh-z/posh-z-1.1.15.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2026 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=9
+
+[[ ${PV} == 1.1.15 ]] && COMMIT=966b1210b987f39e0c18bdf43ff509fe4fb0f2e3
+
+DESCRIPTION="Quickly navigate the file system based on your cd history"
+HOMEPAGE="https://github.com/badmotorfinger/z/"
+
+if [[ "${PV}" == *9999* ]] ; then
+ inherit git-r3
+
+ EGIT_REPO_URI="https://github.com/badmotorfinger/z"
+else
+ SRC_URI="https://github.com/badmotorfinger/z/archive/${COMMIT}.tar.gz
+ -> ${P}.snapshot.gh.tar.gz"
+ S="${WORKDIR}/z-${COMMIT}"
+
+ KEYWORDS="~amd64"
+fi
+
+LICENSE="public-domain"
+SLOT="${PV%%_p*}"
+
+RDEPEND="
+ virtual/pwsh:*
+"
+
+src_compile() {
+ # Script-only module. Nothing to do here.
+ :
+}
+
+src_install() {
+ insinto "/usr/share/GentooPowerShell/Modules/z/${SLOT}"
+ doins z.*
+ einstalldocs
+}