Install this version:
emerge -a =dev-python/pyexcel-ezodf-0.3.4-r4
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =dev-python/pyexcel-ezodf-0.3.4-r4
Or alternatively:
emerge --autounmask-write -a =dev-python/pyexcel-ezodf-0.3.4-r4
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 0.3.4-r4 | 8 | ~amd64 | 0 |
# Copyright 2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..14})
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1
DESCRIPTION="Library to manipulate OpenDocument files (pyexcel version)"
HOMEPAGE="https://github.com/pyexcel/pyexcel-ezodf"
SRC_URI="https://github.com/pyexcel/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
DEPEND="dev-python/lxml"
RDEPEND="${DEPEND}"
DOCS=( README.rst CHANGELOG.rst CONTRIBUTORS.rst docs/ )
distutils_enable_tests unittest
src_prepare() {
eapply "${FILESDIR}"/${PF}-fix_SyntaxWarning.patch
eapply_user
}
src_install() {
distutils-r1_src_install
}