summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakov Smolić <jsmolic@gentoo.org>2022-07-31 20:37:08 +0200
committerJakov Smolić <jsmolic@gentoo.org>2022-07-31 20:37:26 +0200
commit96a784d52bd4aa62665559bcebd1837447d6d5a3 (patch)
treec6c6461e26e5d1a4b845a115a0abf6f0012e81de /app-vim
parentapp-misc/siglo: treeclean (diff)
downloadgentoo-96a784d52bd4aa62665559bcebd1837447d6d5a3.tar.gz
gentoo-96a784d52bd4aa62665559bcebd1837447d6d5a3.tar.bz2
gentoo-96a784d52bd4aa62665559bcebd1837447d6d5a3.zip
app-vim/pyclewn: treeclean
Closes: https://bugs.gentoo.org/796326 Closes: https://bugs.gentoo.org/845615 Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
Diffstat (limited to 'app-vim')
-rw-r--r--app-vim/pyclewn/Manifest1
-rw-r--r--app-vim/pyclewn/metadata.xml12
-rw-r--r--app-vim/pyclewn/pyclewn-2.1-r2.ebuild52
3 files changed, 0 insertions, 65 deletions
diff --git a/app-vim/pyclewn/Manifest b/app-vim/pyclewn/Manifest
deleted file mode 100644
index ddda3be12253..000000000000
--- a/app-vim/pyclewn/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST pyclewn-2.1.tar.gz 129697 BLAKE2B 0dfef92cb36ea9fa89c7f0d85ed45e21c634732fc2d3d888dd792de22529bea86719f8ac8ed870dd5ab00efbfdb08011013a36880781abf9e0c64a62b2aa301a SHA512 346b98a9e37957a5bf97b8901247f56fa8e38bddac38727867773cf4e78e555d6a85848c4c400d1faf1159ba61122cfd4931c95a67e3b2abdfaae7996beb4f1b
diff --git a/app-vim/pyclewn/metadata.xml b/app-vim/pyclewn/metadata.xml
deleted file mode 100644
index 09f00c6e1d2f..000000000000
--- a/app-vim/pyclewn/metadata.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>vim@gentoo.org</email>
- <name>Gentoo Vim Project</name>
- </maintainer>
- <upstream>
- <remote-id type="pypi">pyclewn</remote-id>
- <remote-id type="sourceforge">pyclewn</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/app-vim/pyclewn/pyclewn-2.1-r2.ebuild b/app-vim/pyclewn/pyclewn-2.1-r2.ebuild
deleted file mode 100644
index ac33eb0aeb32..000000000000
--- a/app-vim/pyclewn/pyclewn-2.1-r2.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7,8,9} )
-
-inherit vim-plugin distutils-r1 optfeature
-
-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"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-CDEPEND="|| (
- app-editors/vim
- app-editors/gvim[netbeans]
-)"
-
-DEPEND="
- ${CDEPEND}
- app-arch/vimball"
-
-RDEPEND="${DEPEND}"
-
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-src_prepare() {
- default
-
- # async in a now a reserved keyword.
- sed -e 's#async#_async#g;' \
- -i lib/clewn/gdb.py || die "can't patch gdb.py"
-}
-
-python_install_all() {
- distutils-r1_python_install_all
- python_optimize
-
- 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
-}