diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2020-05-30 11:44:06 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2020-05-30 11:44:06 +0100 |
commit | f516638b7fe9592837389826a6152a7e1b251c54 (patch) | |
tree | 8bfecb640b7b6403d7a3d662d923eed630033da7 /app-vim/slimv | |
parent | 1a61119f9f7b057830e2ce0563f913ec86f282ad (diff) |
gentoo resync : 30.05.2020
Diffstat (limited to 'app-vim/slimv')
-rw-r--r-- | app-vim/slimv/Manifest | 3 | ||||
-rw-r--r-- | app-vim/slimv/metadata.xml | 28 | ||||
-rw-r--r-- | app-vim/slimv/slimv-0.9.13_p20170910-r1.ebuild | 41 |
3 files changed, 0 insertions, 72 deletions
diff --git a/app-vim/slimv/Manifest b/app-vim/slimv/Manifest deleted file mode 100644 index efd208d67be6..000000000000 --- a/app-vim/slimv/Manifest +++ /dev/null @@ -1,3 +0,0 @@ -DIST slimv-0.9.13_p20170910.tar.gz 634493 BLAKE2B af7963e1d1b60b20294c935ecd076220777eec333b4e91bac82a111b727ce71c312c347b865f9e0c9072c0f94b40dc920b15feaf10f8683e1bba7590a177e62e SHA512 562e08866d62a6af5c20064a4533da7f0577ceb43391fac59acc0bb9c76319e3520c951c325277edbb2d0461fa227b91456c54ec5d9d1e3bca18d344f3e9a5e2 -EBUILD slimv-0.9.13_p20170910-r1.ebuild 1010 BLAKE2B 1f7791f1d7d17a9b38df7242dbd38749ed46dc7c081ec912cd7274f9e693f63c74425d460024d66cb9f5b36db60484db559b7a7fc8806df1120ad546d14cf81f SHA512 df500baad06d612685981a2c474d9985409676962e246fe703174071279c7659c0f31db617070749923d3f9d6cc2e615324beb811e8dda878dc2963c0d24a381 -MISC metadata.xml 1220 BLAKE2B 7d60a456299acdd198b51276a1016fec37007bdb6220efaa786889b0d046de73d14724e2a8bd5efaec84e0c850ff69bdaf344bbedcafa132a0a8c0c45fad051e SHA512 11c6fb3a83ea65ea97e57e70b24d9e011d48fb456bff15ea8b501e0dab767f73c78ae1c63e662423599252dee9969c1983b17fd1505533b3ee26f3afde2a3b29 diff --git a/app-vim/slimv/metadata.xml b/app-vim/slimv/metadata.xml deleted file mode 100644 index 0f0e597cc1b6..000000000000 --- a/app-vim/slimv/metadata.xml +++ /dev/null @@ -1,28 +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> - <longdescription lang="en"> - Slimv tries to mimic a subset of SLIME's (Superior Lisp Interaction Mode - for Emacs) functionality inside Vim. The script defines functions and - keybindings to send s-expressions to a console mode Lisp or Clojure REPL - (Read-Eval-Print Loop). - - Slimv runs its own REPL or connects to a running REPL started by a - previous Slimv session, the connection is established when the first - Slimv command is executed (e.g. an s-expression is evaluated). The Lisp - REPL buffer can also be opened inside Vim as a Vim buffer with syntax - highlighting and autoindenting, Lisp commands may be entered in the - command line, just as in a regular REPL. The script also has a basic - support for Clojure REPL. - - The script also supports a number of other features provided by SLIME - including profiling, paredit mode, and hyperspec lookups. - </longdescription> - <upstream> - <remote-id type="bitbucket">kovisoft/slimv</remote-id> - </upstream> -</pkgmetadata> diff --git a/app-vim/slimv/slimv-0.9.13_p20170910-r1.ebuild b/app-vim/slimv/slimv-0.9.13_p20170910-r1.ebuild deleted file mode 100644 index 82a26de9ea02..000000000000 --- a/app-vim/slimv/slimv-0.9.13_p20170910-r1.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -PYTHON_COMPAT=( python2_7 ) - -inherit python-single-r1 vim-plugin vcs-snapshot - -# Commit Date: July 10th 2017 -COMMIT="acf9b30be71c54db4f4875d257b905941ca69ed8" - -DESCRIPTION="vim plugin: aid Lisp development by providing a SLIME-like Lisp and Clojure REPL" -HOMEPAGE="https://www.vim.org/scripts/script.php?script_id=2531 https://github.com/kovisoft/slimv" -SRC_URI="https://github.com/kovisoft/slimv/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" -LICENSE="public-domain" -KEYWORDS="amd64 x86" - -RDEPEND=" - || ( - app-editors/vim[python,${PYTHON_SINGLE_USEDEP}] - app-editors/gvim[python,${PYTHON_SINGLE_USEDEP}] - ) - ${PYTHON_DEPS} - || ( - dev-lisp/abcl - dev-lisp/ecls - dev-lisp/sbcl - dev-lisp/clisp - dev-lang/clojure - dev-lisp/clozurecl - )" - -REQUIRED_USE=${PYTHON_REQUIRED_USE} - -VIM_PLUGIN_HELPFILES="${PN}.txt" - -src_prepare() { - default - # remove emacs related files - rm -r slime swank-clojure || die -} |