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/easy-align/
Date: Tue, 22 Jan 2019 22:58:47
Message-Id: 1548197892.b94835f2b9052bb1f1d89869d409e890ccf5dc3b.monsieurp@gentoo
1 commit: b94835f2b9052bb1f1d89869d409e890ccf5dc3b
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 22 22:58:12 2019 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 22 22:58:12 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b94835f2
7
8 app-vim/easy-align: EAPI 6 bump.
9
10 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
11 Package-Manager: Portage-2.3.51, Repoman-2.3.11
12 RepoMan-Options: --force
13
14 app-vim/easy-align/easy-align-2.10.0-r1.ebuild | 23 +++++++++++++++++++++++
15 1 file changed, 23 insertions(+)
16
17 diff --git a/app-vim/easy-align/easy-align-2.10.0-r1.ebuild b/app-vim/easy-align/easy-align-2.10.0-r1.ebuild
18 new file mode 100644
19 index 00000000000..dcb2ed0da09
20 --- /dev/null
21 +++ b/app-vim/easy-align/easy-align-2.10.0-r1.ebuild
22 @@ -0,0 +1,23 @@
23 +# Copyright 1999-2019 Gentoo Authors
24 +# Distributed under the terms of the GNU General Public License v2
25 +
26 +EAPI=6
27 +
28 +inherit vim-plugin
29 +
30 +MY_PN=vim-${PN}
31 +MY_P=${MY_PN}-${PV}
32 +
33 +DESCRIPTION="vim plugin: a simple alignment plugin"
34 +HOMEPAGE="https://github.com/junegunn/vim-easy-align https://www.vim.org/scripts/script.php?script_id=4520"
35 +SRC_URI="https://github.com/junegunn/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
36 +LICENSE="MIT"
37 +KEYWORDS="amd64 x86"
38 +
39 +VIM_PLUGIN_HELPFILES="${PN}"
40 +
41 +S="${WORKDIR}/${MY_PN}-${PV}"
42 +
43 +src_prepare() {
44 + rm -rv test || die
45 +}