Thread: [Vim-latex-cvs] SF.net SVN: vim-latex:[1052] trunk/vimfiles/Makefile
Brought to you by:
srinathava,
tmaas
From: <tm...@us...> - 2009-08-03 21:51:32
|
Revision: 1052 http://vim-latex.svn.sourceforge.net/vim-latex/?rev=1052&view=rev Author: tmaas Date: 2009-08-03 21:51:24 +0000 (Mon, 03 Aug 2009) Log Message: ----------- Create tarballs in the Makefile with .tar.gz suffix instead of .tgz Modified Paths: -------------- trunk/vimfiles/Makefile Modified: trunk/vimfiles/Makefile =================================================================== --- trunk/vimfiles/Makefile 2009-06-02 18:33:54 UTC (rev 1051) +++ trunk/vimfiles/Makefile 2009-08-03 21:51:24 UTC (rev 1052) @@ -9,7 +9,7 @@ snapshot: rm -rf -- ./$(SNAPSHOTNAME) svn export . $(SNAPSHOTNAME) - tar cvzf ./$(SNAPSHOTNAME).tgz ./$(SNAPSHOTNAME) + tar cvzf ./$(SNAPSHOTNAME).tar.gz ./$(SNAPSHOTNAME) rm -rf -- ./$(SNAPSHOTNAME) install: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tm...@us...> - 2009-08-03 21:53:23
|
Revision: 1053 http://vim-latex.svn.sourceforge.net/vim-latex/?rev=1053&view=rev Author: tmaas Date: 2009-08-03 21:53:14 +0000 (Mon, 03 Aug 2009) Log Message: ----------- support PREFIX in Makefile Modified Paths: -------------- trunk/vimfiles/Makefile Modified: trunk/vimfiles/Makefile =================================================================== --- trunk/vimfiles/Makefile 2009-08-03 21:51:24 UTC (rev 1052) +++ trunk/vimfiles/Makefile 2009-08-03 21:53:14 UTC (rev 1053) @@ -1,5 +1,6 @@ -VIMDIR = /usr/share/vim -BINDIR = /usr/bin +PREFIX = /usr +VIMDIR = $(PREFIX)/share/vim +BINDIR = $(PREFIX)/bin VERSION=1.5 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tm...@us...> - 2009-08-03 22:06:25
|
Revision: 1054 http://vim-latex.svn.sourceforge.net/vim-latex/?rev=1054&view=rev Author: tmaas Date: 2009-08-03 22:06:17 +0000 (Mon, 03 Aug 2009) Log Message: ----------- - Use /usr/local as default prefix - Include revision in snapshot tarball name Modified Paths: -------------- trunk/vimfiles/Makefile Modified: trunk/vimfiles/Makefile =================================================================== --- trunk/vimfiles/Makefile 2009-08-03 21:53:14 UTC (rev 1053) +++ trunk/vimfiles/Makefile 2009-08-03 22:06:17 UTC (rev 1054) @@ -1,12 +1,13 @@ -PREFIX = /usr +PREFIX = /usr/local VIMDIR = $(PREFIX)/share/vim BINDIR = $(PREFIX)/bin VERSION=1.5 - +REVISION=$(shell svn info 2>/dev/null| head -n 5 | tail -n 1 | cut -d" " -f2) DATE = $(shell date +%Y%m%d) -SNAPSHOTNAME = vim-latex-$(VERSION)-$(DATE) +SNAPSHOTNAME = vim-latex-$(VERSION)-$(DATE)-r$(REVISION) + snapshot: rm -rf -- ./$(SNAPSHOTNAME) svn export . $(SNAPSHOTNAME) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tm...@us...> - 2009-08-03 22:19:26
|
Revision: 1057 http://vim-latex.svn.sourceforge.net/vim-latex/?rev=1057&view=rev Author: tmaas Date: 2009-08-03 22:19:19 +0000 (Mon, 03 Aug 2009) Log Message: ----------- include documentation in the snapshot Modified Paths: -------------- trunk/vimfiles/Makefile Modified: trunk/vimfiles/Makefile =================================================================== --- trunk/vimfiles/Makefile 2009-08-03 22:15:11 UTC (rev 1056) +++ trunk/vimfiles/Makefile 2009-08-03 22:19:19 UTC (rev 1057) @@ -11,6 +11,7 @@ snapshot: rm -rf -- ./$(SNAPSHOTNAME) svn export . $(SNAPSHOTNAME) + make -C $(SNAPSHOTNAME)/doc tar cvzf ./$(SNAPSHOTNAME).tar.gz ./$(SNAPSHOTNAME) rm -rf -- ./$(SNAPSHOTNAME) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tm...@us...> - 2009-08-03 22:22:45
|
Revision: 1058 http://vim-latex.svn.sourceforge.net/vim-latex/?rev=1058&view=rev Author: tmaas Date: 2009-08-03 22:22:32 +0000 (Mon, 03 Aug 2009) Log Message: ----------- add upload target to Makefile Modified Paths: -------------- trunk/vimfiles/Makefile Modified: trunk/vimfiles/Makefile =================================================================== --- trunk/vimfiles/Makefile 2009-08-03 22:19:19 UTC (rev 1057) +++ trunk/vimfiles/Makefile 2009-08-03 22:22:32 UTC (rev 1058) @@ -25,3 +25,6 @@ install -d "$(DESTDIR)$(BINDIR)" install latextags ltags "$(DESTDIR)$(BINDIR)" + +upload: snapshot + scp "$(SNAPSHOTNAME).tar.gz" frs.sourceforge.net:/home/frs/project/v/vi/vim-latex/snapshots This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tm...@us...> - 2009-08-12 21:41:00
|
Revision: 1060 http://vim-latex.svn.sourceforge.net/vim-latex/?rev=1060&view=rev Author: tmaas Date: 2009-08-12 21:40:49 +0000 (Wed, 12 Aug 2009) Log Message: ----------- Create snapshots from HEAD and not WORKING. Modified Paths: -------------- trunk/vimfiles/Makefile Modified: trunk/vimfiles/Makefile =================================================================== --- trunk/vimfiles/Makefile 2009-08-12 21:38:05 UTC (rev 1059) +++ trunk/vimfiles/Makefile 2009-08-12 21:40:49 UTC (rev 1060) @@ -3,14 +3,14 @@ BINDIR = $(PREFIX)/bin VERSION=1.5 -REVISION=$(shell svn info 2>/dev/null| head -n 5 | tail -n 1 | cut -d" " -f2) +REVISION=$(shell svn info -r HEAD 2>/dev/null| head -n 5 | tail -n 1 | cut -d" " -f2) DATE = $(shell date +%Y%m%d) SNAPSHOTNAME = vim-latex-$(VERSION)-$(DATE)-r$(REVISION) snapshot: rm -rf -- ./$(SNAPSHOTNAME) - svn export . $(SNAPSHOTNAME) + svn export -r HEAD . $(SNAPSHOTNAME) make -C $(SNAPSHOTNAME)/doc tar cvzf ./$(SNAPSHOTNAME).tar.gz ./$(SNAPSHOTNAME) rm -rf -- ./$(SNAPSHOTNAME) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tm...@us...> - 2009-10-02 21:35:02
|
Revision: 1075 http://vim-latex.svn.sourceforge.net/vim-latex/?rev=1075&view=rev Author: tmaas Date: 2009-10-02 21:34:56 +0000 (Fri, 02 Oct 2009) Log Message: ----------- sync version in snapshot with ftplugin/latex-suite/version.vim Modified Paths: -------------- trunk/vimfiles/Makefile Modified: trunk/vimfiles/Makefile =================================================================== --- trunk/vimfiles/Makefile 2009-10-02 21:17:29 UTC (rev 1074) +++ trunk/vimfiles/Makefile 2009-10-02 21:34:56 UTC (rev 1075) @@ -2,7 +2,7 @@ VIMDIR = $(PREFIX)/share/vim BINDIR = $(PREFIX)/bin -VERSION=1.5 +VERSION=1.8.23 REVISION=$(shell svn info -r HEAD 2>/dev/null| head -n 5 | tail -n 1 | cut -d" " -f2) DATE = $(shell date +%Y%m%d) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |