summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrice Clement <monsieurp@gentoo.org>2021-01-19 23:26:10 +0100
committerPatrice Clement <monsieurp@gentoo.org>2021-01-20 00:09:05 +0100
commitdf665d834ed5c7e074a74b343c1c5b1ab7cc148b (patch)
tree156d0246af0dfa5fddafc3cd56c3f9eb442f6851 /app-misc/tmux-xpanes
parentgames-fps/gzdoom: Add '-DNDEBUG' to CXXFLAGS (diff)
downloadgentoo-df665d834ed5c7e074a74b343c1c5b1ab7cc148b.tar.gz
gentoo-df665d834ed5c7e074a74b343c1c5b1ab7cc148b.tar.bz2
gentoo-df665d834ed5c7e074a74b343c1c5b1ab7cc148b.zip
app-misc/tmux-xpanes: version bump.
Package-Manager: Portage-3.0.9, Repoman-3.0.2 Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
Diffstat (limited to 'app-misc/tmux-xpanes')
-rw-r--r--app-misc/tmux-xpanes/Manifest1
-rw-r--r--app-misc/tmux-xpanes/tmux-xpanes-4.1.2.ebuild36
2 files changed, 37 insertions, 0 deletions
diff --git a/app-misc/tmux-xpanes/Manifest b/app-misc/tmux-xpanes/Manifest
index 086fac741010..53c61977eb81 100644
--- a/app-misc/tmux-xpanes/Manifest
+++ b/app-misc/tmux-xpanes/Manifest
@@ -1 +1,2 @@
DIST tmux-xpanes-4.1.1.tar.gz 62564 BLAKE2B 195221c5f069048ab42a57a00c4c8b79f0c2acf1b0cdd7096e553c9a5ed0b3e3b3e9dfacb8f2eb141861b34ef52ad0a675fb501e314d7e4bfe4a41ff4bfd9f35 SHA512 789e19136faa939670cf8e91e7e7979fae8e536aeffdad7d39e1861e279214985d40807dc07afcd8b28cc4de140a944c9b2f5fe051a6b53e12b7903baefcb251
+DIST tmux-xpanes-4.1.2.tar.gz 63337 BLAKE2B 1ddc0c0422eec64697aea7eb97c8bbbbd4005f4c470d5d0bf1fae4eab01d8ced50503180f76d0ed5aa9d29e854b54aab8f8216ac945e6c1c2e4b4833c5661ceb SHA512 b18445940052a6af848286b901bfd81abfbdf83356cd1b39ac592e1509c9d63b81440978a8c2632672bfb7a2429a7fcc57b7c55c91a00d751b43aa9f368a5c57
diff --git a/app-misc/tmux-xpanes/tmux-xpanes-4.1.2.ebuild b/app-misc/tmux-xpanes/tmux-xpanes-4.1.2.ebuild
new file mode 100644
index 000000000000..2b3315319df6
--- /dev/null
+++ b/app-misc/tmux-xpanes/tmux-xpanes-4.1.2.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="tmux-based terminal divider"
+HOMEPAGE="https://github.com/greymd/tmux-xpanes"
+SRC_URI="https://github.com/greymd/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+KEYWORDS="~amd64 ~x86"
+LICENSE="MIT"
+SLOT="0"
+
+IUSE="zsh-completion"
+
+RDEPEND="
+ app-misc/tmux
+ dev-lang/perl
+ dev-libs/openssl:0=
+ zsh-completion? ( app-shells/zsh )"
+
+DEPEND="${RDEPEND}"
+
+RESTRICT="test"
+
+DOCS=( CONTRIBUTING.md LICENSE README.md )
+
+src_install() {
+ dobin bin/*
+ doman man/*.1
+ einstalldocs
+ if use zsh-completion; then
+ insinto /usr/share/zsh/site-functions
+ doins completion/zsh/*
+ fi
+}