summaryrefslogtreecommitdiff
path: root/app-vim/vimcalc
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2020-05-30 11:44:06 +0100
committerV3n3RiX <venerix@redcorelinux.org>2020-05-30 11:44:06 +0100
commitf516638b7fe9592837389826a6152a7e1b251c54 (patch)
tree8bfecb640b7b6403d7a3d662d923eed630033da7 /app-vim/vimcalc
parent1a61119f9f7b057830e2ce0563f913ec86f282ad (diff)
gentoo resync : 30.05.2020
Diffstat (limited to 'app-vim/vimcalc')
-rw-r--r--app-vim/vimcalc/Manifest3
-rw-r--r--app-vim/vimcalc/metadata.xml8
-rw-r--r--app-vim/vimcalc/vimcalc-1.3-r3.ebuild46
3 files changed, 0 insertions, 57 deletions
diff --git a/app-vim/vimcalc/Manifest b/app-vim/vimcalc/Manifest
deleted file mode 100644
index e130eca9edbb..000000000000
--- a/app-vim/vimcalc/Manifest
+++ /dev/null
@@ -1,3 +0,0 @@
-DIST vimcalc-1.3.zip 24993 BLAKE2B 8cfd0a399b4888fa4e9244f7f6a315f97a3e74c78879c281d596a1a5c109711933b66b44493a2ee3c136e1159d937c95707b06c54a5342457494a3c945dcf66f SHA512 1b377f284a7b68d200b08bdacee2080a60412e6ba1fd530eb0075dbc84fba30b37cec45e60d916aa80d057809b79f4d816f3a85f903d0e2fc7d06240dcdbb600
-EBUILD vimcalc-1.3-r3.ebuild 979 BLAKE2B 19a38980f1dda9203486e3e865446c4e027a8beb1502a90742a6def1b5750bb9066bc9cccd08ee98dce3425d70cecd4c1c3b85a22508f41277d8e0af3ba3a7f3 SHA512 ce993e26464d3f7ca3cdd0ae01a0cbfd3130d76d3901c59eed6ad2a0025a9f293ef53e00ab5ba08c5fadba989fa6165d82bdde27fb14ec6182cb812d750e260e
-MISC metadata.xml 249 BLAKE2B 7ae6eac3ca23edbcbaa6aee682bb4aec155e3166f169eef8e4400e59fa56113ecc3593680d55cc57f08a4a718963dd3d0bb804bd1e8771ed60a4bebaae9db281 SHA512 4051dd059d975d2e1799125f7defbf5a62a168241d8b83d83710592efd60808800951c4fd6da1294044d7e7ec6b757b8d50593fd076696f826dec761e99645c7
diff --git a/app-vim/vimcalc/metadata.xml b/app-vim/vimcalc/metadata.xml
deleted file mode 100644
index 5c000c763084..000000000000
--- a/app-vim/vimcalc/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>vim@gentoo.org</email>
- <name>Gentoo Vim Project</name>
- </maintainer>
-</pkgmetadata>
diff --git a/app-vim/vimcalc/vimcalc-1.3-r3.ebuild b/app-vim/vimcalc/vimcalc-1.3-r3.ebuild
deleted file mode 100644
index dcf1201a0108..000000000000
--- a/app-vim/vimcalc/vimcalc-1.3-r3.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit python-single-r1 vim-plugin
-
-DESCRIPTION="vim plugin: provides an interactive calculator inside vim"
-HOMEPAGE="https://www.vim.org/scripts/script.php?script_id=3329"
-SRC_URI="https://www.vim.org/scripts/download_script.php?src_id=15317 -> ${P}.zip"
-LICENSE="vim"
-KEYWORDS="amd64 x86"
-
-VIM_PLUGIN_HELPFILES="vimcalc"
-
-DEPEND="
- app-arch/unzip
- ${PYTHON_DEPS}"
-
-RDEPEND="
- || (
- app-editors/vim[python,${PYTHON_SINGLE_USEDEP}]
- app-editors/gvim[python,${PYTHON_SINGLE_USEDEP}]
- )
- ${PYTHON_DEPS}"
-
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-S="${WORKDIR}/${PN}-v${PV}"
-
-src_prepare() {
- # Remove .DS_Store files that should not be installed
- find -type f -name '.DS*' -delete || die
-}
-
-src_test() {
- cd plugin || die
- "${PYTHON}" tests.py || die "Tests failed"
-}
-
-src_install() {
- rm plugin/tests.py || die
- vim-plugin_src_install
-}