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-vim/vim-tmux/
Date: Sat, 01 Oct 2016 12:47:30
Message-Id: 1475321372.4cf5b106137a571ae2b558a0643fe6adecbea505.monsieurp@gentoo
1 commit: 4cf5b106137a571ae2b558a0643fe6adecbea505
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 1 11:29:12 2016 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 1 11:29:32 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4cf5b106
7
8 app-vim/vim-tmux: new package.
9
10 vim-tmux is a vim plugin which offers support for tmux.conf.
11
12 Gentoo-Bug: https://bugs.gentoo.org/592090
13
14 Package-Manager: portage-2.2.28
15
16 app-vim/vim-tmux/Manifest | 1 +
17 app-vim/vim-tmux/metadata.xml | 15 +++++++++++++++
18 app-vim/vim-tmux/vim-tmux-3.0.0.ebuild | 23 +++++++++++++++++++++++
19 3 files changed, 39 insertions(+)
20
21 diff --git a/app-vim/vim-tmux/Manifest b/app-vim/vim-tmux/Manifest
22 new file mode 100644
23 index 00000000..d5c0fd7
24 --- /dev/null
25 +++ b/app-vim/vim-tmux/Manifest
26 @@ -0,0 +1 @@
27 +DIST vim-tmux-3.0.0.zip 12713 SHA256 8ca059d610489a7d8be010aa1136c2501cbe18e86b0552e173fc0a5b6694dc24 SHA512 d6bc94c34ab32608610fdfffc3a3522b6056b3b61dd3cb9c63a71cb20d1597954aec65a06c5ce22352731d4e70b6a239ca5f303427182cce93324042b7f10c8c WHIRLPOOL 49f5b3e9b6e7d4608c049684605b393686c5f1ab447a71ac4af5c6b208829ab5df7f053eaa3bd8b327e6f9d5bd8d0af1547da8a47e89873325d3328ee42830bb
28
29 diff --git a/app-vim/vim-tmux/metadata.xml b/app-vim/vim-tmux/metadata.xml
30 new file mode 100644
31 index 00000000..a383dda
32 --- /dev/null
33 +++ b/app-vim/vim-tmux/metadata.xml
34 @@ -0,0 +1,15 @@
35 +<?xml version="1.0" encoding="UTF-8"?>
36 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
37 +<pkgmetadata>
38 + <maintainer type="project">
39 + <email>vim@g.o</email>
40 + <name>Gentoo Vim Project</name>
41 + </maintainer>
42 + <maintainer type="project">
43 + <email>shell-tools@g.o</email>
44 + <name>Gentoo Tools Project</name>
45 + </maintainer>
46 + <maintainer type="person">
47 + <email>monsieurp@g.o</email>
48 + </maintainer>
49 +</pkgmetadata>
50
51 diff --git a/app-vim/vim-tmux/vim-tmux-3.0.0.ebuild b/app-vim/vim-tmux/vim-tmux-3.0.0.ebuild
52 new file mode 100644
53 index 00000000..3bc87cf
54 --- /dev/null
55 +++ b/app-vim/vim-tmux/vim-tmux-3.0.0.ebuild
56 @@ -0,0 +1,23 @@
57 +# Copyright 1999-2016 Gentoo Foundation
58 +# Distributed under the terms of the GNU General Public License v2
59 +# $Id$
60 +
61 +EAPI=6
62 +
63 +inherit vim-plugin
64 +
65 +DESCRIPTION="vim plugin: tmux support for vim"
66 +HOMEPAGE="https://github.com/tmux-plugins/vim-tmux"
67 +SRC_URI="https://github.com/tmux-plugins/${PN}/archive/v${PV}.zip -> ${P}.zip"
68 +LICENSE="vim.org"
69 +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
70 +
71 +DEPEND="
72 + app-misc/tmux
73 + app-arch/unzip"
74 +
75 +RDEPEND="${DEPEND}"
76 +
77 +src_compile() {
78 + :;
79 +}