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/breakpts/
Date: Tue, 02 Oct 2018 21:43:38
Message-Id: 1538516575.d58bfdf95954ce00b973f122b84dbfd74fbf5804.monsieurp@gentoo
1 commit: d58bfdf95954ce00b973f122b84dbfd74fbf5804
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Wed Sep 12 12:17:58 2018 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Tue Oct 2 21:42:55 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d58bfdf9
7
8 app-vim/breakpts: EAPI7, fix SRC_URI.
9
10 Closes: https://bugs.gentoo.org/665780
11 Closes: https://github.com/gentoo/gentoo/pull/9844
12 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
13
14 app-vim/breakpts/Manifest | 1 +
15 app-vim/breakpts/breakpts-4.0-r2.ebuild | 27 +++++++++++++++++++++++++++
16 2 files changed, 28 insertions(+)
17
18 diff --git a/app-vim/breakpts/Manifest b/app-vim/breakpts/Manifest
19 index d5cf63e70c2..b84e4d8728b 100644
20 --- a/app-vim/breakpts/Manifest
21 +++ b/app-vim/breakpts/Manifest
22 @@ -1 +1,2 @@
23 DIST breakpts-4.0.tar.bz2 17349 BLAKE2B c7ad9eed8fb13537c940e6868f5e4e5dd812a6b7f7c26c4617e3c24905b6e2a817dc91990b613b700e793dd763a6841f85dd7f9cc42fb9f5afc25c3609f909fc SHA512 a480bf32cd3e756ac25849b1d5fd20521bd8c965454bb94c33810c9d1d4464762a731d08dcae858c59853a6cf41ab3cb6cddeda440c8b041cc8ec192ab2bd2fd
24 +DIST breakpts-4.0.zip 20124 BLAKE2B 2ea7568af5407d57c4d4b505c69d625056d62e8f5bd25bf5ca13918e3ffbc0f83de2aedb0abc3468215a650308ed8b592a618c0b50c24dd8ad3f931ef5d2ff8b SHA512 3e7f148896a10abd30a16d903c14460668ee48d078ae3c3b6ff663dab53d32199d8cf9cd3a56164a32d0be2684e64a882e917f3f632318ce85db5eb07e29754d
25
26 diff --git a/app-vim/breakpts/breakpts-4.0-r2.ebuild b/app-vim/breakpts/breakpts-4.0-r2.ebuild
27 new file mode 100644
28 index 00000000000..1dcdff18bc4
29 --- /dev/null
30 +++ b/app-vim/breakpts/breakpts-4.0-r2.ebuild
31 @@ -0,0 +1,27 @@
32 +# Copyright 1999-2018 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +inherit vim-plugin
38 +
39 +DESCRIPTION="vim plugin: sets vim breakpoints visually"
40 +HOMEPAGE="https://www.vim.org/scripts/script.php?script_id=618"
41 +SRC_URI="https://www.vim.org/scripts/download_script.php?src_id=8142 -> ${P}.zip"
42 +
43 +LICENSE="GPL-2"
44 +KEYWORDS="~alpha ~amd64 ~ia64 ~mips ~ppc ~sparc ~x86"
45 +
46 +S="${WORKDIR}"
47 +
48 +RDEPEND="
49 + || ( >=app-editors/vim-7.0 >=app-editors/gvim-7.0 )
50 + >=app-vim/multvals-3.6.1
51 + >=app-vim/genutils-1.13
52 + >=app-vim/foldutil-1.6"
53 +DEPEND="app-arch/unzip"
54 +
55 +VIM_PLUGIN_HELPTEXT=\
56 +"This plugin allows breakpoints to be set and cleared visually. To start,
57 +use :BreakPts, move to the required function and press <CR>. Breakpoints
58 +can then be added using :BPToggle or <F9>."