diff options
| author | Palica <palica+gitlab@liguros.net> | 2020-06-23 22:35:08 +0200 |
|---|---|---|
| committer | Palica <palica+gitlab@liguros.net> | 2020-06-23 22:35:08 +0200 |
| commit | ecdac123787b96ce6649f0f91da12ea6458cc2b1 (patch) | |
| tree | b89c74d9e6fe6e8aebc4c77bcbeb4ab73214127d /dev-python/coverage | |
| parent | 1be72aa41cf41dedadeecf59dca9f01de6381f5e (diff) | |
| download | baldeagleos-repo-ecdac123787b96ce6649f0f91da12ea6458cc2b1.tar.gz baldeagleos-repo-ecdac123787b96ce6649f0f91da12ea6458cc2b1.tar.xz baldeagleos-repo-ecdac123787b96ce6649f0f91da12ea6458cc2b1.zip | |
Updating liguros repo
Diffstat (limited to 'dev-python/coverage')
| -rw-r--r-- | dev-python/coverage/Manifest | 4 | ||||
| -rw-r--r-- | dev-python/coverage/coverage-4.5.2.ebuild | 44 | ||||
| -rw-r--r-- | dev-python/coverage/coverage-4.5.4.ebuild | 72 | ||||
| -rw-r--r-- | dev-python/coverage/coverage-5.0.3.ebuild | 68 | ||||
| -rw-r--r-- | dev-python/coverage/coverage-5.1.ebuild | 69 | ||||
| -rw-r--r-- | dev-python/coverage/files/coverage-4.5.4-tests.patch | 124 | ||||
| -rw-r--r-- | dev-python/coverage/metadata.xml | 20 |
7 files changed, 401 insertions, 0 deletions
diff --git a/dev-python/coverage/Manifest b/dev-python/coverage/Manifest new file mode 100644 index 000000000000..38894af7959a --- /dev/null +++ b/dev-python/coverage/Manifest @@ -0,0 +1,4 @@ +DIST coverage-4.5.2.tar.gz 384845 BLAKE2B a7b4f249a68e025449d26ef8ee2194b9ce355c979d1f5192a7863a0ab0089f9deb3a8e63a39bef528ed7c58fbcc7cd4bc193fea3a135f5996a6655268a6b7a93 SHA512 0d98c8118648a319ac6f3b4c4c6f1ff8a92085bbe8276dd5504c8df4638933f920d7382d8e6de8e16bff43b62091310e0eab7b7722c6d28c976baedbfae3d03e +DIST coverage-4.5.4.tar.gz 385185 BLAKE2B 9d040bff13cebd1cb7147f15c3ec03bb08648cf801b5b2bb046a6b5bcadb3d3886be8bf0a624d225f25d10a5ca82fe5fb88f55e44e92a0a3285836b837972970 SHA512 ba534e04fe35cbadc4b16735f25c08f579a49a6677ec106680f222f2dfb3d0f1e011d0962f1c2108c375173ac4588bea1619ecda05ff9ba6fd888daddfd27b0e +DIST coverage-5.0.3.tar.gz 679171 BLAKE2B b87b256ecdae0b63ae08ed1aea9ff1f4177ec5da63c18615d66f207c3b7c71da4730432bfbdb66a8b55fa2056016226b09befdfc5d0fae57ccc56f08b2690b38 SHA512 51c648b4529cc84534865ee804bcd3dd35a6dcb23f20feb3c4702025b924de3a010fd8d08238eea926ae1874c5510ff006bc120e10d01db795ea0af6fb82834c +DIST coverage-5.1.tar.gz 687427 BLAKE2B f4eee548cd6fb58c4a527b9e0ac5ee4133c984358f42ca0c87301f95eb60253a2748ccf9d4e88358941d7897998e68e3c5e70e6dc7387bf5e60eda950f4a679c SHA512 7bd3ca158fe2eab1946c52161fb877623d4ed0382de193aa6eb267443fdda86089ec7aaae518115d6a3b5487fd1400320eb503b9afe83182fb3c3621ccbfb6d7 diff --git a/dev-python/coverage/coverage-4.5.2.ebuild b/dev-python/coverage/coverage-4.5.2.ebuild new file mode 100644 index 000000000000..dbdc4f892f0b --- /dev/null +++ b/dev-python/coverage/coverage-4.5.2.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python2_7 python3_{6,7} pypy3 ) +PYTHON_REQ_USE="threads(+)" + +inherit distutils-r1 + +DESCRIPTION="Code coverage measurement for Python" +HOMEPAGE="https://coverage.readthedocs.io/en/latest/ https://pypi.org/project/coverage/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND="" +DEPEND=" + >=dev-python/setuptools-18.4[${PYTHON_USEDEP}] + test? ( + dev-python/PyContracts[${PYTHON_USEDEP}] + dev-python/mock[${PYTHON_USEDEP}] + dev-python/nose[${PYTHON_USEDEP}] + ) +" + +python_compile() { + if [[ ${EPYTHON} == python2.7 ]]; then + local CFLAGS="${CFLAGS} -fno-strict-aliasing" + export CFLAGS + fi + + distutils-r1_python_compile +} + +python_test() { + cd "${BUILD_DIR}"/lib || die + [[ "${PYTHON}" =~ pypy ]] && export COVERAGE_NO_EXTENSION=no + ${PYTHON} "${S}"/igor.py test_with_tracer py || die + ${PYTHON} "${S}"/igor.py test_with_tracer c || die +} diff --git a/dev-python/coverage/coverage-4.5.4.ebuild b/dev-python/coverage/coverage-4.5.4.ebuild new file mode 100644 index 000000000000..b0bb45b31246 --- /dev/null +++ b/dev-python/coverage/coverage-4.5.4.ebuild @@ -0,0 +1,72 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python{2_7,3_{6,7,8,9}} pypy3 ) +PYTHON_REQ_USE="threads(+)" + +inherit distutils-r1 + +DESCRIPTION="Code coverage measurement for Python" +HOMEPAGE="https://coverage.readthedocs.io/en/latest/ https://pypi.org/project/coverage/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 sparc x86" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND="" +BDEPEND=" + >=dev-python/setuptools-18.4[${PYTHON_USEDEP}] + test? ( + dev-python/PyContracts[${PYTHON_USEDEP}] + dev-python/flaky[${PYTHON_USEDEP}] + dev-python/mock[${PYTHON_USEDEP}] + dev-python/pytest[${PYTHON_USEDEP}] + >=dev-python/unittest-mixins-1.4[${PYTHON_USEDEP}] + ) +" + +DISTUTILS_IN_SOURCE_BUILD=1 + +PATCHES=( + "${FILESDIR}/coverage-4.5.4-tests.patch" +) + +src_prepare() { + # avoid the dep on xdist, run tests verbosely + sed -i -e '/^addopts/s:-n3:-v:' setup.cfg || die + distutils-r1_src_prepare +} + +python_compile() { + if [[ ${EPYTHON} == python2.7 ]]; then + local CFLAGS="${CFLAGS} -fno-strict-aliasing" + export CFLAGS + fi + + distutils-r1_python_compile +} + +python_test() { + distutils_install_for_testing + local bindir=${TEST_DIR}/scripts + + pushd tests/eggsrc >/dev/null || die + distutils_install_for_testing + popd >/dev/null || die + + "${EPYTHON}" igor.py zip_mods || die + PATH="${bindir}:${PATH}" "${EPYTHON}" igor.py test_with_tracer py || die + + # No C extensions under pypy + if [[ ${EPYTHON} != pypy* ]]; then + cp -l -- "${TEST_DIR}"/lib/*/coverage/*.so coverage/ || die + PATH="${bindir}:${PATH}" "${EPYTHON}" igor.py test_with_tracer c || die + fi + + # clean up leftover "egg1" directory + rm -rf build/lib/egg1 || die +} diff --git a/dev-python/coverage/coverage-5.0.3.ebuild b/dev-python/coverage/coverage-5.0.3.ebuild new file mode 100644 index 000000000000..1598ce740058 --- /dev/null +++ b/dev-python/coverage/coverage-5.0.3.ebuild @@ -0,0 +1,68 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python3_{6,7,8} pypy3 ) +PYTHON_REQ_USE="threads(+),sqlite(+)" +DISTUTILS_USE_SETUPTOOLS=rdepend + +inherit distutils-r1 + +DESCRIPTION="Code coverage measurement for Python" +HOMEPAGE="https://coverage.readthedocs.io/en/latest/ https://pypi.org/project/coverage/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~mips ppc ppc64 sparc" +IUSE="test" +RESTRICT="!test? ( test )" + +BDEPEND=" + test? ( + dev-python/PyContracts[${PYTHON_USEDEP}] + dev-python/flaky[${PYTHON_USEDEP}] + dev-python/hypothesis[${PYTHON_USEDEP}] + dev-python/mock[${PYTHON_USEDEP}] + dev-python/pytest[${PYTHON_USEDEP}] + >=dev-python/unittest-mixins-1.4[${PYTHON_USEDEP}] + ) +" + +DISTUTILS_IN_SOURCE_BUILD=1 + +src_prepare() { + # avoid the dep on xdist, run tests verbosely + sed -i -e '/^addopts/s:-n3:-v:' setup.cfg || die + distutils-r1_src_prepare +} + +python_compile() { + if [[ ${EPYTHON} == python2.7 ]]; then + local CFLAGS="${CFLAGS} -fno-strict-aliasing" + export CFLAGS + fi + + distutils-r1_python_compile +} + +python_test() { + distutils_install_for_testing + local bindir=${TEST_DIR}/scripts + + pushd tests/eggsrc >/dev/null || die + distutils_install_for_testing + popd >/dev/null || die + + "${EPYTHON}" igor.py zip_mods || die + PATH="${bindir}:${PATH}" "${EPYTHON}" igor.py test_with_tracer py || die + + # No C extensions under pypy + if [[ ${EPYTHON} != pypy* ]]; then + cp -l -- "${TEST_DIR}"/lib/*/coverage/*.so coverage/ || die + PATH="${bindir}:${PATH}" "${EPYTHON}" igor.py test_with_tracer c || die + fi + + # clean up leftover "egg1" directory + rm -rf build/lib/egg1 || die +} diff --git a/dev-python/coverage/coverage-5.1.ebuild b/dev-python/coverage/coverage-5.1.ebuild new file mode 100644 index 000000000000..6813525e24e0 --- /dev/null +++ b/dev-python/coverage/coverage-5.1.ebuild @@ -0,0 +1,69 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python3_{6,7,8,9} pypy3 ) +PYTHON_REQ_USE="threads(+),sqlite(+)" +DISTUTILS_USE_SETUPTOOLS=rdepend + +inherit distutils-r1 + +DESCRIPTION="Code coverage measurement for Python" +HOMEPAGE="https://coverage.readthedocs.io/en/latest/ https://pypi.org/project/coverage/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" +#IUSE="test" +# The tests are impossible to appease. Please run them externally +# via tox. Or fix the ebuild if you have hours of time to spend +# on something utterly useless. +RESTRICT="test" + +#BDEPEND=" +# test? ( +# dev-python/PyContracts[${PYTHON_USEDEP}] +# dev-python/flaky[${PYTHON_USEDEP}] +# dev-python/hypothesis[${PYTHON_USEDEP}] +# dev-python/mock[${PYTHON_USEDEP}] +# dev-python/pytest[${PYTHON_USEDEP}] +# >=dev-python/unittest-mixins-1.4[${PYTHON_USEDEP}] +# ) +#" + +src_prepare() { + # avoid the dep on xdist, run tests verbosely + sed -i -e '/^addopts/s:-n3:-v:' setup.cfg || die + distutils-r1_src_prepare +} + +python_compile() { + if [[ ${EPYTHON} == python2.7 ]]; then + local CFLAGS="${CFLAGS} -fno-strict-aliasing" + export CFLAGS + fi + + distutils-r1_python_compile +} + +python_test() { + distutils_install_for_testing + local bindir=${TEST_DIR}/scripts + + pushd tests/eggsrc >/dev/null || die + distutils_install_for_testing + popd >/dev/null || die + + "${EPYTHON}" igor.py zip_mods || die + PATH="${bindir}:${PATH}" "${EPYTHON}" igor.py test_with_tracer py || die + + # No C extensions under pypy + if [[ ${EPYTHON} != pypy* ]]; then + cp -l -- "${TEST_DIR}"/lib/*/coverage/*.so coverage/ || die + PATH="${bindir}:${PATH}" "${EPYTHON}" igor.py test_with_tracer c || die + fi + + # clean up leftover "egg1" directory + rm -rf build/lib/egg1 || die +} diff --git a/dev-python/coverage/files/coverage-4.5.4-tests.patch b/dev-python/coverage/files/coverage-4.5.4-tests.patch new file mode 100644 index 000000000000..779102c8f658 --- /dev/null +++ b/dev-python/coverage/files/coverage-4.5.4-tests.patch @@ -0,0 +1,124 @@ +diff --git a/tests/farm/run/run_timid.py b/tests/farm/run/run_timid.py +index 0370cf84..4e3cf1ca 100644 +--- a/tests/farm/run/run_timid.py ++++ b/tests/farm/run/run_timid.py +@@ -38,6 +38,10 @@ if os.environ.get('COVERAGE_TEST_TRACER', 'c') == 'c': + else: + # If the Python trace function is being tested, then regular running will + # also show the Python function. +- contains("out_timid/showtraceout.txt", "regular PyTracer") ++ # ++ # tox.ini deletes compiled c modules to make this test work, not feasible ++ # to do this from the ebuild environment ++ #contains("out_timid/showtraceout.txt", "regular PyTracer") ++ pass + + clean("out_timid") +diff --git a/tests/test_concurrency.py b/tests/test_concurrency.py +index 578cc679..c875be86 100644 +--- a/tests/test_concurrency.py ++++ b/tests/test_concurrency.py +@@ -11,6 +11,7 @@ import time + + from flaky import flaky + ++import unittest + import coverage + from coverage import env + from coverage.backward import import_local_file +@@ -255,22 +256,27 @@ class ConcurrencyTest(CoverageTest): + code = SIMPLE.format(QLIMIT=self.QLIMIT) + self.try_some_code(code, "thread", threading) + ++ @unittest.skipIf(env.PY2, "eventlet tests don't work with python tracer on python2") + def test_eventlet(self): + code = (EVENTLET + SUM_RANGE_Q + PRINT_SUM_RANGE).format(QLIMIT=self.QLIMIT) + self.try_some_code(code, "eventlet", eventlet) + ++ @unittest.skipIf(env.PY2, "eventlet tests don't work with python tracer on python2") + def test_eventlet_simple_code(self): + code = SIMPLE.format(QLIMIT=self.QLIMIT) + self.try_some_code(code, "eventlet", eventlet) + ++ @unittest.skipIf(env.PY2, "gevent tests don't work with python tracer on python2") + def test_gevent(self): + code = (GEVENT + SUM_RANGE_Q + PRINT_SUM_RANGE).format(QLIMIT=self.QLIMIT) + self.try_some_code(code, "gevent", gevent) + ++ @unittest.skipIf(env.PY2, "gevent tests don't work with python tracer on python2") + def test_gevent_simple_code(self): + code = SIMPLE.format(QLIMIT=self.QLIMIT) + self.try_some_code(code, "gevent", gevent) + ++ @unittest.skip("greenlet tests don't work with python tracer") + def test_greenlet(self): + GREENLET = """\ + from greenlet import greenlet +@@ -289,6 +295,7 @@ class ConcurrencyTest(CoverageTest): + """ + self.try_some_code(GREENLET, "greenlet", greenlet, "hello world\n42\n") + ++ @unittest.skip("greenlet tests don't work with python tracer") + def test_greenlet_simple_code(self): + code = SIMPLE.format(QLIMIT=self.QLIMIT) + self.try_some_code(code, "greenlet", greenlet) +diff --git a/tests/test_filereporter.py b/tests/test_filereporter.py +index 91e47762..121c3260 100644 +--- a/tests/test_filereporter.py ++++ b/tests/test_filereporter.py +@@ -4,6 +4,7 @@ + """Tests for FileReporters""" + + import os ++import unittest + + from coverage.plugin import FileReporter + from coverage.python import PythonFileReporter +@@ -87,6 +88,7 @@ class FileReporterTest(UsingModulesMixin, CoverageTest): + assert acu < bcu and acu <= bcu and acu != bcu + assert bcu > acu and bcu >= acu and bcu != acu + ++ @unittest.skip("we don't install zip eggs on gentoo") + def test_egg(self): + # Test that we can get files out of eggs, and read their source files. + # The egg1 module is installed by an action in igor.py. +diff --git a/tests/test_oddball.py b/tests/test_oddball.py +index aa2f333c..bc63395a 100644 +--- a/tests/test_oddball.py ++++ b/tests/test_oddball.py +@@ -405,7 +405,9 @@ class DoctestTest(CoverageTest): + # well with coverage. Nose fixes the problem by monkeypatching doctest. + # I want to be sure there's no monkeypatch and that I'm getting the + # doctest module that users of coverage will get. +- assert 'doctest' not in sys.modules ++ ++ # gentoo is not running these tests via nose, so there is no monkeypatching ++ #assert 'doctest' not in sys.modules + + def test_doctest(self): + self.check_coverage('''\ +diff --git a/tests/test_process.py b/tests/test_process.py +index 62dc80a5..7fa9b2ba 100644 +--- a/tests/test_process.py ++++ b/tests/test_process.py +@@ -620,11 +620,16 @@ class ProcessTest(CoverageTest): + print("FOOEY == %s" % os.getenv("FOOEY")) + """) + +- fullcov = os.path.join( +- os.path.dirname(coverage.__file__), "fullcoverage" +- ) ++ # we want to use the coverage module we are testing, not the system installation ++ paths = [ ++ os.path.join( ++ os.path.dirname(coverage.__file__), "fullcoverage" ++ ), ++ os.path.dirname(os.path.dirname(coverage.__file__)) ++ ] + self.set_environ("FOOEY", "BOO") +- self.set_environ("PYTHONPATH", fullcov) ++ self.set_environ("PYTHONPATH", ':'.join(paths)) ++ print(paths) + out = self.run_command("python -m coverage run -L getenv.py") + self.assertEqual(out, "FOOEY == BOO\n") + data = coverage.CoverageData() diff --git a/dev-python/coverage/metadata.xml b/dev-python/coverage/metadata.xml new file mode 100644 index 000000000000..e943dccfd6eb --- /dev/null +++ b/dev-python/coverage/metadata.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>robbat2@gentoo.org</email> + <name>Robin H. Johnson</name> + </maintainer> + <maintainer type="project"> + <email>python@gentoo.org</email> + <name>Python</name> + </maintainer> + <longdescription lang="en">Coverage.py is a Python module that measures code coverage during Python +execution. It uses the code analysis tools and tracing hooks provided in the +Python standard library to determine which lines are executable, and which have +been executed.</longdescription> + <upstream> + <remote-id type="pypi">coverage</remote-id> + </upstream> + <origin>gentoo-staging</origin> +</pkgmetadata> |
