Skip to content

Commit

Permalink
app-vim/ackvim: avoid file collision with another package.
Browse files Browse the repository at this point in the history
Gentoo-Bug: https://bugs.gentoo.org/584768

Package-Manager: Portage-2.3.3, Repoman-2.3.1
  • Loading branch information
monsieurp committed Mar 2, 2017
1 parent 84ada9d commit 5c4467e
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
1 change: 1 addition & 0 deletions app-vim/ackvim/Manifest
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
DIST ack.vim-1.0.9.tar.gz 9361 SHA256 598af55eed01886428027ea26f3f99a5029ece88c28e34c22fb94d09ac552cab SHA512 42c931433ca2554cee0ccdc576891ba82efaebb0e5301ab279b3db8160816892b6f6232da7389058177ef9640a07e9582409c852ee5b55f3c9ee0b6f547ae8d0 WHIRLPOOL eea0a155e3249cde98072367b7bcffc063f22ef250125c46e3a5b0713267a353bd30275e4d8f169087e5108c1734b16796bb836b249dd6663868b6164d051154
DIST ack.vim-1.0.9.zip 11910 SHA256 b479b04a94ddc4dd29bb9b525ba5e35f4925a96e92dd90a65120f225fd4fb241 SHA512 fc973144e4f82ee76f72709ab3755ed8c8fae0e3f9058d97cb4a19fb81cfb21aac4f0976e2fabfdbed67b9a2220732e335b81666ee42a31d9b4339881024cf10 WHIRLPOOL d4b4864d8dfcb41d0222a8f5bd81f3f3d64d4796b09ed3aff0ac347fb424246e165f6dfa2177723fa7805bed4b07c0973febbff9b7525bf0d6e4aa8467e8d8b1
25 changes: 25 additions & 0 deletions app-vim/ackvim/ackvim-1.0.9-r1.ebuild
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=6

inherit vim-plugin

MY_PN="ack.vim"
MY_P="${MY_PN}-${PV}"

DESCRIPTION="vim plugin: run ack from vim"
HOMEPAGE="https://github.com/mileszs/ack.vim"
SRC_URI="https://github.com/mileszs/${MY_PN}/archive/${PV}.tar.gz -> ${MY_P}.tar.gz"
LICENSE="vim"
KEYWORDS="~amd64 ~x86"

RDEPEND="sys-apps/ack"

S="${WORKDIR}/${MY_P}"

src_prepare() {
default
# See bug 584768.
mv ftplugin/qf.vim ftplugin/ackqf.vim || die
}

0 comments on commit 5c4467e

Please sign in to comment.