diff --git a/dev-python/wcmatch/Manifest b/dev-python/wcmatch/Manifest index d4809995dd..eb561b1f95 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 d1a9f2a3ea..ef181cb493 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 "you@example.com" || die + git config --global user.name "Your Name" || die + git add . + git commit -m 'init' + fi distutils-r1_python_prepare_all }