Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-vim/vim-latex: ChangeLog vim-latex-1.8.23.20121116.ebuild
Date: Tue, 27 Nov 2012 01:55:30
Message-Id: 20121127015516.B820120C65@flycatcher.gentoo.org
1 radhermit 12/11/27 01:55:16
2
3 Modified: ChangeLog
4 Added: vim-latex-1.8.23.20121116.ebuild
5 Log:
6 Version bump. Fix shebang for outline script (bug #386501 by Mathieu Zhang).
7
8 (Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
9
10 Revision Changes Path
11 1.12 app-vim/vim-latex/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-vim/vim-latex/ChangeLog?rev=1.12&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-vim/vim-latex/ChangeLog?rev=1.12&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-vim/vim-latex/ChangeLog?r1=1.11&r2=1.12
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-vim/vim-latex/ChangeLog,v
20 retrieving revision 1.11
21 retrieving revision 1.12
22 diff -u -r1.11 -r1.12
23 --- ChangeLog 23 Jul 2011 18:55:03 -0000 1.11
24 +++ ChangeLog 27 Nov 2012 01:55:16 -0000 1.12
25 @@ -1,6 +1,12 @@
26 # ChangeLog for app-vim/vim-latex
27 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-vim/vim-latex/ChangeLog,v 1.11 2011/07/23 18:55:03 radhermit Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/app-vim/vim-latex/ChangeLog,v 1.12 2012/11/27 01:55:16 radhermit Exp $
31 +
32 +*vim-latex-1.8.23.20121116 (27 Nov 2012)
33 +
34 + 27 Nov 2012; Tim Harder <radhermit@g.o>
35 + +vim-latex-1.8.23.20121116.ebuild:
36 + Version bump. Fix shebang for outline script (bug #386501 by Mathieu Zhang).
37
38 23 Jul 2011; Tim Harder <radhermit@g.o>
39 -vim-latex-1.8.23.20100129.ebuild, -vim-latex-1.8.23.20101027.ebuild:
40
41
42
43 1.1 app-vim/vim-latex/vim-latex-1.8.23.20121116.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-vim/vim-latex/vim-latex-1.8.23.20121116.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-vim/vim-latex/vim-latex-1.8.23.20121116.ebuild?rev=1.1&content-type=text/plain
47
48 Index: vim-latex-1.8.23.20121116.ebuild
49 ===================================================================
50 # Copyright 1999-2012 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/app-vim/vim-latex/vim-latex-1.8.23.20121116.ebuild,v 1.1 2012/11/27 01:55:16 radhermit Exp $
53
54 EAPI=5
55
56 inherit vim-plugin versionator python
57
58 MY_REV="784-git1c17b37"
59 MY_P="${PN}-$( replace_version_separator 3 - ).${MY_REV}"
60
61 DESCRIPTION="vim plugin: a comprehensive set of tools to view, edit and compile LaTeX documents"
62 HOMEPAGE="http://vim-latex.sourceforge.net/"
63 SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
64
65 LICENSE="vim"
66 KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris"
67 IUSE="html"
68
69 RDEPEND="|| ( app-editors/vim[python] app-editors/gvim[python] )
70 virtual/latex-base"
71
72 S="${WORKDIR}/${MY_P}"
73
74 VIM_PLUGIN_HELPFILES="latex-suite.txt latex-suite-quickstart.txt latexhelp.txt imaps.txt"
75
76 src_prepare() {
77 # The makefiles do weird stuff, including running the svn command
78 rm Makefile Makefile.in || die "rm Makefile Makefile.in failed"
79 }
80
81 src_install() {
82 use html && dohtml -r doc/
83
84 # Don't mess up vim's doc dir with random files
85 mv doc mydoc || die
86 mkdir doc || die
87 mv mydoc/*.txt doc/ || die
88 rm -rf mydoc || die
89
90 # Don't install buggy tags scripts, use ctags instead
91 rm latextags ltags || die
92
93 vim-plugin_src_install
94
95 # Use executable permissions (bug #352403)
96 fperms a+x /usr/share/vim/vimfiles/ftplugin/latex-suite/outline.py
97
98 python_convert_shebangs -r 2 "${ED}"
99 }
100
101 pkg_postinst() {
102 vim-plugin_pkg_postinst
103 elog
104 elog "To use the vim-latex plugin add:"
105 elog " filetype plugin on"
106 elog ' set grepprg=grep\ -nH\ $*'
107 elog " let g:tex_flavor='latex'"
108 elog "to your ~/.vimrc-file"
109 elog
110 }