mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-13 00:53:02 -04:00
will make a PR for that in a bit Package-Manager: Portage-2.3.96, Repoman-2.3.22 Signed-off-by: Andrew Ammerlaan <andrewammerlaan@riseup.net>
58 lines
1.2 KiB
Bash
58 lines
1.2 KiB
Bash
# Copyright 1999-2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
PYTHON_COMPAT=( python3_{6,7,8} )
|
|
|
|
inherit distutils-r1
|
|
|
|
DESCRIPTION="Wildcard/glob file name matcher"
|
|
HOMEPAGE="
|
|
https://github.com/facelessuser/wcmatch
|
|
https://pypi.org/project/wcmatch"
|
|
SRC_URI="https://github.com/facelessuser/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
#IUSE="doc"
|
|
|
|
# Need mkdocs-1.1 for this
|
|
#BDEPEND="
|
|
# doc? (
|
|
# dev-python/mkdocs-git-revision-date-localized-plugin
|
|
# dev-python/mkdocs_pymdownx_material_extras
|
|
# dev-python/pyspelling
|
|
# )
|
|
#"
|
|
|
|
RDEPEND="
|
|
>=dev-python/backrefs-4.1[${PYTHON_USEDEP}]
|
|
>=dev-python/bracex-2.0[${PYTHON_USEDEP}]
|
|
"
|
|
|
|
distutils_enable_tests pytest
|
|
|
|
python_prepare_all() {
|
|
# no such file or dir ~homedir
|
|
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
|
|
|
|
distutils-r1_python_prepare_all
|
|
}
|
|
|
|
#python_compile_all() {
|
|
# default
|
|
# if use doc; then
|
|
# mkdocs build || die "failed to make docs"
|
|
# HTML_DOCS="site"
|
|
# fi
|
|
#}
|