Files
guru/dev-python/doxypypy/doxypypy-0.8.8.6_p20210405.ebuild
Theo Anderson 0ba9609557 dev-python/doxypypy: add 0.8.8.6_p20210405
added for python38+ compatability before python37 target removal
changes since last release break compatability with python37

Signed-off-by: Theo Anderson <telans@posteo.de>
2021-04-17 20:18:48 +12:00

37 lines
984 B
Bash

# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DISTUTILS_USE_SETUPTOOLS=rdepend
PYTHON_COMPAT=( python3_{8..9} )
inherit distutils-r1
MY_REV=39115c3d061d2f83e4a030bcb8642ec6f3203e61
DESCRIPTION="A more Pythonic version of doxypy, a Doxygen filter for Python"
HOMEPAGE="https://github.com/Feneric/doxypypy"
SRC_URI="https://github.com/Feneric/doxypypy/archive/${MY_REV}.tar.gz -> ${P}.tar.gz"
RESTRICT="!test? ( test )"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="dev-python/chardet[${PYTHON_USEDEP}]"
DEPEND="test? ( dev-python/zope-interface[${PYTHON_USEDEP}] )"
S="${WORKDIR}/${PN}-${MY_REV}"
distutils_enable_tests unittest
src_prepare() {
distutils-r1_src_prepare
# These files fail to byte-compille (UTF-LE?)
# ValueError: source code string cannot contain null bytes
# Matches pypy tarball
rm doxypypy/test/sample_utf* || die
sed -i '/test_utf/,+5d' doxypypy/test/test_doxypypy.py || die
}