summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrice Clement <monsieurp@gentoo.org>2018-06-29 16:32:37 +0200
committerPatrice Clement <monsieurp@gentoo.org>2018-06-30 11:33:38 +0200
commit94151dc64776a131115f9dc5a2c851de0fb998c5 (patch)
tree1fb185b572f7a8ff1ddca994e2d0f45879f7e4ae /app-misc
parentsys-fs/squashfs-tools: Version 4.3_p6. (diff)
downloadgentoo-94151dc64776a131115f9dc5a2c851de0fb998c5.tar.gz
gentoo-94151dc64776a131115f9dc5a2c851de0fb998c5.tar.bz2
gentoo-94151dc64776a131115f9dc5a2c851de0fb998c5.zip
app-misc/tmux-xpanes: version bump.
Package-Manager: Portage-2.3.28, Repoman-2.3.9
Diffstat (limited to 'app-misc')
-rw-r--r--app-misc/tmux-xpanes/Manifest1
-rw-r--r--app-misc/tmux-xpanes/tmux-xpanes-3.0.0.ebuild36
2 files changed, 37 insertions, 0 deletions
diff --git a/app-misc/tmux-xpanes/Manifest b/app-misc/tmux-xpanes/Manifest
index 5f549750a177..94a7b4478e73 100644
--- a/app-misc/tmux-xpanes/Manifest
+++ b/app-misc/tmux-xpanes/Manifest
@@ -1 +1,2 @@
DIST tmux-xpanes-2.2.2.tar.gz 34457 BLAKE2B b4f33ac6576db4100a4d6895c3c705fe3d44093a1c63d89c20f4203fb71160415903ae70880387f0419ec5bebdb9244a9e5802d9ae8a9c441e3ceebea1e70582 SHA512 0d5242daf95c0af78b64184ba1473620783072851f34fe2a91d4806dc529402bd506ada2e8a455b687f4504bac5cac8300249d555446edaa54a41f3b2eddd45c
+DIST tmux-xpanes-3.0.0.tar.gz 45256 BLAKE2B 6637e27816af643498bb7523fcdd39fc5e9272adb83101a20fd5c77f0917ae832986b3f811dab2020b0906dd81808438b9dba5cef737d502a0d91d2a72c4de19 SHA512 2a7187ac7251211f7fd6832cc60182621ae12f40de30cb3826452ea0e8b032351a261d1b1e7d79d87dfea3bbe95fd5140157e1b1e1ff29492f4df489aaec4711
diff --git a/app-misc/tmux-xpanes/tmux-xpanes-3.0.0.ebuild b/app-misc/tmux-xpanes/tmux-xpanes-3.0.0.ebuild
new file mode 100644
index 000000000000..eb9cd315795c
--- /dev/null
+++ b/app-misc/tmux-xpanes/tmux-xpanes-3.0.0.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+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 contrib/completion/zsh/*
+ fi
+}