diff options
author | Arthur Zamarin <arthurzam@gentoo.org> | 2021-09-13 21:42:14 +0300 |
---|---|---|
committer | Arthur Zamarin <arthurzam@gentoo.org> | 2021-09-13 21:42:14 +0300 |
commit | dd6cd3656803e69026ac71052126b804d1ba3903 (patch) | |
tree | 33c1ed35d73a8a4498f291ecdea98cba5795be52 /dev-python/openpyxl | |
parent | dev-python/vecrec: enable py3.10 (diff) | |
download | gentoo-dd6cd3656803e69026ac71052126b804d1ba3903.tar.gz gentoo-dd6cd3656803e69026ac71052126b804d1ba3903.tar.bz2 gentoo-dd6cd3656803e69026ac71052126b804d1ba3903.zip |
dev-python/openpyxl: add 3.0.8
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'dev-python/openpyxl')
-rw-r--r-- | dev-python/openpyxl/Manifest | 1 | ||||
-rw-r--r-- | dev-python/openpyxl/openpyxl-3.0.8.ebuild | 29 |
2 files changed, 30 insertions, 0 deletions
diff --git a/dev-python/openpyxl/Manifest b/dev-python/openpyxl/Manifest index d0fd254c3098..2cb6f36ca3ba 100644 --- a/dev-python/openpyxl/Manifest +++ b/dev-python/openpyxl/Manifest @@ -1 +1,2 @@ DIST openpyxl-3.0.7.tar.bz2 2426608 BLAKE2B 5ce0a34ea4ec8f33da2224555f3d681c4cfa2145f4cba10ed182044e6a6d69ce61c500c51a26db7ded2a3a0e778d0d8e2bd996c3852732f565501f233b145db7 SHA512 bd697c353d0a9fe66a7947dc0f51530b8419e39b36833e5322cca544fafcbd6aba36e42e53c1a1672f44b3940de9b91417bc58955c87257b7b82782c480ef738 +DIST openpyxl-3.0.8.tar.bz2 2514689 BLAKE2B a640104c4afcafa5dad8615986a0d3acdac563c60c0ae4b6301978f2257dfbf64eb9413cfdea690600d6c267cc104e3667f51e1ebb23a2c8e74908c1aaeb62ed SHA512 921ee6e37a7242bf807cda3a86ba224edc80c64623b6cf0d3f344217485b53bcddbdd2a81a35bd8e80fe0dc9637d6c08988c191fb4a905287a8af340b97fadf3 diff --git a/dev-python/openpyxl/openpyxl-3.0.8.ebuild b/dev-python/openpyxl/openpyxl-3.0.8.ebuild new file mode 100644 index 000000000000..23c8e219fb65 --- /dev/null +++ b/dev-python/openpyxl/openpyxl-3.0.8.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 + +DESCRIPTION="Pure python reader and writer of Excel OpenXML files" +HOMEPAGE="https://openpyxl.readthedocs.io/en/stable/" +# Upstream doesn't want to include tests in PyPI tarballs +SRC_URI="https://foss.heptapod.net/openpyxl/openpyxl/-/archive/${PV}/${P}.tar.bz2" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~s390 ~x86" + +RDEPEND=" + dev-python/et_xmlfile[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + dev-python/lxml[${PYTHON_USEDEP}] + dev-python/pillow[${PYTHON_USEDEP},tiff,jpeg] + )" + +distutils_enable_sphinx doc +distutils_enable_tests pytest |