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 36C28138335 for ; Mon, 9 Sep 2019 06:32:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 79385E09C3; Mon, 9 Sep 2019 06:32:43 +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 5E230E09C3 for ; Mon, 9 Sep 2019 06:32:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 76CA634AEB3 for ; Mon, 9 Sep 2019 06:32:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 01BBF785 for ; Mon, 9 Sep 2019 06:32:40 +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: <1568010753.72467bb3bfa5b62e089219aae9f30bdd1445ea31.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-vim/pydiction/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-vim/pydiction/pydiction-1.2.3-r1.ebuild app-vim/pydiction/pydiction-1.2.3.ebuild X-VCS-Directories: app-vim/pydiction/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 72467bb3bfa5b62e089219aae9f30bdd1445ea31 X-VCS-Branch: master Date: Mon, 9 Sep 2019 06:32:40 +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: edf85bb4-202c-4b8c-bb05-82be75eaf493 X-Archives-Hash: eb98cb3d664a29de131ad2b3a6bf6fb3 commit: 72467bb3bfa5b62e089219aae9f30bdd1445ea31 Author: Michał Górny gentoo org> AuthorDate: Mon Sep 9 06:09:35 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Sep 9 06:32:33 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72467bb3 app-vim/pydiction: Drop old, buggy ebuilds Signed-off-by: Michał Górny gentoo.org> app-vim/pydiction/pydiction-1.2.3-r1.ebuild | 30 ----------------------------- app-vim/pydiction/pydiction-1.2.3.ebuild | 25 ------------------------ 2 files changed, 55 deletions(-) diff --git a/app-vim/pydiction/pydiction-1.2.3-r1.ebuild b/app-vim/pydiction/pydiction-1.2.3-r1.ebuild deleted file mode 100644 index 12ae4f48a14..00000000000 --- a/app-vim/pydiction/pydiction-1.2.3-r1.ebuild +++ /dev/null @@ -1,30 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python2_7 python3_{5,6} ) - -inherit vim-plugin python-r1 - -DESCRIPTION="vim plugin: tab-complete your Python code" -HOMEPAGE="https://rkulla.github.io/pydiction/" -SRC_URI="https://dev.gentoo.org/~monsieurp/packages/${P}.zip" - -LICENSE="vim" -KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" -IUSE="" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -DEPEND="app-arch/unzip" -RDEPEND="${PYTHON_DEPS}" - -S="${WORKDIR}/${PN}-master" - -src_install() { - insinto "/usr/share/${PN}" - local pyfiles=( complete-dict pydiction.py ) - doins "${pyfiles[@]}" - rm -v "${pyfiles[@]}" || die - vim-plugin_src_install -} diff --git a/app-vim/pydiction/pydiction-1.2.3.ebuild b/app-vim/pydiction/pydiction-1.2.3.ebuild deleted file mode 100644 index c4fae822871..00000000000 --- a/app-vim/pydiction/pydiction-1.2.3.ebuild +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit vim-plugin - -DESCRIPTION="vim plugin: Tab-complete your Python code" -HOMEPAGE="https://rkulla.github.io/pydiction/" -SRC_URI="https://dev.gentoo.org/~monsieurp/packages/${P}.zip" -LICENSE="vim" -KEYWORDS="amd64 ppc ppc64 x86" - -DEPEND="app-arch/unzip" -RDEPEND="dev-lang/python:*" - -S="${WORKDIR}/${PN}-master" - -src_install() { - insinto "/usr/share/${PN}" - local pyfiles=( complete-dict pydiction.py ) - doins "${pyfiles[@]}" - rm -v "${pyfiles[@]}" || die - vim-plugin_src_install -}