summaryrefslogtreecommitdiff
path: root/app-misc/tmux-xpanes
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2019-02-20 15:11:50 +0000
committerV3n3RiX <venerix@redcorelinux.org>2019-02-20 15:11:50 +0000
commit16449a80e28af2209916cc66d19c9a44ca2b90d9 (patch)
treeb4cfe2332c7a6c5da27b6985bf05db4508df1a92 /app-misc/tmux-xpanes
parent79599515788b85b18aa655e7b7f8cc05c1bbddd8 (diff)
gentoo resync : 20.02.2019
Diffstat (limited to 'app-misc/tmux-xpanes')
-rw-r--r--app-misc/tmux-xpanes/Manifest2
-rw-r--r--app-misc/tmux-xpanes/tmux-xpanes-3.1.1.ebuild36
2 files changed, 38 insertions, 0 deletions
diff --git a/app-misc/tmux-xpanes/Manifest b/app-misc/tmux-xpanes/Manifest
index 5e1ef148278c..d166e68744dd 100644
--- a/app-misc/tmux-xpanes/Manifest
+++ b/app-misc/tmux-xpanes/Manifest
@@ -1,3 +1,5 @@
DIST tmux-xpanes-3.0.0.tar.gz 45256 BLAKE2B 6637e27816af643498bb7523fcdd39fc5e9272adb83101a20fd5c77f0917ae832986b3f811dab2020b0906dd81808438b9dba5cef737d502a0d91d2a72c4de19 SHA512 2a7187ac7251211f7fd6832cc60182621ae12f40de30cb3826452ea0e8b032351a261d1b1e7d79d87dfea3bbe95fd5140157e1b1e1ff29492f4df489aaec4711
+DIST tmux-xpanes-3.1.1.tar.gz 51507 BLAKE2B 6fdf3a6cf7faecde33d9e51d6c40dd3b8bbabce1f63f7f5a0afb866d6ccece623c9867b542ba54b478861fbfc7472cd3b3bd378d577faf3d32eca88bf1e82538 SHA512 fe1fd5ef698c4069c4c5c078a10f602642b0c260a8cccd90796b79958fbd655f99bd69884978b8c56df20190b808d17e54fdc9ef40426707344038ba8601884f
EBUILD tmux-xpanes-3.0.0.ebuild 694 BLAKE2B d5e0e6fe327ecc327c28cfd5260ac86d9b0b496827309264dd5fb4583456a4b667f129a4bde6c818119976a8705b75d0af7a05d13a1a6ca99ba728c3f11bf502 SHA512 8fc75b4d63f8f9fe38d90213fca7e2b1d4c45b24c5f8912ce606c9f00754b1fa7a6f26188d8ce39a388e59ef71fb5298aba871985651d92dee3cb72af1e8c462
+EBUILD tmux-xpanes-3.1.1.ebuild 693 BLAKE2B d09b06019b320c6c5060d67882c7b84786dcacaf120818411576874c5e5e72499ea06fa86e88eaa01c011632b2ac8f2cd5398368e8e1afba1ddc338c46d22875 SHA512 884515267c078174903d9b1e98661625d4b4faad0ab6689cac1d2522595ae21144c57d025cad76278c77887a56b006c90be7f2198cf118b22ceae24be8e98501
MISC metadata.xml 460 BLAKE2B 2f0ffe7b708299dbcacb08b48bc4cc78ab360310e1234b0d06efb65543de75996ad5f1469bab45f912ba44817072b4f1b845bea50ec9ced322b90bbeab07042b SHA512 b275a2b153cbe7d0a1f4bb5492bb0b884e16aba4baa543f050e316d9086d6d1661d6b49c11ff49711b91672fe1f4c8ffb54cf98abca409e6c50ea0001ca2516f
diff --git a/app-misc/tmux-xpanes/tmux-xpanes-3.1.1.ebuild b/app-misc/tmux-xpanes/tmux-xpanes-3.1.1.ebuild
new file mode 100644
index 000000000000..75d8c2d638d8
--- /dev/null
+++ b/app-misc/tmux-xpanes/tmux-xpanes-3.1.1.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2019 Gentoo Authors
+# 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 completion/zsh/*
+ fi
+}