diff --git a/dev-python/pycotap/Manifest b/dev-python/pycotap/Manifest new file mode 100644 index 000000000..65456091e --- /dev/null +++ b/dev-python/pycotap/Manifest @@ -0,0 +1 @@ +DIST pycotap-1.3.1.tar.gz 7534 BLAKE2B 1566179908dc6fb318632a3e76193b86ec08a560040e1f241195796d0ec3c63a84330be90c05deaff001cb64bc4b5c82e0f1124db442fb0f1982323d21d183f0 SHA512 e7d50340fb4e3f55037a96aaaba419e6753d4499564339b6562317455ed223c3fd93bf41d0bd9654c03a4bea09377daa192ca985bafc96983e4a2261dde348b8 diff --git a/dev-python/pycotap/pycotap-1.3.1.ebuild b/dev-python/pycotap/pycotap-1.3.1.ebuild new file mode 100644 index 000000000..b316b73e6 --- /dev/null +++ b/dev-python/pycotap/pycotap-1.3.1.ebuild @@ -0,0 +1,23 @@ +# Distributed under the terms of the GNU General Public License v2 +# Autogen by MARK Devkit + +EAPI=7 + +PYTHON_COMPAT=( python3+ ) +DISTUTILS_USE_PEP517="setuptools" +inherit distutils-r1 + +DESCRIPTION="A tiny test runner that outputs TAP results to standard output." +HOMEPAGE="https://github.com/remko/pycotap" +SRC_URI="https://files.pythonhosted.org/packages/c9/18/b7a446204fbb25327081bba2f3d6fdcd4df848c034f8f404c5b36e0d9ef6/pycotap-1.3.1.tar.gz -> pycotap-1.3.1.tar.gz +" +SLOT="0" +LICENSE="MIT" +KEYWORDS="*" +S="${WORKDIR}/pycotap-1.3.1" + +src_prepare() { + distutils-r1_src_prepare + sed -i -e "/data_files =/d" setup.py || die +} +