idella4 14/06/26 11:40:10 Modified: openpyxl-1.6.2.ebuild ChangeLog Added: openpyxl-2.0.2.ebuild Log: major version bump; add pypy support, virtual re-write (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
Revision Changes Path 1.4 dev-python/openpyxl/openpyxl-1.6.2.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/openpyxl/openpyxl-1.6.2.ebuild?rev=1.4&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/openpyxl/openpyxl-1.6.2.ebuild?rev=1.4&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/openpyxl/openpyxl-1.6.2.ebuild?r1=1.3&r2=1.4 Index: openpyxl-1.6.2.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/openpyxl/openpyxl-1.6.2.ebuild,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- openpyxl-1.6.2.ebuild 21 Jun 2014 15:27:44 -0000 1.3 +++ openpyxl-1.6.2.ebuild 26 Jun 2014 11:40:10 -0000 1.4 @@ -1,10 +1,10 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/openpyxl/openpyxl-1.6.2.ebuild,v 1.3 2014/06/21 15:27:44 idella4 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/openpyxl/openpyxl-1.6.2.ebuild,v 1.4 2014/06/26 11:40:10 idella4 Exp $ EAPI=5 -PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} ) +PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} pypy ) inherit distutils-r1 vcs-snapshot 1.6 dev-python/openpyxl/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/openpyxl/ChangeLog?rev=1.6&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/openpyxl/ChangeLog?rev=1.6&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/openpyxl/ChangeLog?r1=1.5&r2=1.6 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/openpyxl/ChangeLog,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- ChangeLog 21 Jun 2014 15:27:44 -0000 1.5 +++ ChangeLog 26 Jun 2014 11:40:10 -0000 1.6 @@ -1,6 +1,12 @@ # ChangeLog for dev-python/openpyxl # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/openpyxl/ChangeLog,v 1.5 2014/06/21 15:27:44 idella4 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/openpyxl/ChangeLog,v 1.6 2014/06/26 11:40:10 idella4 Exp $ + +*openpyxl-2.0.2 (26 Jun 2014) + + 26 Jun 2014; Ian Delaney <[email protected]> +openpyxl-2.0.2.ebuild, + openpyxl-1.6.2.ebuild: + major version bump; add pypy support, virtual re-write 21 Jun 2014; Ian Delaney <[email protected]> openpyxl-1.6.2.ebuild: drop py2.6 add py3.4 support, unrestrict test 1.1 dev-python/openpyxl/openpyxl-2.0.2.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/openpyxl/openpyxl-2.0.2.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/openpyxl/openpyxl-2.0.2.ebuild?rev=1.1&content-type=text/plain Index: openpyxl-2.0.2.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/openpyxl/openpyxl-2.0.2.ebuild,v 1.1 2014/06/26 11:40:10 idella4 Exp $ EAPI=5 PYTHON_COMPAT=( python{2_7,3_3,3_4} ) inherit distutils-r1 vcs-snapshot DESCRIPTION="Pure python reader and writer of Excel OpenXML files" HOMEPAGE="http://bitbucket.org/ericgazoni/openpyxl/wiki/Home" SRC_URI="https://bitbucket.org/ericgazoni/openpyxl/get/${PV}.tar.bz2 -> ${P}.tar.bz2" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" IUSE="doc test" RDEPEND="dev-python/jdcal[${PYTHON_USEDEP}]" DEPEND="test? ( ${RDEPEND} dev-python/pytest[${PYTHON_USEDEP}] dev-python/lxml[${PYTHON_USEDEP}] ) doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )" python_prepare_all(){ sed -e "s: 'sphinx.ext.intersphinx',::" \ -i doc/source/conf.py || die distutils-r1_python_prepare_all } python_compile_all() { use doc && emake -C doc html } python_test() { py.test || die "Testing failed with ${EPYTHON}" } python_install_all() { use doc && local HTML_DOCS=( doc/build/html/. ) distutils-r1_python_install_all }
