summaryrefslogtreecommitdiff
path: root/app-vim/cream/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
commitd87262dd706fec50cd150aab3e93883b6337466d (patch)
tree246b44c33ad7a57550430b0a60fa0df86a3c9e68 /app-vim/cream/files
parent71bc00c87bba1ce31de0dac6c3b7fd1aee6917fc (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'app-vim/cream/files')
-rw-r--r--app-vim/cream/files/cream-0.30-ebuilds.patch12
-rw-r--r--app-vim/cream/files/enhancedcommentify-2.1-extra-ft-support.patch13
-rw-r--r--app-vim/cream/files/enhancedcommentify-2.1-gentooisms.patch23
3 files changed, 0 insertions, 48 deletions
diff --git a/app-vim/cream/files/cream-0.30-ebuilds.patch b/app-vim/cream/files/cream-0.30-ebuilds.patch
deleted file mode 100644
index 30e310387005..000000000000
--- a/app-vim/cream/files/cream-0.30-ebuilds.patch
+++ /dev/null
@@ -1,12 +0,0 @@
---- cream-0.30/taglist.vim.orig 2004-10-02 00:12:58.400215576 +0100
-+++ cream-0.30/taglist.vim 2004-10-02 00:26:28.535056360 +0100
-@@ -205,6 +205,9 @@
- let s:tlist_def_cobol_settings = 'cobol;d:data;f:file;g:group;p:paragraph;' .
- \ 'P:program;s:section'
-
-+" ebuilds
-+let s:tlist_def_ebuild_settings = 'sh;f:function'
-+
- " eiffel language
- let s:tlist_def_eiffel_settings = 'eiffel;c:class;f:feature'
-
diff --git a/app-vim/cream/files/enhancedcommentify-2.1-extra-ft-support.patch b/app-vim/cream/files/enhancedcommentify-2.1-extra-ft-support.patch
deleted file mode 100644
index 597518a6d547..000000000000
--- a/app-vim/cream/files/enhancedcommentify-2.1-extra-ft-support.patch
+++ /dev/null
@@ -1,13 +0,0 @@
---- plugin/EnhancedCommentify.vim.orig 2005-03-01 02:28:23.409962824 -0500
-+++ plugin/EnhancedCommentify.vim 2005-03-01 02:29:45.695453528 -0500
-@@ -740,7 +740,9 @@
- \ 'psf\|ptcap\|r\|radiance\|ratpoison\|readline\remind\|'.
- \ 'ruby\|screen\|sed\|sm\|snnsnet\|snnspat\|snnsres\|spec\|'.
- \ 'squid\|terminfo\|tidy\|tli\|tsscl\|vgrindefs\|vrml\|'.
-- \ 'wget\|wml\|xf86conf\|xmath\)$'
-+ \ 'wget\|wml\|xf86conf\|xmath\|fstab\|apache\|resolv\|sudoers\|'.
-+ \ 'ntp\|mailcap\|ssh_config\|sshdconfig\|mplayerconf\|desktop\|'.
-+ \ 'gkrellmrc\|pf\|ipfilter\|grub\|fluxbox\)$'
- let b:ECcommentOpen = '#'
- let b:ECcommentClose = ''
- elseif fileType =~ 'gentoo'
diff --git a/app-vim/cream/files/enhancedcommentify-2.1-gentooisms.patch b/app-vim/cream/files/enhancedcommentify-2.1-gentooisms.patch
deleted file mode 100644
index 9e45142ff8ae..000000000000
--- a/app-vim/cream/files/enhancedcommentify-2.1-gentooisms.patch
+++ /dev/null
@@ -1,23 +0,0 @@
---- plugin/EnhancedCommentify.vim.orig 2005-01-27 00:20:00.049461056 -0500
-+++ plugin/EnhancedCommentify.vim 2005-01-27 00:17:57.617073608 -0500
-@@ -628,6 +628,10 @@
- " letter.
- if match(synFiletype, '\l\+\u') == 0
- let ft = substitute(synFiletype, '^\(\l\+\)\u.*$', '\1', "")
-+ " work-around for gentoo-syntax stuff ; won't work with the above
-+ " case, since all the identifiers start with a capital 'G'
-+ elseif synFiletype =~ "GentooPackage*"
-+ let ft = "gentoo"
- endif
-
- if ft == ""
-@@ -739,6 +743,9 @@
- \ 'wget\|wml\|xf86conf\|xmath\)$'
- let b:ECcommentOpen = '#'
- let b:ECcommentClose = ''
-+ elseif fileType =~ 'gentoo'
-+ let b:ECcommentOpen = '#'
-+ let b:ECcommentClose = ''
- elseif fileType == 'webmacro'
- let b:ECcommentOpen = '##'
- let b:ECcommentClose = ''