commit: c116a47bcc808291ecffbd18a3efeda823af69ae
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 2 23:10:00 2021 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Jan 2 23:18:04 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c116a47b
dev-python/wcmatch: Add python@ as backup
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/wcmatch/metadata.xml | 3 +++
dev-python/wcmatch/wcmatch-7.2.ebuild | 7 ++++++-
2 files changed, 9 insertions(+), 1 deletion(-)
diff --git a/dev-python/wcmatch/metadata.xml b/dev-python/wcmatch/metadata.xml
index a6af55c3882..5e9ad1b8133 100644
--- a/dev-python/wcmatch/metadata.xml
+++ b/dev-python/wcmatch/metadata.xml
@@ -14,6 +14,9 @@
<email>[email protected]</email>
<name>Proxy Maintainers</name>
</maintainer>
+ <maintainer type="project">
+ <email>[email protected]</email>
+ </maintainer>
<upstream>
<remote-id type="github">facelessuser/wcmatch</remote-id>
<remote-id type="pypi">wcmatch</remote-id>
diff --git a/dev-python/wcmatch/wcmatch-7.2.ebuild
b/dev-python/wcmatch/wcmatch-7.2.ebuild
index 4ab18a52134..fdc416d5245 100644
--- a/dev-python/wcmatch/wcmatch-7.2.ebuild
+++ b/dev-python/wcmatch/wcmatch-7.2.ebuild
@@ -39,10 +39,15 @@ BDEPEND="test? (
distutils_enable_tests pytest
python_prepare_all() {
- # no such file or dir ~homedir
+ # this test makes a really wrong assumption that basename of $HOME
+ # will be a username
sed -i -e 's:test_tilde_user:_&:' \
tests/test_glob.py || die
+ # tests require some files in homedir
+ > "${HOME}"/test1.txt || die
+ > "${HOME}"/test2.txt || die
+
# mkdocs-git-revision-date-localized-plugin needs git repo
if use doc; then
git init || die