diff options
Diffstat (limited to 'dev-python/xlrd')
-rw-r--r-- | dev-python/xlrd/Manifest | 6 | ||||
-rw-r--r-- | dev-python/xlrd/files/xlrd-0.9.3-column.patch | 59 | ||||
-rw-r--r-- | dev-python/xlrd/metadata.xml | 14 | ||||
-rw-r--r-- | dev-python/xlrd/xlrd-0.9.4.ebuild | 32 | ||||
-rw-r--r-- | dev-python/xlrd/xlrd-1.0.0.ebuild | 27 |
5 files changed, 138 insertions, 0 deletions
diff --git a/dev-python/xlrd/Manifest b/dev-python/xlrd/Manifest new file mode 100644 index 000000000000..92251c5db06c --- /dev/null +++ b/dev-python/xlrd/Manifest @@ -0,0 +1,6 @@ +AUX xlrd-0.9.3-column.patch 2424 BLAKE2B 91f0870dd89b2a81519d35ac0e0615c04d969f2f2d586fd9077e273fc61ff5341679304ac931585193cc426c5f8c7535b99a168d6d3cfd6c8368e3e638d1970c SHA512 1d28f32101499dc9e22912aa92a0450e638c9d708bf42a93f10f7f07a7535532b61eb1028fc335a1c84e92608cbaefa6c1e042f70a005cdb0dc73392315d52f8 +DIST xlrd-0.9.4.tar.gz 322945 BLAKE2B cdeac4ab7c68e14d564fdd6f1da35e09a6c3a070af1111bb33e7533bdc534e05ddcb59384a72cdcbad452b26e35529431f50c2511e68422aa53f7133cfcf6141 SHA512 61d21a6b0bf5a72f75b98f6a62245fd2d0d8b091b56f31cd39e83ff0d68edba5370f81b50020f6ac52d08b0b49c0920bf44661d8501ecbde5baee7d991037a6d +DIST xlrd-1.0.0.tar.gz 2563654 BLAKE2B fc20293adc7789088a15dff6322f7bb5ab53dfdf444a97096b321aec23ce1008e4a4ba7beb5d4f16c026a9c976cc1ae1d1f6b8b46a5559102417800ba76fb450 SHA512 a9ab8f18d09827f68584bdaa3cc6651302c6d420afb3cd588d21d5f3e7fa1b4c9e5bb31661111b3bd14ed17d69f563dc515859e2aacef63aefdca3b6d98d274e +EBUILD xlrd-0.9.4.ebuild 848 BLAKE2B cdde59ca2375f110384e11d064667cdc2dbcef381f8a1216a036506eb155ffacb216c32ac72dc3a4feca3d8ed458afd186e5c4ce0164f98d719c254aa76f4510 SHA512 8ba617f88491b76d28e9d0c83b6a4ef5ec7985b0b562238c8c09990a76c047235b995b84336a1b42e6b96aeab2d7d8dcf4e10625b97dc9c79b04cc67aeda093b +EBUILD xlrd-1.0.0.ebuild 731 BLAKE2B 6912d5f6a1a35e81b05bb33248cc784811010a13cfed24592f4940e9c71b7c5b3ac8f8a0cda58bfc82d482453b2f87b24eb55831388f81de9d093b8275333f05 SHA512 e17847bac5919679ca5adacb58659dd2d788c3b5dc22a44ed3e55367b5539cd4b9570d37119942f2e6230a02ff57650a3c16df300bb6f0cb101a0bc09d6095a1 +MISC metadata.xml 551 BLAKE2B 5c29003f7780590817cba46e664cc2475a7b00dff75dddcfb492928bfb8dfe1b3dbfe666beb9a159c3734f7c918e7115f95c79c530bd7b0abbf06a068f0a7411 SHA512 2b3c90ab71ffcca19fd58fb7b6ac173f149497e00a31a8e6c3ed14f512d34c990904f40e2828ddf9babb448094e026ed70c4afb3e76bbb9585c9e4b4b597149e diff --git a/dev-python/xlrd/files/xlrd-0.9.3-column.patch b/dev-python/xlrd/files/xlrd-0.9.3-column.patch new file mode 100644 index 000000000000..0a9c2749d87c --- /dev/null +++ b/dev-python/xlrd/files/xlrd-0.9.3-column.patch @@ -0,0 +1,59 @@ +From 6c2c1057d2780c079218fe988d1d5243eefec159 Mon Sep 17 00:00:00 2001 +From: Konstantin Lopuhin <kostia.lopuhin@gmail.com> +Date: Wed, 18 Jun 2014 12:43:04 +0400 +Subject: [PATCH] fix parsing of bad dimensions + +--- + xlrd/xlsx.py | 24 ++++++++++++++++++------ + 1 file changed, 18 insertions(+), 6 deletions(-) + +diff --git a/xlrd/xlsx.py b/xlrd/xlsx.py +index 53fbb89..763df0c 100644 +--- a/xlrd/xlsx.py ++++ b/xlrd/xlsx.py +@@ -73,7 +73,8 @@ def augment_keys(adict, uri): + _UPPERCASE_1_REL_INDEX[_x] = 0
+ del _x
+
+-def cell_name_to_rowx_colx(cell_name, letter_value=_UPPERCASE_1_REL_INDEX):
++def cell_name_to_rowx_colx(cell_name, letter_value=_UPPERCASE_1_REL_INDEX,
++ allow_no_col=False):
+ # Extract column index from cell name
+ # A<row number> => 0, Z =>25, AA => 26, XFD => 16383
+ colx = 0
+@@ -85,9 +86,18 @@ def cell_name_to_rowx_colx(cell_name, letter_value=_UPPERCASE_1_REL_INDEX): + if lv:
+ colx = colx * 26 + lv
+ else: # start of row number; can't be '0'
+- colx = colx - 1
+- assert 0 <= colx < X12_MAX_COLS
+- break
++ if charx == 0:
++ # there was no col marker
++ if allow_no_col:
++ colx = None
++ break
++ else:
++ raise Exception(
++ 'Missing col in cell name %r', cell_name)
++ else:
++ colx = colx - 1
++ assert 0 <= colx < X12_MAX_COLS
++ break
+ except KeyError:
+ raise Exception('Unexpected character %r in cell name %r' % (c, cell_name))
+ rowx = int(cell_name[charx:]) - 1
+@@ -562,9 +572,11 @@ def do_dimension(self, elem): + if ref:
+ # print >> self.logfile, "dimension: ref=%r" % ref
+ last_cell_ref = ref.split(':')[-1] # example: "Z99"
+- rowx, colx = cell_name_to_rowx_colx(last_cell_ref)
++ rowx, colx = cell_name_to_rowx_colx(
++ last_cell_ref, allow_no_col=True)
+ self.sheet._dimnrows = rowx + 1
+- self.sheet._dimncols = colx + 1
++ if colx is not None:
++ self.sheet._dimncols = colx + 1
+
+ def do_merge_cell(self, elem):
+ # The ref attribute should be a cell range like "B1:D5".
diff --git a/dev-python/xlrd/metadata.xml b/dev-python/xlrd/metadata.xml new file mode 100644 index 000000000000..f9f24c71afaf --- /dev/null +++ b/dev-python/xlrd/metadata.xml @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="project"> + <email>python@gentoo.org</email> + <name>Python</name> + </maintainer> + <longdescription lang="en">Extract data from new and old Excel spreadsheets on any platform. Pure + Python (2.1 to 2.6). Strong support for Excel dates. Unicode-aware.</longdescription> + <upstream> + <remote-id type="pypi">xlrd</remote-id> + <remote-id type="github">python-excel/xlrd</remote-id> + </upstream> +</pkgmetadata> diff --git a/dev-python/xlrd/xlrd-0.9.4.ebuild b/dev-python/xlrd/xlrd-0.9.4.ebuild new file mode 100644 index 000000000000..514b1feed376 --- /dev/null +++ b/dev-python/xlrd/xlrd-0.9.4.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=5 + +PYTHON_COMPAT=( python2_7 python3_{4,5,6} 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 ~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris" +IUSE="" + +PATCHES=( "${FILESDIR}"/${PN}-0.9.3-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}" +} diff --git a/dev-python/xlrd/xlrd-1.0.0.ebuild b/dev-python/xlrd/xlrd-1.0.0.ebuild new file mode 100644 index 000000000000..ee838c75be3a --- /dev/null +++ b/dev-python/xlrd/xlrd-1.0.0.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy ) + +inherit distutils-r1 + +DESCRIPTION="Library to extract data from Microsoft Excel spreadsheets" +HOMEPAGE="http://www.python-excel.org/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris" +IUSE="" + +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}" +} |