diff options
author | Tim Harder <radhermit@gentoo.org> | 2013-11-11 05:54:19 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2013-11-11 05:54:19 +0000 |
commit | e4e9fb82b38d4a4845af2871f8387cb6c13d9004 (patch) | |
tree | 9fc303a07339488cbfa37fb7afe92bff4617feb8 /app-vim | |
parent | update of oslo.config for gbug 490836 (diff) | |
download | gentoo-2-e4e9fb82b38d4a4845af2871f8387cb6c13d9004.tar.gz gentoo-2-e4e9fb82b38d4a4845af2871f8387cb6c13d9004.tar.bz2 gentoo-2-e4e9fb82b38d4a4845af2871f8387cb6c13d9004.zip |
Version bump.
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'app-vim')
-rw-r--r-- | app-vim/syntastic/ChangeLog | 7 | ||||
-rw-r--r-- | app-vim/syntastic/syntastic-3.2.0.ebuild | 27 |
2 files changed, 33 insertions, 1 deletions
diff --git a/app-vim/syntastic/ChangeLog b/app-vim/syntastic/ChangeLog index 65364cfbdf7a..2172a59bf5ed 100644 --- a/app-vim/syntastic/ChangeLog +++ b/app-vim/syntastic/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-vim/syntastic # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-vim/syntastic/ChangeLog,v 1.3 2013/11/05 16:44:39 chainsaw Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-vim/syntastic/ChangeLog,v 1.4 2013/11/11 05:54:19 radhermit Exp $ + +*syntastic-3.2.0 (11 Nov 2013) + + 11 Nov 2013; Tim Harder <radhermit@gentoo.org> +syntastic-3.2.0.ebuild: + Version bump. 05 Nov 2013; Tony Vroon <chainsaw@gentoo.org> syntastic-3.1.0.ebuild: Marked stable on AMD64 based on arch testing by Elijah "Armageddon" El diff --git a/app-vim/syntastic/syntastic-3.2.0.ebuild b/app-vim/syntastic/syntastic-3.2.0.ebuild new file mode 100644 index 000000000000..211276e7bcf6 --- /dev/null +++ b/app-vim/syntastic/syntastic-3.2.0.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-vim/syntastic/syntastic-3.2.0.ebuild,v 1.1 2013/11/11 05:54:19 radhermit Exp $ + +EAPI=5 +inherit vim-plugin + +DESCRIPTION="vim plugin: syntax checking using external tools" +HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=2736 https://github.com/scrooloose/syntastic/" +SRC_URI="https://github.com/scrooloose/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" +LICENSE="WTFPL-2" +KEYWORDS="~amd64 ~x86" + +VIM_PLUGIN_HELPFILES="${PN}" + +src_prepare() { + rm -r _assets LICENCE README.markdown || die +} + +pkg_postinst() { + if [[ -z ${REPLACING_VERSIONS} ]] ; then + elog "Syntastic has many optional dependencies depending on the type" + elog "of syntax checking being performed. Look in the related files in" + elog "the syntax_checkers directory to help figure out what programs" + elog "different languages need." + fi +} |