Package Details: vim-fugitive-git 3.4.115.g142a0dc-2

Git Clone URL: https://aur.archlinux.org/vim-fugitive-git.git (read-only, click to copy)
Package Base: vim-fugitive-git
Description: Git wrapper so awesome, it should be illegal.
Upstream URL: https://github.com/tpope/vim-fugitive
Licenses: custom:vim
Groups: vim-plugins
Conflicts: vim-fugitive
Provides: vim-fugitive
Submitter: gwash
Maintainer: xythrez
Last Packager: xythrez
Votes: 39
Popularity: 0.000000
First Submitted: 2013-01-14 20:47 (UTC)
Last Updated: 2021-09-24 01:38 (UTC)

Required by (1)

Sources (2)

Latest Comments

DDoSolitary commented on 2021-09-21 04:17 (UTC)

The package is producing strange versions due to the new "trashtest" tag

howardad commented on 2014-08-19 22:02 (UTC)

Please add AUR metadata to this package to stop pacaur's nagging. :)

HalosGhost commented on 2014-01-20 01:33 (UTC)

zarel, thanks for pointing that out to me. I updated the vimdoc.install, and it should be working now. All the best,

zarel commented on 2014-01-19 23:04 (UTC)

@HalosGhost Please, could you review the path of the vim help files? The current .install rebuilds the help tags in /usr/share/vim/vim72/doc, but I found that vim-runtime (at present) installs them in /usr/share/vim/vim74 and vim-clang-complete in /usr/share/vim/vimfiles/doc Thank you for your efforts in maintaining the package

HalosGhost commented on 2014-01-06 01:52 (UTC)

Updated for makepkg 4.1 syntax and standards.

HalosGhost commented on 2014-01-06 01:50 (UTC)

No worries gwash. Adopted and soon to upload. All the best,

gwash commented on 2014-01-06 01:40 (UTC)

@HalosGhost, mmlb: sorry, for the delay, been busy with other projects, glad someone else could take some of these packages off my hands. Disowned.

HalosGhost commented on 2014-01-06 01:25 (UTC)

Please update this to modern packaging standards or disown it so someone can maintain it. I'm have a functioning PKGBUILD ready as well and I would be happy to maintain it.

mmlb commented on 2013-04-09 17:46 (UTC)

I updated the PKGBUILD to integrate makepkg-4.1's integrated git abilites: # Maintainer: M Rawash <mrawash@gmail.com> # Contributor: János Illés <ijanos@gmail.com> pkgname=vim-fugitive-git pkgver=1.2_195_gf6d93b8 pkgrel=1 pkgdesc="A git wrapper so awesome, it should be illegal. Latest git version" arch=('any') url="http://www.vim.org/scripts/script.php?script_id=2975" license=('custom:vim') groups=('vim-plugins') depends=('vim' 'git') conflicts=('vim-fugitive') provides=('vim-fugitive') makedepends=('git') install=vimdoc.install source=(git://github.com/tpope/vim-fugitive.git) sha1sums=('SKIP') pkgver() { cd vim-fugitive echo $(git describe | sed 's#-#_#g;s#v##') } package() { cd vim-fugitive installpath="${pkgdir}/usr/share/vim/vimfiles" install -Dm644 doc/fugitive.txt $installpath/doc/fugitive.txt install -Dm644 plugin/fugitive.vim $installpath/plugin/fugitive.vim } # vim:set ts=2 sw=2 et: