[arch-commits] Commit in vim-bufexplorer/trunk (PKGBUILD)

2020-05-25 Thread Felix Yan via arch-commits
Date: Monday, May 25, 2020 @ 16:22:26
  Author: felixonmars
Revision: 634662

upgpkg: vim-bufexplorer 7.4.19-2: Buildinfo Format 1 rebuild

Modified:
  vim-bufexplorer/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-25 16:22:08 UTC (rev 634661)
+++ PKGBUILD2020-05-25 16:22:26 UTC (rev 634662)
@@ -3,7 +3,7 @@
 
 pkgname=vim-bufexplorer
 pkgver=7.4.19
-pkgrel=1
+pkgrel=2
 pkgdesc='Simple buffer list/switcher for vim'
 url='https://github.com/jlanzarotta/bufexplorer'
 arch=('any')


[arch-commits] Commit in vim-bufexplorer/trunk (PKGBUILD)

2018-03-13 Thread Levente Polyak via arch-commits
Date: Wednesday, March 14, 2018 @ 01:52:15
  Author: anthraxx
Revision: 307537

upgpkg: vim-bufexplorer 7.4.19-1

Modified:
  vim-bufexplorer/trunk/PKGBUILD

--+
 PKGBUILD |   31 +++
 1 file changed, 15 insertions(+), 16 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-03-14 01:51:00 UTC (rev 307536)
+++ PKGBUILD2018-03-14 01:52:15 UTC (rev 307537)
@@ -1,26 +1,25 @@
-#$Id$
-#Contributor: Aaron Griffin 
-#Maintainer: 
+# Maintainer: Levente Polyak 
+# Contributor: Aaron Griffin 
 
 pkgname=vim-bufexplorer
-pkgver=7.4.12
+pkgver=7.4.19
 pkgrel=1
-pkgdesc="A simple buffer list/switcher for vim "
+pkgdesc='Simple buffer list/switcher for vim'
+url='https://github.com/jlanzarotta/bufexplorer'
 arch=('any')
-url="http://www.vim.org/scripts/script.php?script_id=42;
 license=('BSD')
 depends=('vim>=7.0')
-makedepends=('git')
 groups=('vim-plugins')
