diff options
Diffstat (limited to 'app-vim')
-rw-r--r-- | app-vim/ferret/Manifest | 1 | ||||
-rw-r--r-- | app-vim/ferret/ferret-1.5.ebuild | 20 |
2 files changed, 21 insertions, 0 deletions
diff --git a/app-vim/ferret/Manifest b/app-vim/ferret/Manifest index 02d820086a16..2a46db615d33 100644 --- a/app-vim/ferret/Manifest +++ b/app-vim/ferret/Manifest @@ -1 +1,2 @@ DIST ferret-1.4.zip 38210 SHA256 aac505465ba66f0e85b500b6585d2b2454b91ab662abfaeb4beecbef510e61a8 SHA512 e4dacfb996c98be2ae922520387b2b37511fbe33cc934fe89d1bc3096682d74e649fc6a1ba469e1e2efe01bdc11526f0f72d06354b28fd74b884db215068655b WHIRLPOOL a3c92c952b864b3f620c5075624e18c1a1ae95e58e70c83a9233a4f0612333c01f78b11dabd7feba83fb2e7a1e8b469873c2b2314a35d2dd7ba8abc9264443fc +DIST ferret-1.5.zip 41822 SHA256 b22c317ceae3f604a91c83c968f7471aebd0fd981e012e4459b066dce7a09adc SHA512 50ae3cea72b681507f76e7fde4cb5712305bc3b9e3a98d9fbfb3797d8834d7792967e76d87435442b7809b800c739108eaea1da52c7c5c7495710b564a41718a WHIRLPOOL 56c983a37299c33702b372683db641a9405ea9852a9cd5a052ee9960c6875ab5217b014dc9e0a93987be44516b02750dc680eb88ff539ab02933985d5b0e8d78 diff --git a/app-vim/ferret/ferret-1.5.ebuild b/app-vim/ferret/ferret-1.5.ebuild new file mode 100644 index 000000000000..0245283fabee --- /dev/null +++ b/app-vim/ferret/ferret-1.5.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +EAPI=6 + +inherit vim-plugin + +DESCRIPTION="vim plugin: enhanced multi-file search" +HOMEPAGE="https://github.com/wincent/ferret" +SRC_URI="https://github.com/wincent/${PN}/archive/${PV}.zip -> ${P}.zip" +LICENSE="vim" +KEYWORDS="~amd64 ~x86" + +DEPEND="app-arch/unzip" + +src_prepare() { + default + rm -rvf test.rb doc/.gitignore || die + # See bug 612282. + mv ftplugin/qf.vim ftplugin/${PN}qf.vim || die +} |