summaryrefslogtreecommitdiff
path: root/app-vim
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-08-01 03:14:33 +0100
committerV3n3RiX <venerix@koprulu.sector>2022-08-01 03:14:33 +0100
commit0c764edfecb7e9e124d4669acd98bed09e23b6c0 (patch)
tree2862ab17d2f88cb7c9614b7fbe579f25ae604b8d /app-vim
parentae1bf373db295b495e1f685d116e3411bf10df0b (diff)
gentoo auto-resync : 01:08:2022 - 03:14:32
Diffstat (limited to 'app-vim')
-rw-r--r--app-vim/Manifest.gzbin32063 -> 31902 bytes
-rw-r--r--app-vim/pyclewn/Manifest3
-rw-r--r--app-vim/pyclewn/metadata.xml12
-rw-r--r--app-vim/pyclewn/pyclewn-2.1-r2.ebuild52
4 files changed, 0 insertions, 67 deletions
diff --git a/app-vim/Manifest.gz b/app-vim/Manifest.gz
index aa45c8da9604..003a82bf0ddc 100644
--- a/app-vim/Manifest.gz
+++ b/app-vim/Manifest.gz
Binary files differ
diff --git a/app-vim/pyclewn/Manifest b/app-vim/pyclewn/Manifest
deleted file mode 100644
index 14bb70f8a80b..000000000000
--- a/app-vim/pyclewn/Manifest
+++ /dev/null
@@ -1,3 +0,0 @@
-DIST pyclewn-2.1.tar.gz 129697 BLAKE2B 0dfef92cb36ea9fa89c7f0d85ed45e21c634732fc2d3d888dd792de22529bea86719f8ac8ed870dd5ab00efbfdb08011013a36880781abf9e0c64a62b2aa301a SHA512 346b98a9e37957a5bf97b8901247f56fa8e38bddac38727867773cf4e78e555d6a85848c4c400d1faf1159ba61122cfd4931c95a67e3b2abdfaae7996beb4f1b
-EBUILD pyclewn-2.1-r2.ebuild 1048 BLAKE2B 4252dc696ce81e1c1157ab8b31c8e84eeb6829e9488a49708db8f9960c2008e1838609fa326a79870bb3f0905c6658d42fa4cab622db03927990636d022bd46e SHA512 47fe6b43495cec13e7e45837ea1a56593df935f9f1cbbba43775a4294637c2c775dec13a33c7f0a742f62569acadff43a046fb8eb534f3b15fc37d1f1fe52e01
-MISC metadata.xml 384 BLAKE2B 7cf14bae50275645b5579e41069462d5b0a03c2c0c19b690b336a044ead5a991d4d365564bf1762a2db472a6b00965a339865d775c6dfc1195620a8d73aab42c SHA512 14433daf75f8899aeb7c783b489d6175253e8e29db8a0bd073a3f42abf321f74719f27580bc97029508ae3232ab50aa3e5092beb2d9f76ea618d9dc348ae6894
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
-}