diff options
author | Nils Freydank <holgersson@posteo.de> | 2021-06-03 00:13:14 +0200 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-06-02 21:52:06 +0000 |
commit | 87f39ccd5088ccfdbf8979e6208996317c6276c5 (patch) | |
tree | cb3837c67d228c0e102990d24beb7a2edcbd4ead /dev-python/vdirsyncer | |
parent | x11-apps/igt-gpu-tools: subscribe to sci-libs/gsl subslot (diff) | |
download | gentoo-87f39ccd5088ccfdbf8979e6208996317c6276c5.tar.gz gentoo-87f39ccd5088ccfdbf8979e6208996317c6276c5.tar.bz2 gentoo-87f39ccd5088ccfdbf8979e6208996317c6276c5.zip |
dev-python/vdirsyncer: Fix my broken python3.9 bump
In commit d4b3d02583d2600c506bb602994f8d74ab66fe51 I forgot to replace
the now-deprecated 'getiterator', so with python3.9 syncs aborted with
the following message:
'xml.etree.ElementTree.Element' object has no attribute 'getiterator'.
There is a trivial fix which is also mentioned upstream:
https://github.com/pimutils/vdirsyncer/issues/880
Package-Manager: Portage-3.0.19, Repoman-3.0.3
Signed-off-by: Nils Freydank <holgersson@posteo.de>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-python/vdirsyncer')
-rw-r--r-- | dev-python/vdirsyncer/vdirsyncer-0.16.8-r1.ebuild | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/dev-python/vdirsyncer/vdirsyncer-0.16.8-r1.ebuild b/dev-python/vdirsyncer/vdirsyncer-0.16.8-r1.ebuild new file mode 100644 index 000000000000..8888f31e1aa8 --- /dev/null +++ b/dev-python/vdirsyncer/vdirsyncer-0.16.8-r1.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +PYTHON_COMPAT=( python3_{7..9} ) +PYTHON_REQ_USE="sqlite" +DISTUTILS_USE_SETUPTOOLS=rdepend + +inherit distutils-r1 + +DESCRIPTION="Synchronize calendars and contacts" +HOMEPAGE="https://github.com/pimutils/vdirsyncer" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" +SLOT="0" + +PATCHES=( "${FILESDIR}/${PN}-0.16.8-click-7-compat.patch" ) + +RDEPEND="dev-python/click[${PYTHON_USEDEP}] + >=dev-python/click-log-0.3.0[${PYTHON_USEDEP}] + <dev-python/click-log-0.4.0[${PYTHON_USEDEP}] + dev-python/click-threading[${PYTHON_USEDEP}] + dev-python/requests[${PYTHON_USEDEP}] + dev-python/requests-toolbelt[${PYTHON_USEDEP}] + dev-python/atomicwrites[${PYTHON_USEDEP}]" +BDEPEND="${RDEPEND} + dev-python/setuptools_scm[${PYTHON_USEDEP}] + test? ( + dev-python/hypothesis[${PYTHON_USEDEP}] + dev-python/pytest-localserver[${PYTHON_USEDEP}] + dev-python/pytest-subtesthack[${PYTHON_USEDEP}] + )" + +DOCS=( AUTHORS.rst CHANGELOG.rst CONTRIBUTING.rst README.rst config.example ) + +distutils_enable_tests pytest + +src_prepare() { + default + + # Replace getiterator with iter for python3.9. + # See https://github.com/pimutils/vdirsyncer/issues/880. + sed -i "s/rv.extend(item.getiterator())/rv.extend(iter(item))/" \ + vdirsyncer/storage/dav.py || die +} + +python_test() { + # skip tests needing servers running + local -x DAV_SERVER=skip + local -x REMOTESTORAGE_SERVER=skip + # pytest dies hard if the envvars do not have any value... + local -x CI=false + local -x DETERMINISTIC_TESTS=false + pytest -vv || die "Tests fail with ${EPYTHON}" +} |