Репозиторий Sisyphus
Последнее обновление: 1 октября 2023 | Пакетов: 18631 | Посещений: 37714104
en ru br
Репозитории ALT
S:1.99.40-alt1
5.1: 1.99.31-alt1
www.altlinux.org/Changes

Группа :: Редакторы
Пакет: vim-plugin-vcscommand

 Главная   Изменения   Спек   Патчи   Sources   Загрузить   Gear   Bugs and FR  Repocop 

Патч: vim-plugin-vcscommand-1.99.40-alt1.patch
Скачать


 .gear/rules                                        |    2 +
 .../tags/709234a07fe88603e4e3957c198de2be222f63e8  |    6 ++
 .gear/tags/list                                    |    1 +
 doc/vcscommand.txt                                 |    4 -
 plugin/vcsbzr.vim                                  |    4 +
 plugin/vcscommand.vim                              |    4 +
 plugin/vcscvs.vim                                  |    4 +
 plugin/vcsgit.vim                                  |    4 +
 plugin/vcshg.vim                                   |    4 +
 plugin/vcssvk.vim                                  |    4 +
 plugin/vcssvn.vim                                  |    4 +
 vim-plugin-vcscommand.spec                         |   83 ++++++++++++++++++++
 12 files changed, 120 insertions(+), 4 deletions(-)
diff --git a/.gear/rules b/.gear/rules
new file mode 100644
index 0000000..4b0460c
--- /dev/null
+++ b/.gear/rules
@@ -0,0 +1,2 @@
+tar: v@version@:.
+diff: v@version@:. .
diff --git a/.gear/tags/709234a07fe88603e4e3957c198de2be222f63e8 b/.gear/tags/709234a07fe88603e4e3957c198de2be222f63e8
new file mode 100644
index 0000000..437de1a
--- /dev/null
+++ b/.gear/tags/709234a07fe88603e4e3957c198de2be222f63e8
@@ -0,0 +1,6 @@
+object f93d43d367d5939cddece7f3439fc50af0839008
+type commit
+tag v1.99.40
+tagger Bob Hiestand <bob.hiestand@gmail.com> 1269976835 -0500
+
+vcscommand v1.99.40
diff --git a/.gear/tags/list b/.gear/tags/list
new file mode 100644
index 0000000..b9f0126
--- /dev/null
+++ b/.gear/tags/list
@@ -0,0 +1 @@
+709234a07fe88603e4e3957c198de2be222f63e8 v1.99.40
diff --git a/doc/vcscommand.txt b/doc/vcscommand.txt
index 28d4e63..19f60e6 100644
--- a/doc/vcscommand.txt
+++ b/doc/vcscommand.txt
@@ -19,10 +19,6 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
 IN THE SOFTWARE.
 
-For instructions on installing this file, type
-	:help add-local-help
-inside Vim.
-
 Author:  Bob Hiestand <bob.hiestand@gmail.com>
 Credits:  Benji Fisher's excellent MatchIt documentation
 
diff --git a/plugin/vcsbzr.vim b/plugin/vcsbzr.vim
index cebba31..0178970 100644
--- a/plugin/vcsbzr.vim
+++ b/plugin/vcsbzr.vim
@@ -39,6 +39,10 @@ if exists('VCSCommandDisableAll')
 	finish
 endif
 
+if !exists("use_vcscommand")
+  finish
+endif
+
 if v:version < 700
   echohl WarningMsg|echomsg 'VCSCommand requires at least VIM 7.0'|echohl None
   finish
diff --git a/plugin/vcscommand.vim b/plugin/vcscommand.vim
index f505d9e..7b516eb 100644
--- a/plugin/vcscommand.vim
+++ b/plugin/vcscommand.vim
@@ -295,6 +295,10 @@
 "
 " Section: Plugin header {{{1
 
+if !exists("use_vcscommand")
+	finish
+endif
+
 " loaded_VCSCommand is set to 1 when the initialization begins, and 2 when it
 " completes.  This allows various actions to only be taken by functions after
 " system initialization.
diff --git a/plugin/vcscvs.vim b/plugin/vcscvs.vim
index 2766348..14aed1a 100644
--- a/plugin/vcscvs.vim
+++ b/plugin/vcscvs.vim
@@ -81,6 +81,10 @@
 
 " Section: Plugin header {{{1
 
+if !exists("use_vcscommand")
+	finish
+endif
+
 if exists('VCSCommandDisableAll')
 	finish
 endif
diff --git a/plugin/vcsgit.vim b/plugin/vcsgit.vim
index 8ecbcf2..9805df6 100644
--- a/plugin/vcsgit.vim
+++ b/plugin/vcsgit.vim
@@ -40,6 +40,10 @@
 
 " Section: Plugin header {{{1
 
+if !exists("use_vcscommand")
+	finish
+endif
+
 if exists('VCSCommandDisableAll')
 	finish
 endif
