# # This file and its contents are supplied under the terms of the # Common Development and Distribution License ("CDDL"), version 1.0. # You may only use this file in accordance with the terms of version # 1.0 of the CDDL. # # A full copy of the text of the CDDL should have accompanied this # source. A copy of the CDDL is also available via the Internet at # http://www.illumos.org/license/CDDL. # # # This file was automatically generated using the following command: # $WS_TOOLS/python-integrate-project yarl # BUILD_STYLE = pyproject include ../../../make-rules/shared-macros.mk COMPONENT_NAME = yarl HUMAN_VERSION = 1.18.0 COMPONENT_SUMMARY = Yet another URL library COMPONENT_PROJECT_URL = https://github.com/aio-libs/yarl COMPONENT_ARCHIVE_HASH = \ sha256:20d95535e7d833889982bfe7cc321b7f63bf8879788fee982c76ae2b24cfb715 COMPONENT_LICENSE = Apache-2.0 COMPONENT_LICENSE_FILE = LICENSE TEST_STYLE = pytest include $(WS_MAKE_RULES)/common.mk # This project does not support tox so we need to provide test requirements # manually. TEST_REQUIREMENTS += requirements/test.txt # # Tests are run from build directory that contains cloned copy of sdist. We # try to ask Python to find tested modules in the proto area (the PYTHONPATH is # set accordingly), but Python (< 3.11) always adds the current directory to # sys.path and there is no known (simple) way how to avoid that. Except -I, # but that would cause Python to ignore PYTHONPATH too so we would not have # access to the proto area either. The -P option together with PYTHONSAFEPATH # environment variable were added to Python 3.11 only so we cannot use them yet # for all Python versions we support. # # Since sdist for this project contains the main module in the top-level # directory we cannot force Python to skip it. But, unfortunately, this module # does not contain built dynamic libraries, so Python cannot find them while # testing. # # To workaround this we rename the main module in the build directory during # testing so Python will need to defer to PYTHONPATH. # COMPONENT_PRE_TEST_ACTION += $(MV) $(@D)/yarl $(@D)/yarl-RENAMED ; COMPONENT_POST_TEST_ACTION += $(MV) $(@D)/yarl-RENAMED $(@D)/yarl ; # We have no pytest-codspeed packaged yet. PYTEST_ADDOPTS += --ignore tests/test_quoting_benchmarks.py PYTEST_ADDOPTS += --ignore tests/test_url_benchmarks.py # Random directory name COMPONENT_TEST_TRANSFORMS += "-e 's|/tmp/.*/garbage[^/]*|\$$(TMPDIR)|'" # Auto-generated dependencies PYTHON_REQUIRED_PACKAGES += library/python/cython PYTHON_REQUIRED_PACKAGES += library/python/expandvars PYTHON_REQUIRED_PACKAGES += library/python/idna PYTHON_REQUIRED_PACKAGES += library/python/multidict PYTHON_REQUIRED_PACKAGES += library/python/propcache PYTHON_REQUIRED_PACKAGES += library/python/setuptools PYTHON_REQUIRED_PACKAGES += library/python/tomli PYTHON_REQUIRED_PACKAGES += runtime/python REQUIRED_PACKAGES += system/library TEST_REQUIRED_PACKAGES.python += library/python/covdefaults TEST_REQUIRED_PACKAGES.python += library/python/cython TEST_REQUIRED_PACKAGES.python += library/python/hypothesis TEST_REQUIRED_PACKAGES.python += library/python/idna TEST_REQUIRED_PACKAGES.python += library/python/multidict TEST_REQUIRED_PACKAGES.python += library/python/propcache TEST_REQUIRED_PACKAGES.python += library/python/pytest TEST_REQUIRED_PACKAGES.python += library/python/pytest-cov TEST_REQUIRED_PACKAGES.python += library/python/pytest-xdist