Gentoo Archives: gentoo-commits

From: Tim Harder <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-vim/splice/
Date: Mon, 31 Oct 2016 04:46:00
Message-Id: 1477889106.0776c76c7b97b12a3d85416e87225466ab9a7529.radhermit@gentoo
1 commit: 0776c76c7b97b12a3d85416e87225466ab9a7529
2 Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
3 AuthorDate: Mon Oct 31 04:45:06 2016 +0000
4 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 31 04:45:06 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0776c76c
7
8 app-vim/splice: version bump to 1.1.0
9
10 app-vim/splice/Manifest | 1 +
11 app-vim/splice/splice-1.1.0.ebuild | 30 ++++++++++++++++++++++++++++++
12 2 files changed, 31 insertions(+)
13
14 diff --git a/app-vim/splice/Manifest b/app-vim/splice/Manifest
15 index 34d2eda..fcaa3e7 100644
16 --- a/app-vim/splice/Manifest
17 +++ b/app-vim/splice/Manifest
18 @@ -1 +1,2 @@
19 DIST splice-1.0.1.tar.bz2 12369 SHA256 30e7d947defb29971d8c750670bbdae6625e2238d4f892e6b5590609d6a6a81a SHA512 65826a9054163f59d8dc0a558e3b748f27015bb6075e8d158214e6824c922599552a69c7d09364599285d6effdfc42fa6dd98e858a8bfa47ebc21a4d18394ede WHIRLPOOL a8e4405f5169857c07b81f0a778757aebd198f4c0e73f4cf239a451dfae64911d5fb164121413799a750646df609fcb864a08393510d012a84383261f6c006ab
20 +DIST splice-1.1.0.tar.gz 15513 SHA256 5f4b8324b873230124b93462581ca438c517a14076703ec36ec91a561ecb1504 SHA512 3008c5628ca7b05be451521f9e1f0f2d8dcc8c968e95f2791e76a355b2c9f3b85c62faa319a2f1427f223094b3e606577d19a61b2384b78cbd6d40f497e4ad37 WHIRLPOOL 83807c37e17c204e84fde1d02bc7f9645f259f7f6bc24d05fc9d41f0d2f2a366ea77c46615ae2a92811ee19ef1b7ccbedeb1c23a9bac0a1a413fa03113df306e
21
22 diff --git a/app-vim/splice/splice-1.1.0.ebuild b/app-vim/splice/splice-1.1.0.ebuild
23 new file mode 100644
24 index 00000000..a4d376c
25 --- /dev/null
26 +++ b/app-vim/splice/splice-1.1.0.ebuild
27 @@ -0,0 +1,30 @@
28 +# Copyright 1999-2016 Gentoo Foundation
29 +# Distributed under the terms of the GNU General Public License v2
30 +# $Id$
31 +
32 +EAPI=6
33 +PYTHON_COMPAT=( python2_7 )
34 +
35 +inherit vim-plugin python-single-r1 vcs-snapshot
36 +
37 +DESCRIPTION="vim plugin: resolve conflicts during three-way merges"
38 +HOMEPAGE="https://bitbucket.org/sjl/splice.vim http://vim.sourceforge.net/scripts/script.php?script_id=4026"
39 +SRC_URI="https://bitbucket.org/sjl/${PN}.vim/get/v${PV}.tar.gz -> ${P}.tar.gz"
40 +LICENSE="MIT"
41 +KEYWORDS="amd64 x86"
42 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
43 +
44 +RDEPEND="|| ( app-editors/vim[python] app-editors/gvim[python] )"
45 +
46 +VIM_PLUGIN_HELPFILES="${PN}.txt"
47 +
48 +src_prepare() {
49 + default
50 + rm .[a-z]* Makefile LICENSE.markdown package.sh || die
51 + rm -r site || die
52 +}
53 +
54 +src_install() {
55 + vim-plugin_src_install
56 + python_optimize "${ED}"/usr/share/vim/vimfiles/autoload/splicelib
57 +}