diff --git a/plugin/vcshg.vim b/plugin/vcshg.vim
index a520172..0764184 100644
--- a/plugin/vcshg.vim
+++ b/plugin/vcshg.vim
@@ -42,6 +42,10 @@
 
 " Section: Plugin header {{{1
 
+if !exists("use_vcscommand")
+	finish
+endif
+
 if exists('VCSCommandDisableAll')
 	finish
 endif
diff --git a/plugin/vcssvk.vim b/plugin/vcssvk.vim
index 15e1c1e..547ad66 100644
--- a/plugin/vcssvk.vim
+++ b/plugin/vcssvk.vim
@@ -35,6 +35,10 @@
 
 " Section: Plugin header {{{1
 
+if !exists("use_vcscommand")
+	finish
+endif
+
 if exists('VCSCommandDisableAll')
 	finish
 endif
diff --git a/plugin/vcssvn.vim b/plugin/vcssvn.vim
index c9d120f..bba32ab 100644
--- a/plugin/vcssvn.vim
+++ b/plugin/vcssvn.vim
@@ -42,6 +42,10 @@
 
 " Section: Plugin header {{{1
 
+if !exists("use_vcscommand")
+	finish
+endif
+
 if exists('VCSCommandDisableAll')
 	finish
 endif
diff --git a/vim-plugin-vcscommand.spec b/vim-plugin-vcscommand.spec
new file mode 100644
index 0000000..060e76d
--- /dev/null
+++ b/vim-plugin-vcscommand.spec
@@ -0,0 +1,83 @@
+%define plugname vcscommand
+%define plugver  1.99.40
+
+Name: vim-plugin-%plugname
+Version: %plugver
+Release: alt1
+Epoch: 1
+
+Summary: CVS/SVN/SVK/git/bzr/hg integration plugin
+Group: Editors
+License: Distributable
+Url: %vim_script_url 90
+
+Packager: VIm Plugins Development Team <vim-plugins@packages.altlinux.org>
+
+BuildArch: noarch
+
+Source: %name-%version.tar
+Patch: %name-%version-%release.patch
+
+PreReq: vim-common >= 4:7.0
+
+BuildRequires(pre): vim-devel
+
+Obsoletes: vim-plugin-cvscommand
+Provides: vim-plugin-cvscommand
+Obsoletes: vim-plugin-svncommand
+Provides: vim-plugin-svncommand
+
+%description
+VIM 7 plugin useful for manipulating files controlled by CVS, SVN, SVK,
+git, bzr, and hg within VIM, including committing changes and performing
+diffs using the vimdiff system.
+
+To enable this plugin define "use_vcscommand" variable somewhere
+in your .vimrc file.
+
+%prep
+%setup
+%patch -p1
+
+%install
+mkdir -p %buildroot{%vim_doc_dir,%vim_syntax_dir,%vim_plugin_dir}
+install -p -m644 doc/* %buildroot%vim_doc_dir/
+install -p -m644 plugin/* %buildroot%vim_plugin_dir/
+install -p -m644 syntax/* %buildroot%vim_syntax_dir/
+
+%files
+%vim_doc_dir/*
+%vim_plugin_dir/*
+%vim_syntax_dir/*
+
+%changelog
+* Mon Jun 21 2010 Andrey Rahmatullin <wrar@altlinux.ru> 1:1.99.40-alt1
+- 1.99.40
+
+* Wed Mar 31 2010 Andrey Rahmatullin <wrar@altlinux.ru> 1:1.99.39-alt1
+- 1.99.39
+
+* Thu Aug 20 2009 Andrey Rahmatullin <wrar@altlinux.ru> 1:1.99.31-alt1
+- 1.99.31
+
+* Thu Feb 26 2009 Andrey Rahmatullin <wrar@altlinux.ru> beta29-alt1
+- beta29
+- remove obsolete macros
+
+* Wed Oct 08 2008 Andrey Rahmatullin <wrar@altlinux.ru> beta28-alt1
+- beta28
+
+* Mon Sep 01 2008 Andrey Rahmatullin <wrar@altlinux.ru> beta27-alt1
+- beta27
+
+* Sat Jul 19 2008 Andrey Rahmatullin <wrar@altlinux.ru> beta26-alt1
+- beta26
+
+* Tue Jun 03 2008 Andrey Rahmatullin <wrar@altlinux.ru> beta25-alt1
+- beta25
+
+* Tue May 27 2008 Andrey Rahmatullin <wrar@altlinux.ru> beta24-alt1
+- beta24
+
+* Sat May 03 2008 Andrey Rahmatullin <wrar@altlinux.ru> beta22-alt1
+- initial build
 
дизайн и разработка: Vladimir Lettiev aka crux © 2004-2005, Andrew Avramenko aka liks © 2007-2008
текущий майнтейнер: Michael Shigorin