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 A87691382C5 for ; Sun, 21 Jun 2020 14:58:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B9567E0875; Sun, 21 Jun 2020 14:58:13 +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 A06E3E0875 for ; Sun, 21 Jun 2020 14:58:13 +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 67E4A34FBD4 for ; Sun, 21 Jun 2020 14:58:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8B3A82AE for ; Sun, 21 Jun 2020 14:58:10 +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: <1592751472.d999abeb879764bb95115ff8ced8a982dae17a01.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-vim/pyclewn/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-vim/pyclewn/pyclewn-2.1-r1.ebuild X-VCS-Directories: app-vim/pyclewn/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: d999abeb879764bb95115ff8ced8a982dae17a01 X-VCS-Branch: master Date: Sun, 21 Jun 2020 14:58:10 +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: 17c62227-ce71-40ec-b0f4-1793db562e69 X-Archives-Hash: c34a0734fcea99f737cb43f3eca255af commit: d999abeb879764bb95115ff8ced8a982dae17a01 Author: Patrice Clement gentoo org> AuthorDate: Sun Jun 21 14:32:49 2020 +0000 Commit: Patrice Clement gentoo org> CommitDate: Sun Jun 21 14:57:52 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d999abeb app-vim/pyclewn: clean up old. Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Patrice Clement gentoo.org> app-vim/pyclewn/pyclewn-2.1-r1.ebuild | 47 ----------------------------------- 1 file changed, 47 deletions(-) diff --git a/app-vim/pyclewn/pyclewn-2.1-r1.ebuild b/app-vim/pyclewn/pyclewn-2.1-r1.ebuild deleted file mode 100644 index 67459d86ff7..00000000000 --- a/app-vim/pyclewn/pyclewn-2.1-r1.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -PYTHON_COMPAT=( python3_6 ) - -inherit eutils vim-plugin distutils-r1 - -SRC_URI="mirror://pypi/p/${PN}/${P}.tar.gz" - -DESCRIPTION="Pyclewn allows using vim as a front end to a debugger (pdb or gdb)" -HOMEPAGE="http://pyclewn.sourceforge.net/" -LICENSE="GPL-2" -KEYWORDS="~amd64 ~x86" - -CDEPEND="|| ( - >=app-editors/vim-7.3 - >=app-editors/gvim-7.3[netbeans] -)" - -DEPEND=" - ${CDEPEND} - app-arch/vimball" - -RDEPEND=" - ${DEPEND}" - -SLOT="0" - -#Completely broken (runs vim), disable for now -#python_test() { -# esetup.py test -#} - -python_install_all() { - distutils-r1_python_install_all - - vimball -x -C "${ED}"/usr/share/vim/vimfiles lib/clewn/runtime/${P}.vmb || die "Extracting vimball failed" -} - -pkg_postinst() { - vim-plugin_pkg_postinst - - optfeature "C/C++ debugging" sys-devel/gdb - optfeature "Python debugging" dev-python/pdb-clone -}