summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrice Clement <monsieurp@gentoo.org>2017-05-28 21:52:16 +0200
committerPatrice Clement <monsieurp@gentoo.org>2017-05-30 01:24:56 +0200
commitda1657a319a6d3c73fd09a1b90a7abec68ce24fe (patch)
treef03795a98ffc8982d68bbabdef95dab6499d4adf
parentapp-vim/vimoutliner: stable for amd64. mark stable for the remaining arches u... (diff)
downloadgentoo-da1657a319a6d3c73fd09a1b90a7abec68ce24fe.tar.gz
gentoo-da1657a319a6d3c73fd09a1b90a7abec68ce24fe.tar.bz2
gentoo-da1657a319a6d3c73fd09a1b90a7abec68ce24fe.zip
app-vim/vimoutliner: clean up old.
Package-Manager: Portage-2.3.3, Repoman-2.3.1
-rw-r--r--app-vim/vimoutliner/Manifest1
-rw-r--r--app-vim/vimoutliner/vimoutliner-0.3.4-r2.ebuild45
2 files changed, 0 insertions, 46 deletions
diff --git a/app-vim/vimoutliner/Manifest b/app-vim/vimoutliner/Manifest
index 65a3e651f5ef..347a2e2890d4 100644
--- a/app-vim/vimoutliner/Manifest
+++ b/app-vim/vimoutliner/Manifest
@@ -1,2 +1 @@
-DIST vimoutliner-0.3.4.tar.gz 52753 SHA256 9e6e85e67dad1a220eee0031821a93fe27dcd2c3881446049ab8644fc7e100f5 SHA512 6a48e3fa65e83733e4731dd63d9a9c91e9fb37e47ac726d1938bbecc2c37d8be0d72f45c534c4bd231c9bed352cd7db1e3f754529efc4779a50d25cae27982d1 WHIRLPOOL 844f7b13bdd1fcaaf9827ff775c6aae3edf974eb244987e03c89f6f7a13be648419f0d6f3aa7433a605150c661d71de18b081ddd04c592fd6bed2d7cbb16e430
DIST vimoutliner-0.3.6.zip 249053 SHA256 54db454651152a3bd88da37b210259fb369c6a44e74824d2085a8e8ea8969c1d SHA512 20d348ff1b1b9572956fdc56b75e742b25b7deac2637fa6972a1e451edc1f679d8255847a291b84c80866a9ad8a37421524b8eb33565a1bb32ff2b75d0b68dde WHIRLPOOL 87c86930f02162e4819e8ef2feccbbbdfd31629fda9665a6ae64698b89d26663e989238ee9d1e8c360986a05c813807a2906cbe4fd9eb5f422e7b6e79723686b
diff --git a/app-vim/vimoutliner/vimoutliner-0.3.4-r2.ebuild b/app-vim/vimoutliner/vimoutliner-0.3.4-r2.ebuild
deleted file mode 100644
index 2ea6dbfb6e37..000000000000
--- a/app-vim/vimoutliner/vimoutliner-0.3.4-r2.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-inherit vim-plugin
-
-DESCRIPTION="vim plugin: easy and fast outlining"
-HOMEPAGE="https://github.com/vimoutliner/vimoutliner"
-SRC_URI="mirror://gentoo/${P}.tar.gz"
-LICENSE="GPL-2"
-KEYWORDS="alpha amd64 ia64 ~mips ppc sparc x86"
-IUSE=""
-
-VIM_PLUGIN_HELPFILES="vimoutliner"
-VIM_PLUGIN_MESSAGES="filetype"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- sed -i -e '/^if exists/,/endif/d' ftdetect/vo_base.vim
- sed -i -e 's/g:vo_modules2load/g:vo_modules_load/' vimoutlinerrc
- find "${S}" -type f | xargs chmod a+r
-}
-
-src_install() {
- p=/usr/share/vim/vimfiles
- insinto ${p}
- doins -r doc ftdetect ftplugin syntax colors || die "doins failed"
-
- # Custom vimoutlinerrc so we actually find the plugins
- cp vimoutlinerrc vimoutlinerrc.global
- cat >>vimoutlinerrc.global <<-EOF
-
- "Gentoo-specific Configuration **************************************
- "Search path for vimoutliner plugins
- setlocal runtimepath+=\$VIM/vimfiles/vimoutliner
- EOF
- newins vimoutlinerrc.global vimoutlinerrc
-
- insinto ${p}/vimoutliner/plugins
- doins add-ons/plugins/*.vim
-
- dobin scripts/* add-ons/scripts/*
-
- dodoc vimoutlinerrc add-ons/plugins/*.otl doc/*
-}