summaryrefslogtreecommitdiff
path: root/pcr
diff options
context:
space:
mode:
authorOmar Vega Ramos <ovruni@gnu.org.pe>2017-01-25 00:02:45 -0500
committerOmar Vega Ramos <ovruni@gnu.org.pe>2017-01-25 00:02:45 -0500
commit944526dee8afb2428a5613a9a361c27493aadbaf (patch)
tree5a0f9cbde59554c8d1d4b52849e31063f741b220 /pcr
parentcbe58153e9b21fabc3ea25e4a01b9bdcc17d009b (diff)
downloadabslibre-944526dee8afb2428a5613a9a361c27493aadbaf.tar.gz
abslibre-944526dee8afb2428a5613a9a361c27493aadbaf.tar.bz2
abslibre-944526dee8afb2428a5613a9a361c27493aadbaf.zip
Removing vim-pydiction: It was removed in upstream
Diffstat (limited to 'pcr')
-rw-r--r--pcr/vim-pydiction/PKGBUILD28
-rw-r--r--pcr/vim-pydiction/pydiction.install13
2 files changed, 0 insertions, 41 deletions
diff --git a/pcr/vim-pydiction/PKGBUILD b/pcr/vim-pydiction/PKGBUILD
deleted file mode 100644
index f2cfa4ada..000000000
--- a/pcr/vim-pydiction/PKGBUILD
+++ /dev/null
@@ -1,28 +0,0 @@
-# Maintainer : Aurelien Desbrieres <aurelien@hackers.camp>
-# Contributor: Alireza Savand <alireza.savand@gmail.com>
-# Contributor: lemanyk <lemanyk@gmail.com>
-# Contributor: Florian Friesdorf <archlinux@chaoflow.net>
-# Contributor: Laszlo Papp <djszapi @ gmail at com>
-
-pkgname=vim-pydiction
-pkgver=1.2.3
-_scriptid=21842
-pkgrel=2
-pkgdesc="Allows you to auto-complete your Python code"
-arch=('any')
-url="http://www.vim.org/scripts/script.php?script_id=850"
-license=('BSD')
-groups=('vim-plugins')
-depends=('vim' 'python2')
-install='pydiction.install'
-source=(${pkgname}.zip::http://www.vim.org/scripts/download_script.php?src_id=${_scriptid})
-
-package() {
- cd ${srcdir}/pydiction
-
- install -Dm755 pydiction.py ${pkgdir}/usr/bin/pydiction.py
- install -Dm644 complete-dict ${pkgdir}/usr/share/pydiction/complete-dict
- install -Dm644 after/ftplugin/python_pydiction.vim ${pkgdir}/usr/share/vim/vimfiles/ftplugin/python_pydiction.vim
- install -Dm644 README.md ${pkgdir}/usr/share/doc/${pkgname}/README.txt
-}
-
diff --git a/pcr/vim-pydiction/pydiction.install b/pcr/vim-pydiction/pydiction.install
deleted file mode 100644
index d55731df2..000000000
--- a/pcr/vim-pydiction/pydiction.install
+++ /dev/null
@@ -1,13 +0,0 @@
-post_install() {
- echo " Add to your .vimrc file:"
- echo "filetype plugin on"
- echo "let g:pydiction_location='/usr/share/pydiction/complete-dict'"
-}
-
-post_upgrade() {
- echo " Add to your .vimrc file:"
- echo "filetype plugin on"
- echo "let g:pydiction_location='/usr/share/pydiction/complete-dict'"
-}
-
-# vim:set ts=2 sw=2 et: