diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2019-04-05 21:17:31 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2019-04-05 21:17:31 +0100 |
commit | dc7cbdfa65fd814b3b9aa3c56257da201109e807 (patch) | |
tree | c85d72f6f31f21f178069c9d41d41a7c1ff4b362 /app-vim/help-extra-syntax | |
parent | 0706fc6986773f4e4d391deff4ad5143c464ea4e (diff) |
gentoo resync : 05.04.2019
Diffstat (limited to 'app-vim/help-extra-syntax')
-rw-r--r-- | app-vim/help-extra-syntax/Manifest | 2 | ||||
-rw-r--r-- | app-vim/help-extra-syntax/help-extra-syntax-20050106-r2.ebuild (renamed from app-vim/help-extra-syntax/help-extra-syntax-20050106-r1.ebuild) | 14 |
2 files changed, 7 insertions, 9 deletions
diff --git a/app-vim/help-extra-syntax/Manifest b/app-vim/help-extra-syntax/Manifest index c1fbe37efc59..33dec7b626b5 100644 --- a/app-vim/help-extra-syntax/Manifest +++ b/app-vim/help-extra-syntax/Manifest @@ -1,3 +1,3 @@ DIST help-extra-syntax-20050106.tar.bz2 633 BLAKE2B 2e46b9b2f46a102c9e7a8036198bfb87806ef40c87e2c5893203f174dbbbc89cb13e1743616834c9e273d5838c8ab996399d06cba7ad3ba0b692ec345d96e080 SHA512 84fde638941bc0b63b599ae0ae46dc151796409652bd99520df102b54e60497df23ee62b61d8ee2c7532029cf0183702345dffe743420dadee3e5ae6c4a2ef44 -EBUILD help-extra-syntax-20050106-r1.ebuild 641 BLAKE2B 0665c0c761feaf142b5727432e0ff1445bf93fd23f141c8f9a5c58672c500ac2e2237d80eccff090e643f7fc11c7432dec399136123f98c5429d5ea530ab0704 SHA512 32a6d2a52533865db6171a2d33a59ee5b097f855a5abde6e70135c87d19451bfb4b4c5cfa8a1ea9b3d22c61b97594c641a337b8fd43cfc9d55671f7a10e71c05 +EBUILD help-extra-syntax-20050106-r2.ebuild 599 BLAKE2B badb886a5c56dfa874109191d31dc8e8b1dfd1c5f362780fe27e0ca5f47714f47d45c55ec01bc05fd28f49a51f55a8e66ec4615981abcb9ae284fa7ca4c16a8d SHA512 6b40376d945836be0215367afeff9d2df88c5e94e0886a223c029ef4433cfe940ef1717b72604bc3cd219ab6ed3e0806fa89205a1e16c94b9d9f2215da517d89 MISC metadata.xml 249 BLAKE2B 7ae6eac3ca23edbcbaa6aee682bb4aec155e3166f169eef8e4400e59fa56113ecc3593680d55cc57f08a4a718963dd3d0bb804bd1e8771ed60a4bebaae9db281 SHA512 4051dd059d975d2e1799125f7defbf5a62a168241d8b83d83710592efd60808800951c4fd6da1294044d7e7ec6b757b8d50593fd076696f826dec761e99645c7 diff --git a/app-vim/help-extra-syntax/help-extra-syntax-20050106-r1.ebuild b/app-vim/help-extra-syntax/help-extra-syntax-20050106-r2.ebuild index 9779d9eb5d87..bbe11531b29a 100644 --- a/app-vim/help-extra-syntax/help-extra-syntax-20050106-r1.ebuild +++ b/app-vim/help-extra-syntax/help-extra-syntax-20050106-r2.ebuild @@ -1,23 +1,21 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=0 +EAPI=7 inherit vim-plugin DESCRIPTION="vim plugin: extra syntax highlighting for help files" -HOMEPAGE="http://mysite.verizon.net/astronaut/vim/" +HOMEPAGE="http://www.drchip.org/astronaut/vim/" LICENSE="public-domain" KEYWORDS="alpha amd64 arm hppa ia64 ~mips ~ppc ppc64 sparc x86" -IUSE="" VIM_PLUGIN_HELPTEXT=\ "This plugin provides additional syntax highlighting for help files." -src_unpack() { - unpack ${A} - cd "${S}" +src_prepare() { + default # use hi def link, bug #101797 / bug #101804 sed -i -e 's,^hi link,hi def link,' \ - "after/syntax/help.vim.d/extra-help-syntax.vim" || die "sed failed" + "after/syntax/help.vim.d/extra-help-syntax.vim" || die } |