summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrice Clement <monsieurp@gentoo.org>2016-06-25 10:15:48 +0000
committerPatrice Clement <monsieurp@gentoo.org>2016-06-25 10:16:37 +0000
commitb15e115104ae7edcc86117ce218edc336eb68f72 (patch)
tree02aa6dee376ea7267ef6ecf5c50b0662a018dc82 /app-vim
parentapp-vim/alternate: EAPI 6 bump. (diff)
downloadgentoo-b15e115104ae7edcc86117ce218edc336eb68f72.tar.gz
gentoo-b15e115104ae7edcc86117ce218edc336eb68f72.tar.bz2
gentoo-b15e115104ae7edcc86117ce218edc336eb68f72.zip
app-vim/alternate: Clean up old.
Package-Manager: portage-2.2.28
Diffstat (limited to 'app-vim')
-rw-r--r--app-vim/alternate/alternate-2.18.ebuild24
-rw-r--r--app-vim/alternate/files/alternate-2.12-hh-cc-alternation.patch18
2 files changed, 0 insertions, 42 deletions
diff --git a/app-vim/alternate/alternate-2.18.ebuild b/app-vim/alternate/alternate-2.18.ebuild
deleted file mode 100644
index 1e113545ad2c..000000000000
--- a/app-vim/alternate/alternate-2.18.ebuild
+++ /dev/null
@@ -1,24 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-inherit vim-plugin eutils
-
-DESCRIPTION="vim plugin: quickly switch between .c and .h files"
-HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=31"
-
-LICENSE="alternate"
-KEYWORDS="alpha amd64 ia64 ~mips ppc sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
-IUSE=""
-
-VIM_PLUGIN_HELPTEXT=\
-"This plugin provides a new :A command which will switch between a .c
-file and the associated .h file. There is also :AS to split windows and
-:AV to split windows vertiically."
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- # fix switching between .cc and .hh files, thanks ciaranm
- epatch "${FILESDIR}"/${P}-hh-cc-alternation.patch
-}
diff --git a/app-vim/alternate/files/alternate-2.12-hh-cc-alternation.patch b/app-vim/alternate/files/alternate-2.12-hh-cc-alternation.patch
deleted file mode 100644
index 14b314aa0e0c..000000000000
--- a/app-vim/alternate/files/alternate-2.12-hh-cc-alternation.patch
+++ /dev/null
@@ -1,18 +0,0 @@
---- a/plugin/a.vim 2005-05-06 22:20:24.000000000 +0100
-+++ b/plugin/a.vim 2005-06-20 15:45:45.000000000 +0100
-@@ -57,13 +57,14 @@
- " Mappings for C and C++
- call <SID>AddAlternateExtensionMapping('h',"c,cpp,cxx,cc,CC")
- call <SID>AddAlternateExtensionMapping('H',"C,CPP,CXX,CC")
-+call <SID>AddAlternateExtensionMapping('hh',"c,cpp,cxx,cc,CC")
- call <SID>AddAlternateExtensionMapping('hpp',"cpp,c")
- call <SID>AddAlternateExtensionMapping('HPP',"CPP,C")
- call <SID>AddAlternateExtensionMapping('c',"h")
- call <SID>AddAlternateExtensionMapping('C',"H")
- call <SID>AddAlternateExtensionMapping('cpp',"h,hpp")
- call <SID>AddAlternateExtensionMapping('CPP',"H,HPP")
--call <SID>AddAlternateExtensionMapping('cc',"h")
-+call <SID>AddAlternateExtensionMapping('cc',"h,hh")
- call <SID>AddAlternateExtensionMapping('CC',"H,h")
- call <SID>AddAlternateExtensionMapping('cxx',"h")
- call <SID>AddAlternateExtensionMapping('CXX',"H")