Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-vim/vim-latex/
Date: Fri, 01 Jan 2021 00:53:56
Message-Id: 1609462179.109927d7d26d327cedd8ce08d2dde95d4b2dfd32.mgorny@gentoo
1 commit: 109927d7d26d327cedd8ce08d2dde95d4b2dfd32
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 1 00:49:39 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 1 00:49:39 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=109927d7
7
8 app-vim/vim-latex: Remove old (py3.6)
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 app-vim/vim-latex/vim-latex-1.10.0-r1.ebuild | 64 ----------------------------
13 1 file changed, 64 deletions(-)
14
15 diff --git a/app-vim/vim-latex/vim-latex-1.10.0-r1.ebuild b/app-vim/vim-latex/vim-latex-1.10.0-r1.ebuild
16 deleted file mode 100644
17 index 98f504e5dc7..00000000000
18 --- a/app-vim/vim-latex/vim-latex-1.10.0-r1.ebuild
19 +++ /dev/null
20 @@ -1,64 +0,0 @@
21 -# Copyright 1999-2020 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=6
25 -PYTHON_COMPAT=( python3_6 )
26 -
27 -inherit vim-plugin python-single-r1
28 -
29 -DESCRIPTION="A comprehensive set of tools to view, edit and compile LaTeX documents"
30 -HOMEPAGE="http://vim-latex.sourceforge.net/"
31 -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
32 -
33 -LICENSE="vim"
34 -KEYWORDS="~alpha amd64 ~ia64 ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris"
35 -IUSE=""
36 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
37 -
38 -RDEPEND="
39 - ${PYTHON_DEPS}
40 - || (
41 - app-editors/vim[python,${PYTHON_SINGLE_USEDEP}]
42 - app-editors/gvim[python,${PYTHON_SINGLE_USEDEP}]
43 - )
44 - virtual/latex-base
45 - !app-vim/vimtex"
46 -
47 -VIM_PLUGIN_HELPFILES="latex-suite.txt latex-suite-quickstart.txt latexhelp.txt imaps.txt"
48 -
49 -src_compile() { :; }
50 -
51 -src_install() {
52 - # remove unused metadata
53 - rm vim-latex.metainfo.xml || die
54 -
55 - # don't mess up vim's doc dir with random files
56 - mv doc mydoc || die
57 - mkdir doc || die
58 - mv mydoc/*.txt doc/ || die
59 - rm -rf mydoc || die
60 -
61 - # don't install buggy tags scripts, use ctags instead
62 - rm latextags ltags || die
63 -
64 - vim-plugin_src_install
65 -
66 - # use executable permissions (bug #352403)
67 - fperms a+x /usr/share/vim/vimfiles/ftplugin/latex-suite/outline.py
68 -
69 - python_fix_shebang "${ED}"
70 -}
71 -
72 -pkg_postinst() {
73 - vim-plugin_pkg_postinst
74 -
75 - if [[ -z ${REPLACING_VERSIONS} ]]; then
76 - echo
77 - elog "To use the vim-latex plugin add:"
78 - elog " filetype plugin on"
79 - elog ' set grepprg=grep\ -nH\ $*'
80 - elog " let g:tex_flavor='latex'"
81 - elog "to your ~/.vimrc-file"
82 - echo
83 - fi
84 -}