radhermit 15/02/09 01:05:45 Modified: ChangeLog Added: vimcalc-1.3-r2.ebuild Log: Run tests and don't install test file (bug #535790). (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Revision Changes Path 1.6 app-vim/vimcalc/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-vim/vimcalc/ChangeLog?rev=1.6&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-vim/vimcalc/ChangeLog?rev=1.6&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-vim/vimcalc/ChangeLog?r1=1.5&r2=1.6 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/app-vim/vimcalc/ChangeLog,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- ChangeLog 6 Jan 2015 13:04:37 -0000 1.5 +++ ChangeLog 9 Feb 2015 01:05:45 -0000 1.6 @@ -1,6 +1,11 @@ # ChangeLog for app-vim/vimcalc # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-vim/vimcalc/ChangeLog,v 1.5 2015/01/06 13:04:37 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-vim/vimcalc/ChangeLog,v 1.6 2015/02/09 01:05:45 radhermit Exp $ + +*vimcalc-1.3-r2 (09 Feb 2015) + + 09 Feb 2015; Tim Harder <[email protected]> +vimcalc-1.3-r2.ebuild: + Run tests and don't install test file (bug #535790). *vimcalc-1.3-r1 (06 Jan 2015) 1.1 app-vim/vimcalc/vimcalc-1.3-r2.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-vim/vimcalc/vimcalc-1.3-r2.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-vim/vimcalc/vimcalc-1.3-r2.ebuild?rev=1.1&content-type=text/plain Index: vimcalc-1.3-r2.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-vim/vimcalc/vimcalc-1.3-r2.ebuild,v 1.1 2015/02/09 01:05:45 radhermit Exp $ EAPI=5 PYTHON_COMPAT=( python{2_7,3_3,3_4} ) inherit python-single-r1 vim-plugin DESCRIPTION="vim plugin: provides an interactive calculator inside vim" HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=3329" SRC_URI="http://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_USEDEP}] app-editors/gvim[python,${PYTHON_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 } src_test() { cd plugin || die "${PYTHON}" tests.py || die "Tests failed" rm tests.py || die }
