summaryrefslogtreecommitdiff
path: root/app-misc/tmux-xpanes
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-01-19 20:11:46 +0000
committerV3n3RiX <venerix@redcorelinux.org>2018-01-19 20:11:46 +0000
commit5b5df25227111ef465caf5c52bcfb66dac3219cd (patch)
tree31b713cac6188358125cbb66b8804030328740f0 /app-misc/tmux-xpanes
parent02e2208f46f4e2c00fb9743cbc47350bdd233bfa (diff)
gentoo resync : 19.01.2018
Diffstat (limited to 'app-misc/tmux-xpanes')
-rw-r--r--app-misc/tmux-xpanes/Manifest3
-rw-r--r--app-misc/tmux-xpanes/metadata.xml15
-rw-r--r--app-misc/tmux-xpanes/tmux-xpanes-2.2.2.ebuild36
3 files changed, 54 insertions, 0 deletions
diff --git a/app-misc/tmux-xpanes/Manifest b/app-misc/tmux-xpanes/Manifest
new file mode 100644
index 000000000000..15b4bff43c75
--- /dev/null
+++ b/app-misc/tmux-xpanes/Manifest
@@ -0,0 +1,3 @@
+DIST tmux-xpanes-2.2.2.tar.gz 34457 BLAKE2B b4f33ac6576db4100a4d6895c3c705fe3d44093a1c63d89c20f4203fb71160415903ae70880387f0419ec5bebdb9244a9e5802d9ae8a9c441e3ceebea1e70582 SHA512 0d5242daf95c0af78b64184ba1473620783072851f34fe2a91d4806dc529402bd506ada2e8a455b687f4504bac5cac8300249d555446edaa54a41f3b2eddd45c
+EBUILD tmux-xpanes-2.2.2.ebuild 704 BLAKE2B 5e492bffdc077f4b317d7d0b3eff712c9ed810a0cdfac637c53ef8db72f5e6610e26ae1d97999b0296e3418c6ae90fd4b0c52c683027ed34d0c249d46b1d2686 SHA512 51311239f20fb092771105521d3cc70c30e4e5aeb94dbcfea5499d3688453126278757a86b3eb02aad2d8711d48187fb9439da379e9a89baaa95dc02441eca00
+MISC metadata.xml 460 BLAKE2B 2f0ffe7b708299dbcacb08b48bc4cc78ab360310e1234b0d06efb65543de75996ad5f1469bab45f912ba44817072b4f1b845bea50ec9ced322b90bbeab07042b SHA512 b275a2b153cbe7d0a1f4bb5492bb0b884e16aba4baa543f050e316d9086d6d1661d6b49c11ff49711b91672fe1f4c8ffb54cf98abca409e6c50ea0001ca2516f
diff --git a/app-misc/tmux-xpanes/metadata.xml b/app-misc/tmux-xpanes/metadata.xml
new file mode 100644
index 000000000000..70d20d789e99
--- /dev/null
+++ b/app-misc/tmux-xpanes/metadata.xml
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>monsieurp@gentoo.org</email>
+ <name>Patrice Clement</name>
+ </maintainer>
+ <maintainer type="project">
+ <email>shell-tools@gentoo.org</email>
+ <name>Gentoo Shell Tools Project</name>
+ </maintainer>
+ <upstream>
+ <remote-id type="github">greymd/tmux-xpanes</remote-id>
+ </upstream>
+</pkgmetadata>
diff --git a/app-misc/tmux-xpanes/tmux-xpanes-2.2.2.ebuild b/app-misc/tmux-xpanes/tmux-xpanes-2.2.2.ebuild
new file mode 100644
index 000000000000..eb9cd315795c
--- /dev/null
+++ b/app-misc/tmux-xpanes/tmux-xpanes-2.2.2.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
+}