-source=($pkgname-$pkgver.tar.gz::"https://github.com/jlanzarotta/bufexplorer/archive/$pkgver.tar.gz;)
-md5sums=('e6e927b1ab2e03448aad447c78d6d42b')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/jlanzarotta/bufexplorer/archive/v${pkgver}.tar.gz)
+sha512sums=('d38bcb52a50cfcf6d0b66ca6f1290a6be53d5cee98b3d2d7a93e01b5ef904af53c6cc8256e667bdeeb23a58344f5d69838bb7b5d71d225a83d1e173b99344888')
 
 package() {
-   cd bufexplorer-$pkgver
+  cd bufexplorer-${pkgver}
+  installpath="${pkgdir}/usr/share/vim/vimfiles"
+  install -Dm 644 doc/* -t "${installpath}/doc"
+  install -Dm 644 plugin/* -t "${installpath}/plugin"
+  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
 
-   installpath="${pkgdir}/usr/share/vim/vimfiles"
-
-   install -D -m644 doc/bufexplorer.txt $installpath/doc/bufexplorer.txt
-   install -D -m644 plugin/bufexplorer.vim 
$installpath/plugin/bufexplorer.vim
-   install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in vim-bufexplorer/trunk (PKGBUILD vimdoc.install)

2017-01-14 Thread Antonio Rojas
Date: Saturday, January 14, 2017 @ 19:14:24
  Author: arojas
Revision: 207404

Update to 7.4.12

Modified:
  vim-bufexplorer/trunk/PKGBUILD
Deleted:
  vim-bufexplorer/trunk/vimdoc.install

+
 PKGBUILD   |9 -
 vimdoc.install |   14 --
 2 files changed, 4 insertions(+), 19 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-01-14 19:14:04 UTC (rev 207403)
+++ PKGBUILD2017-01-14 19:14:24 UTC (rev 207404)
@@ -3,7 +3,7 @@
 #Maintainer: 
 
 pkgname=vim-bufexplorer
-pkgver=7.4.6
+pkgver=7.4.12
 pkgrel=1
 pkgdesc="A simple buffer list/switcher for vim "
 arch=('any')
@@ -12,12 +12,11 @@
 depends=('vim>=7.0')
 makedepends=('git')
 groups=('vim-plugins')
-install=vimdoc.install
-source=("git://github.com/jlanzarotta/bufexplorer.git#commit=fc022c")
-md5sums=('SKIP')
+source=($pkgname-$pkgver.tar.gz::"https://github.com/jlanzarotta/bufexplorer/archive/$pkgver.tar.gz;)
+md5sums=('e6e927b1ab2e03448aad447c78d6d42b')
 
 package() {
-   cd ${srcdir}/bufexplorer
+   cd bufexplorer-$pkgver
 
installpath="${pkgdir}/usr/share/vim/vimfiles"
 

Deleted: vimdoc.install
===
--- vimdoc.install  2017-01-14 19:14:04 UTC (rev 207403)
+++ vimdoc.install  2017-01-14 19:14:24 UTC (rev 207404)
@@ -1,14 +0,0 @@
-post_install() {
-echo -n "Updating vim help tags..."
-/usr/bin/vim --noplugins -u NONE -U NONE \
---cmd ":helptags /usr/share/vim/vimfiles/doc" --cmd ":q" > /dev/null 
2>&1
-echo "done."
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install
-}


[arch-commits] Commit in vim-bufexplorer/trunk (PKGBUILD)

2015-08-04 Thread Sven-Hendrik Haase
Date: Wednesday, August 5, 2015 @ 03:22:57
  Author: svenstaro
Revision: 137958

upgpkg: vim-bufexplorer 7.4.6-1

upstream release 7.4.6

Modified:
  vim-bufexplorer/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-08-05 00:26:18 UTC (rev 137957)
+++ PKGBUILD2015-08-05 01:22:57 UTC (rev 137958)
@@ -3,7 +3,7 @@
 #Maintainer: 
 
 pkgname=vim-bufexplorer
-pkgver=7.4.4
+pkgver=7.4.6
 pkgrel=1
 pkgdesc=A simple buffer list/switcher for vim 
 arch=('any')


[arch-commits] Commit in vim-bufexplorer/trunk (PKGBUILD license.txt)

2014-08-27 Thread Sven-Hendrik Haase
Date: Thursday, August 28, 2014 @ 07:24:38
  Author: svenstaro
Revision: 117994

upgpkg: vim-bufexplorer 7.4.4-1

upstream release 7.4.4

Modified:
  vim-bufexplorer/trunk/PKGBUILD
Deleted:
  vim-bufexplorer/trunk/license.txt

-+
 PKGBUILD|   16 +++-
 license.txt |9 -
 2 files changed, 7 insertions(+), 18 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-08-28 02:22:21 UTC (rev 117993)
+++ PKGBUILD2014-08-28 05:24:38 UTC (rev 117994)
@@ -3,27 +3,25 @@
 #Maintainer: 
 
 pkgname=vim-bufexplorer
-pkgver=7.4.2
-_scriptid=20953
+pkgver=7.4.4
 pkgrel=1
 pkgdesc=A simple buffer list/switcher for vim 
 arch=('any')
 url=http://www.vim.org/scripts/script.php?script_id=42;
-license=('custom')
+license=('BSD')
 depends=('vim=7.0')
+makedepends=('git')
 groups=('vim-plugins')
 install=vimdoc.install
-source=(bufexplorer-$pkgver.zip::http://www.vim.org/scripts/download_script.php?src_id=$_scriptid
-license.txt)
-md5sums=('d06635c272bf2b5c969680b25bcfb265'
- 'b1a7f22e90469abdad3ffd55120e6887')
+source=(git://github.com/jlanzarotta/bufexplorer.git#commit=fc022c)
+md5sums=('SKIP')
 
 package() {
-   cd ${srcdir}
+   cd ${srcdir}/bufexplorer
 
installpath=${pkgdir}/usr/share/vim/vimfiles
 
install -D -m644 doc/bufexplorer.txt $installpath/doc/bufexplorer.txt
install -D -m644 plugin/bufexplorer.vim 
$installpath/plugin/bufexplorer.vim
-   install -D -m644 license.txt 
${pkgdir}/usr/share/licenses/${pkgname}/license.txt
+   install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
 }

Deleted: license.txt
===
--- license.txt 2014-08-28 02:22:21 UTC (rev 117993)
+++ license.txt 2014-08-28 05:24:38 UTC (rev 117994)
@@ -1,9 +0,0 @@
-Copyright (C) 2001-2007 Jeff Lanzarotta
-
-Permission is hereby granted to use and distribute this code,
-with or without modifications, provided that this copyright
-notice is copied with it. Like anything else that's free,
-bufexplorer.vim is provided *as is* and comes with no
-warranty of any kind, either expressed or implied. In no
-event will the copyright holder be liable for any damages
-resulting from the use of this software.



[arch-commits] Commit in vim-bufexplorer/trunk (PKGBUILD)

2013-10-30 Thread Sven-Hendrik Haase
Date: Wednesday, October 30, 2013 @ 17:52:55
  Author: svenstaro
Revision: 99633

upgpkg: vim-bufexplorer 7.4.2-1

Updating to 7.4.2

Modified:
  vim-bufexplorer/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-10-30 16:51:13 UTC (rev 99632)
+++ PKGBUILD2013-10-30 16:52:55 UTC (rev 99633)
@@ -3,8 +3,8 @@
 #Maintainer: 
 
 pkgname=vim-bufexplorer
-pkgver=7.3.5
-_scriptid=19481
+pkgver=7.4.2
+_scriptid=20953
 pkgrel=1
 pkgdesc=A simple buffer list/switcher for vim 
 arch=('any')
@@ -15,7 +15,7 @@
 install=vimdoc.install
 
source=(bufexplorer-$pkgver.zip::http://www.vim.org/scripts/download_script.php?src_id=$_scriptid
 license.txt)
-md5sums=('6e38e193555fa2e792c04bc1d9b6fd7d'
+md5sums=('d06635c272bf2b5c969680b25bcfb265'
  'b1a7f22e90469abdad3ffd55120e6887')
 
 package() {



[arch-commits] Commit in vim-bufexplorer/trunk (PKGBUILD)

2013-02-15 Thread Sven-Hendrik Haase
Date: Saturday, February 16, 2013 @ 03:02:35
  Author: svenstaro
Revision: 84309

upgpkg: vim-bufexplorer 7.3.5-1

Updating to 7.3.5

Modified:
  vim-bufexplorer/trunk/PKGBUILD

--+
 PKGBUILD |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-02-16 02:01:09 UTC (rev 84308)
+++ PKGBUILD2013-02-16 02:02:35 UTC (rev 84309)
@@ -3,9 +3,9 @@
 #Maintainer: 
 
 pkgname=vim-bufexplorer
-pkgver=7.3.0
-_scriptid=18766
-pkgrel=2
+pkgver=7.3.5
+_scriptid=19481
+pkgrel=1
 pkgdesc=A simple buffer list/switcher for vim 
 arch=('any')
 url=http://www.vim.org/scripts/script.php?script_id=42;
@@ -15,7 +15,7 @@
 install=vimdoc.install
 
source=(bufexplorer-$pkgver.zip::http://www.vim.org/scripts/download_script.php?src_id=$_scriptid
 license.txt)
-md5sums=('532212088d521fbd6e19632cab1d78b1'
+md5sums=('6e38e193555fa2e792c04bc1d9b6fd7d'
  'b1a7f22e90469abdad3ffd55120e6887')
 
 package() {



[arch-commits] Commit in vim-bufexplorer/trunk (PKGBUILD)

2011-01-02 Thread Daniel Griffiths
Date: Sunday, January 2, 2011 @ 03:20:17
  Author: dgriffiths
Revision: 104401

Modified:
  vim-bufexplorer/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-01-02 08:09:58 UTC (rev 104400)
+++ PKGBUILD2011-01-02 08:20:17 UTC (rev 104401)
@@ -3,8 +3,8 @@
 #Maintainer: Daniel J Griffiths ghost1...@archlinux.us
 
 pkgname=vim-bufexplorer
-pkgver=7.2.6
-_scriptid=12363
+pkgver=7.2.8
+_scriptid=14208
 pkgrel=4
 pkgdesc=A simple buffer list/switcher for vim 
 arch=('any')
@@ -15,7 +15,7 @@
 install=vimdoc.install
 source=(http://www.vim.org/scripts/download_script.php?src_id=$_scriptid
 license.txt)
-md5sums=('034ef12c8cfd325ca5efd0c959282775'
+md5sums=('378e0745fe39265f4384895243e65fbd'
  'b1a7f22e90469abdad3ffd55120e6887')
 
 build() {



[arch-commits] Commit in vim-bufexplorer/trunk (PKGBUILD)

2010-03-06 Thread Daniel Griffiths
Date: Saturday, March 6, 2010 @ 21:48:15
  Author: dgriffiths
Revision: 71446

Modified:
  vim-bufexplorer/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-03-07 00:52:09 UTC (rev 71445)
+++ PKGBUILD2010-03-07 02:48:15 UTC (rev 71446)
@@ -3,8 +3,8 @@
 #Maintainer: Daniel J Griffiths ghost1...@archlinux.us
 
 pkgname=vim-bufexplorer
-pkgver=7.2.2
-_scriptid=9524
+pkgver=7.2.6
+_scriptid=12363
 pkgrel=4
 pkgdesc=A simple buffer list/switcher for vim 
 arch=('any')
@@ -15,7 +15,7 @@
 install=vimdoc.install
 source=(http://www.vim.org/scripts/download_script.php?src_id=$_scriptid
 license.txt)
-md5sums=('1013ceca174d77758284c5f44a9d3f48'
+md5sums=('034ef12c8cfd325ca5efd0c959282775'
  'b1a7f22e90469abdad3ffd55120e6887')
 
 build() {



[arch-commits] Commit in vim-bufexplorer/trunk (PKGBUILD vimdoc.install)

2010-02-15 Thread Daniel Griffiths
Date: Monday, February 15, 2010 @ 16:10:07
  Author: dgriffiths
Revision: 68982

FS#18248

Modified:
  vim-bufexplorer/trunk/PKGBUILD
  vim-bufexplorer/trunk/vimdoc.install

+
 PKGBUILD   |   32 +++-
 vimdoc.install |7 +--
 2 files changed, 20 insertions(+), 19 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-02-15 21:08:07 UTC (rev 68981)
+++ PKGBUILD2010-02-15 21:10:07 UTC (rev 68982)
@@ -1,12 +1,13 @@
 #$Id$
-#Maintainer: Aaron Griffin aa...@archlinux.org
+#Contributor: Aaron Griffin aa...@archlinux.org
+#Maintainer: Daniel J Griffiths ghost1...@archlinux.us
 
 pkgname=vim-bufexplorer
 pkgver=7.2.2
 _scriptid=9524
-pkgrel=3
+pkgrel=4
 pkgdesc=A simple buffer list/switcher for vim 
-arch=(i686 x86_64)
+arch=('any')
 url=http://www.vim.org/scripts/script.php?script_id=42;
 license=('custom')
 depends=('vim=7.0')
@@ -18,18 +19,23 @@
  'b1a7f22e90469abdad3ffd55120e6887')
 
 build() {
-  cd $srcdir
-  mv download_script.php?src_id=$_scriptid bufexplorer.zip
-  bsdtar -xf bufexplorer.zip
+   cd ${srcdir}
 
-  installpath=$pkgdir/usr/share/vim/vimfiles
+   mv download_script.php?src_id=$_scriptid bufexplorer.zip
+   bsdtar -xf bufexplorer.zip
+}
 
-  install -D -m644 doc/bufexplorer.txt \
-  $installpath/doc/bufexplorer.txt
+package() {
+   cd ${srcdir}
 
-  install -D -m644 plugin/bufexplorer.vim \
-  $installpath/plugin/bufexplorer.vim
+   installpath=${pkgdir}/usr/share/vim/vimfiles
 
-  install -D -m644 license.txt \
-  $pkgdir/usr/share/licenses/$pkgname/license.txt
+   install -D -m644 doc/bufexplorer.txt \
+ $installpath/doc/bufexplorer.txt
+
+   install -D -m644 plugin/bufexplorer.vim \
+ $installpath/plugin/bufexplorer.vim
+
+   install -D -m644 license.txt \
+ ${pkgdir}/usr/share/licenses/${pkgname}/license.txt
 }

Modified: vimdoc.install
===
--- vimdoc.install  2010-02-15 21:08:07 UTC (rev 68981)
+++ vimdoc.install  2010-02-15 21:10:07 UTC (rev 68982)
@@ -1,7 +1,7 @@
 post_install() {
 echo -n Updating vim help tags...
 /usr/bin/vim --noplugins -u NONE -U NONE \
---cmd :helptags /usr/share/vim/doc --cmd :q  /dev/null 21
+--cmd :helptags /usr/share/vim/vimfiles/doc --cmd :q  /dev/null 
21
 echo done.
 }
 
@@ -12,8 +12,3 @@
 post_remove() {
   post_install
 }
-
-op=$1
-shift
-
-$op $*