jlec 15/06/22 12:56:52 Modified: ChangeLog Added: xlrd-0.9.3-r1.ebuild Log: Fix reading of LO/OO stored files (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key E9402A79B03529A2!)
Revision Changes Path 1.31 dev-python/xlrd/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/xlrd/ChangeLog?rev=1.31&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/xlrd/ChangeLog?rev=1.31&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/xlrd/ChangeLog?r1=1.30&r2=1.31 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/xlrd/ChangeLog,v retrieving revision 1.30 retrieving revision 1.31 diff -u -r1.30 -r1.31 --- ChangeLog 7 Jun 2015 16:35:08 -0000 1.30 +++ ChangeLog 22 Jun 2015 12:56:52 -0000 1.31 @@ -1,6 +1,12 @@ # ChangeLog for dev-python/xlrd # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/xlrd/ChangeLog,v 1.30 2015/06/07 16:35:08 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/xlrd/ChangeLog,v 1.31 2015/06/22 12:56:52 jlec Exp $ + +*xlrd-0.9.3-r1 (22 Jun 2015) + + 22 Jun 2015; Justin Lecher <[email protected]> +files/xlrd-0.9.3-column.patch, + +xlrd-0.9.3-r1.ebuild: + Fix reading of LO/OO stored files 07 Jun 2015; Justin Lecher <[email protected]> metadata.xml: Add github to remote-id in metadata.xml 1.1 dev-python/xlrd/xlrd-0.9.3-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/xlrd/xlrd-0.9.3-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/xlrd/xlrd-0.9.3-r1.ebuild?rev=1.1&content-type=text/plain Index: xlrd-0.9.3-r1.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/xlrd/xlrd-0.9.3-r1.ebuild,v 1.1 2015/06/22 12:56:52 jlec Exp $ EAPI="5" PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy ) inherit distutils-r1 DESCRIPTION="Library for developers to extract data from Microsoft Excel (tm) spreadsheet files" HOMEPAGE="http://www.python-excel.org/ https://github.com/python-excel/xlrd/" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~x86 ~ppc-aix ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris" PATCHES=( "${FILESDIR}"/${P}-column.patch ) python_prepare_all() { # Remove this if examples get reintroduced sed -i -e "s/test_names_demo/_&/" tests/test_open_workbook.py || die distutils-r1_python_prepare_all } python_test() { "${PYTHON}" -m unittest discover || die "Test failed with ${EPYTHON}" }
