commit: ad399bae7c94218796b57cd50a898442d9e824c5 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org> AuthorDate: Thu Oct 8 07:55:58 2015 +0000 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org> CommitDate: Thu Oct 8 07:55:58 2015 +0000 URL: https://gitweb.gentoo.org/proj/java-experimental.git/commit/?id=ad399bae
app-vim/vimclojure: Moved to the main tree. Fixes bug 292301. Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org> app-vim/vimclojure/ChangeLog | 10 ------ app-vim/vimclojure/Manifest | 4 --- app-vim/vimclojure/metadata.xml | 14 -------- app-vim/vimclojure/vimclojure-2.1.2.ebuild | 51 ------------------------------ 4 files changed, 79 deletions(-) diff --git a/app-vim/vimclojure/ChangeLog b/app-vim/vimclojure/ChangeLog deleted file mode 100644 index 7be4a9c..0000000 --- a/app-vim/vimclojure/ChangeLog +++ /dev/null @@ -1,10 +0,0 @@ -# ChangeLog for app-vim/vimclojure -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: $ - -*vimclojure-2.1.2 (07 Nov 2009) - - 07 Nov 2009; Daniel Solano Gómez <[email protected]> - +vimclojure-2.1.2.ebuild, +metadata.xml: - New package: app-vim/vimclojure - diff --git a/app-vim/vimclojure/Manifest b/app-vim/vimclojure/Manifest deleted file mode 100644 index 528f8b2..0000000 --- a/app-vim/vimclojure/Manifest +++ /dev/null @@ -1,4 +0,0 @@ -DIST vimclojure-2.1.2.zip 295541 RMD160 c4d407968402fc6f94df1bf1d04ba13fbb560e4f SHA1 999efd2be810c883dd4d439b4c5a36120a878fa2 SHA256 d7e56e2764f6ff1c324b3a59f67278d52541e8c4dd00a7ddd6f42133b2c53c6b -EBUILD vimclojure-2.1.2.ebuild 1689 RMD160 5bcdcdb46748f43af9fbf1ebbf827ad155b29d16 SHA1 08a78a56d521afd3846d004fb090cdf17239276c SHA256 a522cd32e6071b0bdb1cbe362e56efede6ddb70a31fe5ef1e5d4809dac55f09f -MISC ChangeLog 287 RMD160 3a34b0eb4ac4f02ad6d39ec695e61fd00ee69f81 SHA1 f8284da8e0d6ac72c813b72fa035824dcace75a2 SHA256 344527a9d1e1cfde2310f3a0573aa73abe0eb510b3e10d3dd1b9051e5e3edc40 -MISC metadata.xml 594 RMD160 f5a5d6408cefdf507bd3b4965304b3d0457b1390 SHA1 15077c784e8914ea31f6185d613a971380c9dec2 SHA256 37442323527bcd57a36af51d4ab22398d2b19a7c97f4d3d4ca7dc47a7aa3ec8b diff --git a/app-vim/vimclojure/metadata.xml b/app-vim/vimclojure/metadata.xml deleted file mode 100644 index 2c329a9..0000000 --- a/app-vim/vimclojure/metadata.xml +++ /dev/null @@ -1,14 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> -<herd>java</herd> -<longdescription> - VimClojure consists of a set of plugin for Vim to enhance the editing of - Clojure files. It provides syntax highlighting and indenting. When enabled, - it also provides interactive features like omni completion, macro expansion, - code evaluation, docstring lookup, and javadoc lookup. -</longdescription> -<use> - <flag name='minimal'>Disables interactive features that require <pkg>dev-java/gorilla</pkg></flag> -</use> -</pkgmetadata> diff --git a/app-vim/vimclojure/vimclojure-2.1.2.ebuild b/app-vim/vimclojure/vimclojure-2.1.2.ebuild deleted file mode 100644 index 40ff2d7..0000000 --- a/app-vim/vimclojure/vimclojure-2.1.2.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI="2" - -inherit vim-plugin - -# source id for this version -SRC_ID="11066" - -DESCRIPTION="A vim plugin to enhance the editing of Clojure files" -HOMEPAGE="http://kotka.de/projects/clojure/vimclojure.html" -SRC_URI="http://www.vim.org/scripts/download_script.php?src_id=${SRC_ID} -> ${P}.zip" -LICENSE="MIT" -KEYWORDS="~amd64 ~x86" -IUSE="minimal" - -CDEPEND="!minimal? ( ~dev-java/gorilla-${PV} )" -DEPEND="${CDEPEND} - app-arch/unzip" -RDEPEND="${CDEPEND}" - -VIM_PLUGIN_HELPFILES="clojure" -VIM_PLUGIN_MESSAGES="filetype" - -src_prepare() { - local tmpdir="${T}/${P}" - mkdir "${tmpdir}" || die "Unable to create temporary directory" - cp -rp *.txt autoload doc indent syntax ftdetect ftplugin ${tmpdir} \ - || die "Failed to copy Vim plugin contents to temporary directory '${tmpdir}'" - cd "${WORKDIR}" || die "Unable to change directories to '${WORKDIR}'" - rm -r "${S}" || die "Unable to remove old source directory '${S}'" - cp -rp "${tmpdir}" "${S}" || die "Failed to copy new source directory to '${S}'" -} - -pkg_postinst() { - vim-plugin_pkg_postinst - if ! useq minimal ; then - elog "In order to use VimClojure’s interactive features, you must start a gorilla" - elog "server using either the command gorilla-server or the gorilla init script." - elog "" - elog "You must also modify your .vimrc file with the following entries:" - elog "" - elog " let g:vimclojure#NailgunClient="/usr/bin/gorilla-client"" - elog " let g:clj_want_gorilla=1" - elog "" - elog "For the mappings to work, you should set a localleader, e.g. " - elog "‘let maplocalleader=\"\\\\\\\\\"’." - fi -}
