Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/tmux-xpanes/
Date: Wed, 27 Nov 2019 23:14:35
Message-Id: 1574896467.893638c7614a839e68fc28267bd88c7ad87cc302.monsieurp@gentoo
1 commit: 893638c7614a839e68fc28267bd88c7ad87cc302
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Wed Nov 27 22:58:10 2019 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Wed Nov 27 23:14:27 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=893638c7
7
8 app-misc/tmux-xpanes: version bump.
9
10 Package-Manager: Portage-2.3.79, Repoman-2.3.16
11 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
12
13 app-misc/tmux-xpanes/Manifest | 1 +
14 app-misc/tmux-xpanes/tmux-xpanes-4.1.1.ebuild | 36 +++++++++++++++++++++++++++
15 2 files changed, 37 insertions(+)
16
17 diff --git a/app-misc/tmux-xpanes/Manifest b/app-misc/tmux-xpanes/Manifest
18 index acbc6af047c..2db708b9246 100644
19 --- a/app-misc/tmux-xpanes/Manifest
20 +++ b/app-misc/tmux-xpanes/Manifest
21 @@ -1,2 +1,3 @@
22 DIST tmux-xpanes-3.1.1.tar.gz 51507 BLAKE2B 6fdf3a6cf7faecde33d9e51d6c40dd3b8bbabce1f63f7f5a0afb866d6ccece623c9867b542ba54b478861fbfc7472cd3b3bd378d577faf3d32eca88bf1e82538 SHA512 fe1fd5ef698c4069c4c5c078a10f602642b0c260a8cccd90796b79958fbd655f99bd69884978b8c56df20190b808d17e54fdc9ef40426707344038ba8601884f
23 DIST tmux-xpanes-4.1.0.tar.gz 61942 BLAKE2B 66467bfce249648eb88235eec64730d0fcab6fa7c3a77b207c4ad4fbb5a2a2998dbcbeecf848af15fae35ba080c950d2a82e154d1944cca7ca87f407a1a64d35 SHA512 3a25b694a9d559958e87f0deac3674e74cd8acde8392045fb8cf5262a0634938f7e61cf638066ea8836c475aeffd2e8aed3cee9b354ec2e88f05eb19d5f6dde3
24 +DIST tmux-xpanes-4.1.1.tar.gz 62564 BLAKE2B 195221c5f069048ab42a57a00c4c8b79f0c2acf1b0cdd7096e553c9a5ed0b3e3b3e9dfacb8f2eb141861b34ef52ad0a675fb501e314d7e4bfe4a41ff4bfd9f35 SHA512 789e19136faa939670cf8e91e7e7979fae8e536aeffdad7d39e1861e279214985d40807dc07afcd8b28cc4de140a944c9b2f5fe051a6b53e12b7903baefcb251
25
26 diff --git a/app-misc/tmux-xpanes/tmux-xpanes-4.1.1.ebuild b/app-misc/tmux-xpanes/tmux-xpanes-4.1.1.ebuild
27 new file mode 100644
28 index 00000000000..75d8c2d638d
29 --- /dev/null
30 +++ b/app-misc/tmux-xpanes/tmux-xpanes-4.1.1.ebuild
31 @@ -0,0 +1,36 @@
32 +# Copyright 1999-2019 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=6
36 +
37 +DESCRIPTION="tmux-based terminal divider"
38 +HOMEPAGE="https://github.com/greymd/tmux-xpanes"
39 +SRC_URI="https://github.com/greymd/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
40 +
41 +KEYWORDS="~amd64 ~x86"
42 +LICENSE="MIT"
43 +SLOT="0"
44 +
45 +IUSE="zsh-completion"
46 +
47 +RDEPEND="
48 + app-misc/tmux
49 + dev-lang/perl
50 + dev-libs/openssl:0=
51 + zsh-completion? ( app-shells/zsh )"
52 +
53 +DEPEND="${RDEPEND}"
54 +
55 +RESTRICT="test"
56 +
57 +DOCS=( CONTRIBUTING.md LICENSE README.md )
58 +
59 +src_install() {
60 + dobin bin/*
61 + doman man/*.1
62 + einstalldocs
63 + if use zsh-completion; then
64 + insinto /usr/share/zsh/site-functions
65 + doins completion/zsh/*
66 + fi
67 +}