[arch-commits] Commit in (7 files)

Alexander Rødseth arodseth at nymeria.archlinux.org
Mon Mar 25 11:18:53 UTC 2013


    Date: Monday, March 25, 2013 @ 12:18:52
  Author: arodseth
Revision: 86962

Open .jar files directly in vim and see the decompiled version

Added:
  vim-jad/
  vim-jad/repos/
  vim-jad/repos/community-any/
  vim-jad/trunk/
  vim-jad/trunk/LICENSE
  vim-jad/trunk/PKGBUILD
  vim-jad/trunk/vim-jad.install

-----------------+
 LICENSE         |    8 ++++++++
 PKGBUILD        |   27 +++++++++++++++++++++++++++
 vim-jad.install |   16 ++++++++++++++++
 3 files changed, 51 insertions(+)

Added: vim-jad/trunk/LICENSE
===================================================================
--- vim-jad/trunk/LICENSE	                        (rev 0)
+++ vim-jad/trunk/LICENSE	2013-03-25 11:18:52 UTC (rev 86962)
@@ -0,0 +1,8 @@
+Copyright (C) 2002-2007 Yegappan Lakshmanan
+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,
+taglist.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 damamges resulting from the use of this
+software.

Added: vim-jad/trunk/PKGBUILD
===================================================================
--- vim-jad/trunk/PKGBUILD	                        (rev 0)
+++ vim-jad/trunk/PKGBUILD	2013-03-25 11:18:52 UTC (rev 86962)
@@ -0,0 +1,27 @@
+# Maintainer: Alexander Rødseth <rodseth at gmail.com>
+# Contributor: Laszlo Papp <djszapi @ gmail at com>
+# Contributor: Dmitry ixaphire_at-gmail-dot+com 
+
+pkgname=vim-jad
+pkgver=1.3
+pkgrel=3
+pkgdesc='Automatically decompiles java class files and displays java code'
+arch=('x86_64' 'i686')
+url='http://www.vim.org/scripts/script.php?script_id=446'
+license=('custom')
+depends=('vim' 'jad')
+groups=('vim-plugins')
+install="$pkgname.install"
+source=("$pkgname::http://www.vim.org/scripts/download_script.php?src_id=1329"
+        'LICENSE')
+sha256sums=('0b39f72f8f22c0ec63b3378ac54399a4'
+         'efbd5986e691ce8c876fb86e8f5961ea')
+
+build() {
+  cd "$srcdir"
+
+  install -Dm755 "$srcdir/$pkgname" "$pkgdir/usr/share/vim/vimfiles/plugin/jad.vim"
+  install -Dm755 "$srcdir/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:


Property changes on: vim-jad/trunk/PKGBUILD
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: vim-jad/trunk/vim-jad.install
===================================================================
--- vim-jad/trunk/vim-jad.install	                        (rev 0)
+++ vim-jad/trunk/vim-jad.install	2013-03-25 11:18:52 UTC (rev 86962)
@@ -0,0 +1,16 @@
+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
+}
+
+post_remove() {
+  post_install
+}
+
+# vim:set ts=2 sw=2 et:




More information about the arch-commits mailing list