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/vimoutliner/
Date: Mon, 29 May 2017 23:25:29
Message-Id: 1496100296.da1657a319a6d3c73fd09a1b90a7abec68ce24fe.monsieurp@gentoo
1 commit: da1657a319a6d3c73fd09a1b90a7abec68ce24fe
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 28 19:52:16 2017 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Mon May 29 23:24:56 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da1657a3
7
8 app-vim/vimoutliner: clean up old.
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 app-vim/vimoutliner/Manifest | 1 -
13 app-vim/vimoutliner/vimoutliner-0.3.4-r2.ebuild | 45 -------------------------
14 2 files changed, 46 deletions(-)
15
16 diff --git a/app-vim/vimoutliner/Manifest b/app-vim/vimoutliner/Manifest
17 index 65a3e651f5e..347a2e2890d 100644
18 --- a/app-vim/vimoutliner/Manifest
19 +++ b/app-vim/vimoutliner/Manifest
20 @@ -1,2 +1 @@
21 -DIST vimoutliner-0.3.4.tar.gz 52753 SHA256 9e6e85e67dad1a220eee0031821a93fe27dcd2c3881446049ab8644fc7e100f5 SHA512 6a48e3fa65e83733e4731dd63d9a9c91e9fb37e47ac726d1938bbecc2c37d8be0d72f45c534c4bd231c9bed352cd7db1e3f754529efc4779a50d25cae27982d1 WHIRLPOOL 844f7b13bdd1fcaaf9827ff775c6aae3edf974eb244987e03c89f6f7a13be648419f0d6f3aa7433a605150c661d71de18b081ddd04c592fd6bed2d7cbb16e430
22 DIST vimoutliner-0.3.6.zip 249053 SHA256 54db454651152a3bd88da37b210259fb369c6a44e74824d2085a8e8ea8969c1d SHA512 20d348ff1b1b9572956fdc56b75e742b25b7deac2637fa6972a1e451edc1f679d8255847a291b84c80866a9ad8a37421524b8eb33565a1bb32ff2b75d0b68dde WHIRLPOOL 87c86930f02162e4819e8ef2feccbbbdfd31629fda9665a6ae64698b89d26663e989238ee9d1e8c360986a05c813807a2906cbe4fd9eb5f422e7b6e79723686b
23
24 diff --git a/app-vim/vimoutliner/vimoutliner-0.3.4-r2.ebuild b/app-vim/vimoutliner/vimoutliner-0.3.4-r2.ebuild
25 deleted file mode 100644
26 index 2ea6dbfb6e3..00000000000
27 --- a/app-vim/vimoutliner/vimoutliner-0.3.4-r2.ebuild
28 +++ /dev/null
29 @@ -1,45 +0,0 @@
30 -# Copyright 1999-2016 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -inherit vim-plugin
34 -
35 -DESCRIPTION="vim plugin: easy and fast outlining"
36 -HOMEPAGE="https://github.com/vimoutliner/vimoutliner"
37 -SRC_URI="mirror://gentoo/${P}.tar.gz"
38 -LICENSE="GPL-2"
39 -KEYWORDS="alpha amd64 ia64 ~mips ppc sparc x86"
40 -IUSE=""
41 -
42 -VIM_PLUGIN_HELPFILES="vimoutliner"
43 -VIM_PLUGIN_MESSAGES="filetype"
44 -
45 -src_unpack() {
46 - unpack ${A}
47 - cd "${S}"
48 - sed -i -e '/^if exists/,/endif/d' ftdetect/vo_base.vim
49 - sed -i -e 's/g:vo_modules2load/g:vo_modules_load/' vimoutlinerrc
50 - find "${S}" -type f | xargs chmod a+r
51 -}
52 -
53 -src_install() {
54 - p=/usr/share/vim/vimfiles
55 - insinto ${p}
56 - doins -r doc ftdetect ftplugin syntax colors || die "doins failed"
57 -
58 - # Custom vimoutlinerrc so we actually find the plugins
59 - cp vimoutlinerrc vimoutlinerrc.global
60 - cat >>vimoutlinerrc.global <<-EOF
61 -
62 - "Gentoo-specific Configuration **************************************
63 - "Search path for vimoutliner plugins
64 - setlocal runtimepath+=\$VIM/vimfiles/vimoutliner
65 - EOF
66 - newins vimoutlinerrc.global vimoutlinerrc
67 -
68 - insinto ${p}/vimoutliner/plugins
69 - doins add-ons/plugins/*.vim
70 -
71 - dobin scripts/* add-ons/scripts/*
72 -
73 - dodoc vimoutlinerrc add-ons/plugins/*.otl doc/*
74 -}