forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
app-vim/gitgutter: version bump to new snapshot
- Loading branch information
Showing
3 changed files
with
34 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST gitgutter-20141101.tar.bz2 31556 SHA256 a7d65fe668e8e7a515a8637df7ed80b17f27a0f637a7882c0207f8bae035022f SHA512 cbe21df40a05caebd85ac24fd20a55cf784ff33f73a7d27bcb8e87b6a38cd787b801fa314bf7ba9eefbc703efff527c9ebd947768c5714e774e39e67c7d35055 WHIRLPOOL 92d4c59d1e3925afa7f93f30ce8f87c430bf556e9553601b8eaeeaa9538900899115309602b1a5c17e8be9cff9d5b69a0ae70470438841a7090aaa35f452bbd2 | ||
DIST gitgutter-20160316.tar.bz2 37102 SHA256 41d3e44ae569cf208682e0e50b30bef669e195ad048196ec8fc91a9d8496637a SHA512 f63bb92097c1c52d5a6d84d9707358d4c3c681b1e7b5f4cc19846cda0ee5938d7f0180d5f9dcf259f06d32839e64ebbc4d7b4b681fc91cc785e484fba7d4c1b7 WHIRLPOOL 45a7fcb9108eeab47fdd2cfcc2f9409335d5b322d7bb1db58d9b702583b384d9c9a7ac7084620de1ce2a99370e87b29063291c8aee87c6710bf2153289afc003 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=5 | ||
inherit vim-plugin | ||
|
||
if [[ ${PV} == 9999* ]]; then | ||
EGIT_REPO_URI="git://github.com/airblade/vim-gitgutter.git" | ||
inherit git-r3 | ||
else | ||
KEYWORDS="~amd64 ~x86" | ||
fi | ||
|
||
DESCRIPTION="vim plugin: shows a git diff in the sign column and stages/reverts hunks" | ||
HOMEPAGE="https://github.com/airblade/vim-gitgutter/" | ||
LICENSE="MIT" | ||
VIM_PLUGIN_HELPFILES="${PN}.txt" | ||
|
||
src_prepare() { | ||
rm README* screenshot.png || die | ||
rm -rf test || die | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,23 @@ | ||
# Copyright 1999-2014 Gentoo Foundation | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=5 | ||
inherit vim-plugin git-r3 | ||
inherit vim-plugin | ||
|
||
EGIT_REPO_URI="git://github.com/airblade/vim-gitgutter.git" | ||
if [[ ${PV} == 9999* ]]; then | ||
EGIT_REPO_URI="git://github.com/airblade/vim-gitgutter.git" | ||
inherit git-r3 | ||
else | ||
KEYWORDS="~amd64 ~x86" | ||
fi | ||
|
||
DESCRIPTION="vim plugin: shows a git diff summary in the sign column and stages/reverts individual hunks" | ||
DESCRIPTION="vim plugin: shows a git diff in the sign column and stages/reverts hunks" | ||
HOMEPAGE="https://github.com/airblade/vim-gitgutter/" | ||
LICENSE="MIT" | ||
VIM_PLUGIN_HELPFILES="${PN}.txt" | ||
|
||
src_prepare() { | ||
rm README* screenshot.png || die | ||
rm -rf test || die | ||
} |