commit: c1c9bbfa8de14612b05534eb862e02df8b2d6abe
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 14 06:35:22 2021 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Jun 14 06:51:04 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1c9bbfa
dev-python/vdirsyncer: Add python@ as co-maint.
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/vdirsyncer/metadata.xml | 4 ++++
dev-python/vdirsyncer/vdirsyncer-0.18.0.ebuild | 12 ++++++++----
2 files changed, 12 insertions(+), 4 deletions(-)
diff --git a/dev-python/vdirsyncer/metadata.xml
b/dev-python/vdirsyncer/metadata.xml
index 06fce01547f..f42dda4bb8a 100644
--- a/dev-python/vdirsyncer/metadata.xml
+++ b/dev-python/vdirsyncer/metadata.xml
@@ -4,6 +4,10 @@
<maintainer type="person">
<email>[email protected]</email>
</maintainer>
+ <maintainer type="project">
+ <email>[email protected]</email>
+ <name>Python</name>
+ </maintainer>
<upstream>
<remote-id type="github">pimutils/vdirsyncer</remote-id>
<remote-id type="pypi">vdirsyncer</remote-id>
diff --git a/dev-python/vdirsyncer/vdirsyncer-0.18.0.ebuild
b/dev-python/vdirsyncer/vdirsyncer-0.18.0.ebuild
index 05fd220b6b8..d902fe2f289 100644
--- a/dev-python/vdirsyncer/vdirsyncer-0.18.0.ebuild
+++ b/dev-python/vdirsyncer/vdirsyncer-0.18.0.ebuild
@@ -5,7 +5,6 @@ EAPI="7"
PYTHON_COMPAT=( python3_{8..9} )
PYTHON_REQ_USE="sqlite"
-DISTUTILS_USE_SETUPTOOLS=rdepend
inherit distutils-r1
@@ -17,8 +16,6 @@ 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}]
@@ -45,5 +42,12 @@ python_test() {
# pytest dies hard if the envvars do not have any value...
local -x CI=false
local -x DETERMINISTIC_TESTS=false
- epytest
+
+ local deselect=(
+ # test CA is too weak for modern python
+ tests/system/utils/test_main.py::test_request_ssl
+ tests/system/utils/test_main.py::test_request_ssl_fingerprints
+ )
+
+ epytest ${deselect[@]/#/--deselect }
}