[vim-javabrowser] initial version

Petr Hracek phracek at fedoraproject.org
Mon Jul 15 14:21:54 UTC 2013


commit bcaef19e62ef568385b78b465e8dc1cb4d1260d2
Author: Petr Hracek <phracek at redhat.com>
Date:   Mon Jul 15 16:21:09 2013 +0200

    initial version

 .gitignore           |    1 +
 sources              |    1 +
 vim-javabrowser.spec |   49 +++++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 51 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..99b12b0 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/2.03.zip
diff --git a/sources b/sources
index e69de29..9590dc8 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+dbe015e47faf471decebe3431fb41c34  2.03.zip
diff --git a/vim-javabrowser.spec b/vim-javabrowser.spec
new file mode 100644
index 0000000..14c9ea1
--- /dev/null
+++ b/vim-javabrowser.spec
@@ -0,0 +1,49 @@
+%global baseversion 2.03
+%global zipname JavaBrowser
+%global pkgname javabrowser
+#used for pre-releases:
+%global vimfiles_root %{_datadir}/vim/vimfiles
+
+Summary: The javabrowser plugin for VIM editor
+Name: vim-%{pkgname}
+Version: %{baseversion}
+Release: 3%{?dist}
+
+License: Vim
+URL:     http://www.vim.org/scripts/script.php?script_id=588
+Source:  http://github.com/vim-scripts/JavaBrowser/archive/2.03.zip
+
+Requires: vim-common
+BuildArch: noarch
+
+%description
+This script is SPECIFICALLY tailored for Java language.
+So, it shows structure of the Java file starting with classes defined within it
+and NOT in a general tag structure.
+It also has a nice syntax to show the class members in UML format.
+
+%prep
+%setup -q -n %{zipname}-%{baseversion}
+
+%build
+
+%install
+mkdir -p %{buildroot}%{vimfiles_root}
+cp -ar plugin %{buildroot}%{vimfiles_root}
+cp -ar pixmaps %{buildroot}%{_datadir}
+
+%files 
+%doc README
+%{vimfiles_root}/plugin/*
+%{_datadir}/pixmaps/*
+
+%changelog
+* Thu Jun 27 2013 Petr Hracek <phracek at redhat.com> 2.03-3
+- Removed defattr macro from spec file
+
+* Thu May 09 2013 Petr Hracek <phracek at redhat.com> 2.03-2
+- Removing Group tag, PostInstall and PreInstall tags
+- Description field added
+
+* Thu May 09 2013 Petr Hracek <phracek at redhat.com> 2.03-1
+- Initial version


More information about the scm-commits mailing list