radhermit 15/01/22 05:36:28 Modified: ChangeLog syntastic-9999.ebuild Added: syntastic-3.6.0.ebuild Log: Version bump. (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 4F064CA3)
Revision Changes Path 1.11 app-vim/syntastic/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-vim/syntastic/ChangeLog?rev=1.11&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-vim/syntastic/ChangeLog?rev=1.11&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-vim/syntastic/ChangeLog?r1=1.10&r2=1.11 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/app-vim/syntastic/ChangeLog,v retrieving revision 1.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- ChangeLog 2 Sep 2014 20:27:26 -0000 1.10 +++ ChangeLog 22 Jan 2015 05:36:28 -0000 1.11 @@ -1,6 +1,12 @@ # ChangeLog for app-vim/syntastic -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-vim/syntastic/ChangeLog,v 1.10 2014/09/02 20:27:26 radhermit Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-vim/syntastic/ChangeLog,v 1.11 2015/01/22 05:36:28 radhermit Exp $ + +*syntastic-3.6.0 (22 Jan 2015) + + 22 Jan 2015; Tim Harder <[email protected]> +syntastic-3.6.0.ebuild, + syntastic-9999.ebuild: + Version bump. *syntastic-3.5.0 (02 Sep 2014) 1.2 app-vim/syntastic/syntastic-9999.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-vim/syntastic/syntastic-9999.ebuild?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-vim/syntastic/syntastic-9999.ebuild?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-vim/syntastic/syntastic-9999.ebuild?r1=1.1&r2=1.2 Index: syntastic-9999.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/app-vim/syntastic/syntastic-9999.ebuild,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- syntastic-9999.ebuild 24 Jul 2013 08:12:23 -0000 1.1 +++ syntastic-9999.ebuild 22 Jan 2015 05:36:28 -0000 1.2 @@ -1,11 +1,17 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-vim/syntastic/syntastic-9999.ebuild,v 1.1 2013/07/24 08:12:23 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-vim/syntastic/syntastic-9999.ebuild,v 1.2 2015/01/22 05:36:28 radhermit Exp $ EAPI=5 -inherit vim-plugin git-2 +inherit vim-plugin -EGIT_REPO_URI="git://github.com/scrooloose/syntastic.git" +if [[ ${PV} == "9999" ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/scrooloose/syntastic.git" +else + SRC_URI="https://github.com/scrooloose/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi DESCRIPTION="vim plugin: syntax checking using external tools" HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=2736 https://github.com/scrooloose/syntastic/" 1.1 app-vim/syntastic/syntastic-3.6.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-vim/syntastic/syntastic-3.6.0.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-vim/syntastic/syntastic-3.6.0.ebuild?rev=1.1&content-type=text/plain Index: syntastic-3.6.0.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-vim/syntastic/syntastic-3.6.0.ebuild,v 1.1 2015/01/22 05:36:28 radhermit Exp $ EAPI=5 inherit vim-plugin if [[ ${PV} == "9999" ]] ; then inherit git-r3 EGIT_REPO_URI="https://github.com/scrooloose/syntastic.git" else SRC_URI="https://github.com/scrooloose/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" KEYWORDS="~amd64 ~x86" fi DESCRIPTION="vim plugin: syntax checking using external tools" HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=2736 https://github.com/scrooloose/syntastic/" LICENSE="WTFPL-2" 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 }
