diff options
author | Andreas Grapentin <andreas@grapentin.org> | 2019-02-19 23:23:32 +0100 |
---|---|---|
committer | Andreas Grapentin <andreas@grapentin.org> | 2019-02-19 23:23:32 +0100 |
commit | ac8ffee6f886e9b74b62049444c994d13c0b7939 (patch) | |
tree | 05835bc1a66b4383ee6cf7294e58f27c648e9f8b /pcr/vundle-git | |
parent | dc6a196fd9b9e10e81902a863bf57fec9cf315a6 (diff) | |
download | abslibre-ac8ffee6f886e9b74b62049444c994d13c0b7939.tar.gz abslibre-ac8ffee6f886e9b74b62049444c994d13c0b7939.tar.bz2 abslibre-ac8ffee6f886e9b74b62049444c994d13c0b7939.zip |
pcr/vundle-git: updated to 0.10.2.605.fef1c2f
Diffstat (limited to 'pcr/vundle-git')
-rw-r--r-- | pcr/vundle-git/PKGBUILD | 33 | ||||
-rw-r--r-- | pcr/vundle-git/vundle.vimrc | 29 |
2 files changed, 20 insertions, 42 deletions
diff --git a/pcr/vundle-git/PKGBUILD b/pcr/vundle-git/PKGBUILD index de7692b98..836ca3abf 100644 --- a/pcr/vundle-git/PKGBUILD +++ b/pcr/vundle-git/PKGBUILD @@ -1,12 +1,12 @@ +# Maintainer (AUR): Levente Polyak <anthraxx[at]archlinux[dot]org> +# Contributor (AUR): Fat Cat <carlos dot manuel250 at gmail dot com> # Maintainer: Aurélien DESBRIÈRES <aurelien@hackers.camp> -# Contributor: Levente Polyak <levente[at]leventepolyak[dot]net> -# Contributor: Fat Cat <carlos dot manuel250 at gmail dot com> pkgname=vundle-git -pkgver=0.10.2.594.5f70ae6 +pkgver=0.10.2.605.fef1c2f pkgrel=1 -pkgdesc="Plug-in manager for Vim" -url="https://github.com/gmarik/Vundle.vim" +pkgdesc='Plug-in manager for Vim' +url='https://github.com/VundleVim/Vundle.vim' arch=('any') license=('MIT') depends=('vim>=7.0') @@ -14,24 +14,31 @@ makedepends=('git') provides=('vundle') conflicts=('vundle') install=vundle.install -source=(${pkgname}::git+https://github.com/gmarik/Vundle.vim - vundle.vimrc) +source=(${pkgname}::git+https://github.com/VundleVim/Vundle.vim) +sha512sums=('SKIP') pkgver() { cd ${pkgname} - printf "%s.%s.%s" "$(git describe --tags --abbrev=0|sed 's/^v//')" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" + printf "%s.%s.%s" \ + "$(git describe --tags --abbrev=0|sed 's/^v//')" \ + "$(git rev-list --count HEAD)" \ + "$(git rev-parse --short HEAD)" +} + +prepare() { + cd ${pkgname} + sed -r 's|(set rtp)|" \1|' -i README.md } package() { cd ${pkgname} vimpath="${pkgdir}/usr/share/vim/vimfiles" - mkdir -p ${vimpath}/doc - cp -R doc ${vimpath} - mkdir -p ${vimpath}/autoload - cp -R autoload ${vimpath} + mkdir -p "${vimpath}/doc" + cp -R doc "${vimpath}" + mkdir -p "${vimpath}/autoload" + cp -R autoload "${vimpath}" - install -Dm 644 "${srcdir}"/vundle.vimrc "${pkgdir}/usr/share/vundle/vimrc.sample" install -Dm 644 LICENSE-MIT.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" install -Dm 644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README" } diff --git a/pcr/vundle-git/vundle.vimrc b/pcr/vundle-git/vundle.vimrc deleted file mode 100644 index 0e2e168e8..000000000 --- a/pcr/vundle-git/vundle.vimrc +++ /dev/null @@ -1,29 +0,0 @@ -set nocompatible " be iMproved -filetype off " required! - -call vundle#rc() - -" My Bundles here: -" -" original repos on github -" Bundle 'tpope/vim-fugitive' -" Bundle 'Lokaltog/vim-easymotion' -" Bundle 'rstacruz/sparkup', {'rtp': 'vim/'} -" Bundle 'tpope/vim-rails.git' -" vim-scripts repos -" Bundle 'L9' -" Bundle 'FuzzyFinder' -" non github repos -" Bundle 'git://git.wincent.com/command-t.git' -" ... - -filetype plugin indent on " required! -" -" Brief help -" :BundleList - list configured bundles -" :BundleInstall(!) - install(update) bundles -" :BundleSearch(!) foo - search(or refresh cache first) for foo -" :BundleClean(!) - confirm(or auto-approve) removal of unused bundles -" -" see :h vundle for more details or wiki for FAQ -" NOTE: comments after Bundle command are not allowed.. |