commit: 16fca7babc129a0ff88f7d7ea0b26c80a22f0487
Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Mon Dec 7 11:48:23 2020 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Mon Dec 7 11:48:23 2020 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=16fca7ba
dev-python/wcmatch: version bump
Package-Manager: Portage-3.0.11, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
dev-python/wcmatch/Manifest | 2 +-
.../{wcmatch-6.0.1.ebuild => wcmatch-7.1.ebuild} | 23 +++++++++++-----------
2 files changed, 13 insertions(+), 12 deletions(-)
diff --git a/dev-python/wcmatch/Manifest b/dev-python/wcmatch/Manifest
index d4809995..eb561b1f 100644
--- a/dev-python/wcmatch/Manifest
+++ b/dev-python/wcmatch/Manifest
@@ -1 +1 @@
-DIST wcmatch-6.0.1.tar.gz 89466 BLAKE2B
ccbc397c0c67f6eba55875ba540aa2705f12808e2eb1e57417beed44fc5ee5234023de439d30f966c158d263154bdd3882ce361b77aab12f1365d172f425ad11
SHA512
aec942c1754103d9938189dbb8ea8b62d8621137b8b51e48095fa4d313cfa120764414345aa3b5d263e2fd29219bf7bd1fa1d238f16521421761853d43596bbc
+DIST wcmatch-7.1.tar.gz 105744 BLAKE2B
0add1c68025c92ac57d6ea64d82bddb20bace60de5d319fb16e16802f208d788d876695bfcd186b80630039f544565c631d36e1c7327dee5d8c799eff8c80ce2
SHA512
79d62d85f13d245e38d0fe92a275e24058b86af8aaf9a926bfd950dad4ec47e40e763c18b08d3eb4ddd925832ae9910f13407094070442b41dbe2fe4ad11fb39
diff --git a/dev-python/wcmatch/wcmatch-6.0.1.ebuild
b/dev-python/wcmatch/wcmatch-7.1.ebuild
similarity index 67%
rename from dev-python/wcmatch/wcmatch-6.0.1.ebuild
rename to dev-python/wcmatch/wcmatch-7.1.ebuild
index d1a9f2a3..ef181cb4 100644
--- a/dev-python/wcmatch/wcmatch-6.0.1.ebuild
+++ b/dev-python/wcmatch/wcmatch-7.1.ebuild
@@ -7,8 +7,10 @@ PYTHON_COMPAT=( python3_{7,8} )
DOCS_BUILDER="mkdocs"
DOCS_DEPEND="
- ~dev-python/mkdocs-material-5.0.0_rc2
- dev-python/mkdocs_pymdownx_material_extras
+ ~dev-python/mkdocs_pymdownx_material_extras-1.0.7
+ dev-python/mkdocs-material
+ dev-python/mkdocs-git-revision-date-localized-plugin
+ dev-python/mkdocs-minify-plugin
dev-python/pyspelling
"
@@ -40,15 +42,14 @@ python_prepare_all() {
sed -i -e 's:test_tilde_user:_&:' \
tests/test_glob.py || die
- # AssertionError: 0 == 0
- sed -i -e 's:test_tilde_globmatch_no_realpath:_&:' \
- -e 's:test_tilde_globmatch_no_tilde:_&:' \
- tests/test_globmatch.py || die
-
- # git revision data plugin needs git repo to build
- # do not depend on this
- sed -i -e '/git-revision-date-localized/d' \
- mkdocs.yml || die
+ # mkdocs-git-revision-date-localized-plugin needs git repo
+ if use doc; then
+ git init
+ git config --global user.email "[email protected]" || die
+ git config --global user.name "Your Name" || die
+ git add .
+ git commit -m 'init'
+ fi
distutils-r1_python_prepare_all
}