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 3B4C6138334 for ; Fri, 13 Dec 2019 08:31:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5DBA3E08AE; Fri, 13 Dec 2019 08:31:54 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 07225E08AE for ; Fri, 13 Dec 2019 08:31:53 +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 2153F34D983 for ; Fri, 13 Dec 2019 08:31:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 98AB38C6 for ; Fri, 13 Dec 2019 08:31:50 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1576225864.ff1103ae9dcf65162dd8a2a8549b90601aa6c05e.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-vim/splice/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-vim/splice/splice-1.1.0-r1.ebuild X-VCS-Directories: app-vim/splice/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: ff1103ae9dcf65162dd8a2a8549b90601aa6c05e X-VCS-Branch: master Date: Fri, 13 Dec 2019 08:31:50 +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: 4103b062-6228-4dfd-8a9b-835b9382c37b X-Archives-Hash: 2b4f23852430c16f5562f569908412ac commit: ff1103ae9dcf65162dd8a2a8549b90601aa6c05e Author: Patrice Clement gentoo org> AuthorDate: Fri Dec 13 08:31:04 2019 +0000 Commit: Patrice Clement gentoo org> CommitDate: Fri Dec 13 08:31:04 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff1103ae app-vim/splice: add python3.6 support. Closes: https://bugs.gentoo.org/658840 Package-Manager: Portage-2.3.79, Repoman-2.3.16 Signed-off-by: Patrice Clement gentoo.org> app-vim/splice/splice-1.1.0-r1.ebuild | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/app-vim/splice/splice-1.1.0-r1.ebuild b/app-vim/splice/splice-1.1.0-r1.ebuild new file mode 100644 index 00000000000..3753a52afbe --- /dev/null +++ b/app-vim/splice/splice-1.1.0-r1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2019 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 vcs-snapshot + +DESCRIPTION="vim plugin: resolve conflicts during three-way merges" +HOMEPAGE="https://bitbucket.org/sjl/splice.vim/ https://www.vim.org/scripts/script.php?script_id=4026" +SRC_URI="https://bitbucket.org/sjl/${PN}.vim/get/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +KEYWORDS="~amd64 ~x86" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +RDEPEND=" + ${PYTHON_DEPS} + || ( + app-editors/vim[python,${PYTHON_USEDEP}] + app-editors/gvim[python,${PYTHON_USEDEP}] + )" + +VIM_PLUGIN_HELPFILES="${PN}.txt" + +src_prepare() { + default + rm .[a-z]* Makefile LICENSE.markdown package.sh || die + rm -r site || die +} + +src_install() { + vim-plugin_src_install + python_optimize "${ED}"/usr/share/vim/vimfiles/autoload/splicelib +}