From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C310613835A for ; Fri, 1 Jan 2021 00:53:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DEAFAE092C; Fri, 1 Jan 2021 00:53:55 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CA0D52BC002 for ; Fri, 1 Jan 2021 00:53:55 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 19A29340E58 for ; Fri, 1 Jan 2021 00:53:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9BFB6488 for ; Fri, 1 Jan 2021 00:53:52 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1609462179.109927d7d26d327cedd8ce08d2dde95d4b2dfd32.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-vim/vim-latex/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-vim/vim-latex/vim-latex-1.10.0-r1.ebuild X-VCS-Directories: app-vim/vim-latex/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 109927d7d26d327cedd8ce08d2dde95d4b2dfd32 X-VCS-Branch: master Date: Fri, 1 Jan 2021 00:53:52 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b838fb39-1163-4aab-8485-8e5bc05b716e X-Archives-Hash: 8e5d6addf47b8622b719c33e3f2c776c commit: 109927d7d26d327cedd8ce08d2dde95d4b2dfd32 Author: Michał Górny gentoo org> AuthorDate: Fri Jan 1 00:49:39 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Jan 1 00:49:39 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=109927d7 app-vim/vim-latex: Remove old (py3.6) Signed-off-by: Michał Górny gentoo.org> app-vim/vim-latex/vim-latex-1.10.0-r1.ebuild | 64 ---------------------------- 1 file changed, 64 deletions(-) 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 deleted file mode 100644 index 98f504e5dc7..00000000000 --- a/app-vim/vim-latex/vim-latex-1.10.0-r1.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -PYTHON_COMPAT=( python3_6 ) - -inherit vim-plugin python-single-r1 - -DESCRIPTION="A comprehensive set of tools to view, edit and compile LaTeX documents" -HOMEPAGE="http://vim-latex.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - -LICENSE="vim" -KEYWORDS="~alpha amd64 ~ia64 ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris" -IUSE="" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -RDEPEND=" - ${PYTHON_DEPS} - || ( - app-editors/vim[python,${PYTHON_SINGLE_USEDEP}] - app-editors/gvim[python,${PYTHON_SINGLE_USEDEP}] - ) - virtual/latex-base - !app-vim/vimtex" - -VIM_PLUGIN_HELPFILES="latex-suite.txt latex-suite-quickstart.txt latexhelp.txt imaps.txt" - -src_compile() { :; } - -src_install() { - # remove unused metadata - rm vim-latex.metainfo.xml || die - - # don't mess up vim's doc dir with random files - mv doc mydoc || die - mkdir doc || die - mv mydoc/*.txt doc/ || die - rm -rf mydoc || die - - # don't install buggy tags scripts, use ctags instead - rm latextags ltags || die - - vim-plugin_src_install - - # use executable permissions (bug #352403) - fperms a+x /usr/share/vim/vimfiles/ftplugin/latex-suite/outline.py - - python_fix_shebang "${ED}" -} - -pkg_postinst() { - vim-plugin_pkg_postinst - - if [[ -z ${REPLACING_VERSIONS} ]]; then - echo - elog "To use the vim-latex plugin add:" - elog " filetype plugin on" - elog ' set grepprg=grep\ -nH\ $*' - elog " let g:tex_flavor='latex'" - elog "to your ~/.vimrc-file" - echo - fi -}