>>> Building on exopi-6 under www/py-httpbin,python3 BDEPENDS = [lang/python/3.10;devel/py-installer,python3;devel/py-build,python3;devel/py-setuptools,python3;devel/py-wheel,python3] DIST = [www/py-httpbin,python3:httpbin-0.10.0.tar.gz] FULLPKGNAME = py3-httpbin-0.10.0 RDEPENDS = [www/py-itsdangerous,python3;textproc/py-MarkupSafe,python3;devel/py-six,python3;www/py-flask,python3;www/py-flasgger,python3;devel/py-decorator,python3;www/py-jinja2,python3;devel/py-gevent,python3;lang/python/3.10;archivers/py-brotli,python3;www/py-werkzeug,python3] (Junk lock obtained for exopi-6 at 1714747543.08) >>> Running depends in www/py-httpbin,python3 at 1714747543.26 last junk was in devel/py-cffi,python3 /usr/sbin/pkg_add -aI -Drepair py3-build-1.2.1 py3-installer-0.7.0 py3-setuptools-68.0.0v0 py3-wheel-0.43.0 was: /usr/sbin/pkg_add -aI -Drepair py3-build-1.2.1 py3-installer-0.7.0 py3-setuptools-68.0.0v0 py3-wheel-0.43.0 python-3.10.14p0 /usr/sbin/pkg_add -aI -Drepair py3-build-1.2.1 py3-installer-0.7.0 py3-setuptools-68.0.0v0 py3-wheel-0.43.0 >>> Running show-prepare-results in www/py-httpbin,python3 at 1714747544.89 ===> www/py-httpbin,python3 ===> Building from scratch py3-httpbin-0.10.0 ===> py3-httpbin-0.10.0 depends on: python->=3.10,<3.11 -> python-3.10.14p0 ===> py3-httpbin-0.10.0 depends on: py3-build-* -> py3-build-1.2.1 ===> py3-httpbin-0.10.0 depends on: py3-installer-* -> py3-installer-0.7.0 ===> py3-httpbin-0.10.0 depends on: py3-setuptools-* -> py3-setuptools-68.0.0v0 ===> py3-httpbin-0.10.0 depends on: py3-wheel-* -> py3-wheel-0.43.0 py3-build-1.2.1 py3-installer-0.7.0 py3-setuptools-68.0.0v0 py3-wheel-0.43.0 python-3.10.14p0 (Junk lock released for exopi-6 at 1714747546.15) distfiles size=103729 >>> Running build in www/py-httpbin,python3 at 1714747546.18 ===> www/py-httpbin,python3 ===> Checking files for py3-httpbin-0.10.0 `/exopi-cvs/ports/distfiles/httpbin-0.10.0.tar.gz' is up to date. >> (SHA256) httpbin-0.10.0.tar.gz: OK ===> Extracting for py3-httpbin-0.10.0 ===> Patching for py3-httpbin-0.10.0 ===> Applying OpenBSD patch patch-httpbin_filters_py Hmm... Looks like a unified diff to me... The text leading up to this was: -------------------------- |Index: httpbin/filters.py |--- httpbin/filters.py.orig |+++ httpbin/filters.py -------------------------- Patching file httpbin/filters.py using Plan A... Hunk #1 succeeded at 10. done ===> Compiler link: clang -> /usr/bin/clang ===> Compiler link: clang++ -> /usr/bin/clang++ ===> Compiler link: cc -> /usr/bin/cc ===> Compiler link: c++ -> /usr/bin/c++ ===> Generating configure for py3-httpbin-0.10.0 ===> Configuring for py3-httpbin-0.10.0 ===> Building for py3-httpbin-0.10.0 * Getting build dependencies for wheel... running egg_info writing httpbin.egg-info/PKG-INFO writing dependency_links to httpbin.egg-info/dependency_links.txt writing requirements to httpbin.egg-info/requires.txt writing top-level names to httpbin.egg-info/top_level.txt reading manifest file 'httpbin.egg-info/SOURCES.txt' reading manifest template 'MANIFEST.in' warning: no files found matching 'test_httpbin.py' adding license file 'LICENSE' adding license file 'AUTHORS' writing manifest file 'httpbin.egg-info/SOURCES.txt' * Building wheel... running bdist_wheel running build running build_py creating build creating build/lib creating build/lib/httpbin copying httpbin/__init__.py -> build/lib/httpbin copying httpbin/core.py -> build/lib/httpbin copying httpbin/filters.py -> build/lib/httpbin copying httpbin/helpers.py -> build/lib/httpbin copying httpbin/structures.py -> build/lib/httpbin copying httpbin/utils.py -> build/lib/httpbin creating build/lib/tests copying tests/__init__.py -> build/lib/tests copying tests/test_httpbin.py -> build/lib/tests running egg_info writing httpbin.egg-info/PKG-INFO writing dependency_links to httpbin.egg-info/dependency_links.txt writing requirements to httpbin.egg-info/requires.txt writing top-level names to httpbin.egg-info/top_level.txt reading manifest file 'httpbin.egg-info/SOURCES.txt' reading manifest template 'MANIFEST.in' warning: no files found matching 'test_httpbin.py' adding license file 'LICENSE' adding license file 'AUTHORS' writing manifest file 'httpbin.egg-info/SOURCES.txt' /usr/local/lib/python3.10/site-packages/setuptools/command/build_py.py:201: _Warning: Package 'httpbin.static' is absent from the `packages` configuration. !! ******************************************************************************** ############################ # Package would be ignored # ############################ Python recognizes 'httpbin.static' as an importable package[^1], but it is absent from setuptools' `packages` configuration. This leads to an ambiguous overall configuration. If you want to distribute this package, please make sure that 'httpbin.static' is explicitly added to the `packages` configuration field. Alternatively, you can also rely on setuptools' discovery methods (for example by using `find_namespace_packages(...)`/`find_namespace:` instead of `find_packages(...)`/`find:`). You can read more about "package discovery" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html If you don't want 'httpbin.static' to be distributed and are already explicitly excluding 'httpbin.static' via `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`, you can try to use `exclude_package_data`, or `include-package-data=False` in combination with a more fine grained `package-data` configuration. You can read more about "package data files" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/datafiles.html [^1]: For Python, any directory (with suitable naming) can be imported, even if it does not contain any `.py` files. On the other hand, currently there is no concept of package data directory, all directories are treated like packages. ******************************************************************************** !! check.warn(importable) /usr/local/lib/python3.10/site-packages/setuptools/command/build_py.py:201: _Warning: Package 'httpbin.templates' is absent from the `packages` configuration. !! ******************************************************************************** ############################ # Package would be ignored # ############################ Python recognizes 'httpbin.templates' as an importable package[^1], but it is absent from setuptools' `packages` configuration. This leads to an ambiguous overall configuration. If you want to distribute this package, please make sure that 'httpbin.templates' is explicitly added to the `packages` configuration field. Alternatively, you can also rely on setuptools' discovery methods (for example by using `find_namespace_packages(...)`/`find_namespace:` instead of `find_packages(...)`/`find:`). You can read more about "package discovery" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html If you don't want 'httpbin.templates' to be distributed and are already explicitly excluding 'httpbin.templates' via `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`, you can try to use `exclude_package_data`, or `include-package-data=False` in combination with a more fine grained `package-data` configuration. You can read more about "package data files" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/datafiles.html [^1]: For Python, any directory (with suitable naming) can be imported, even if it does not contain any `.py` files. On the other hand, currently there is no concept of package data directory, all directories are treated like packages. ******************************************************************************** !! check.warn(importable) /usr/local/lib/python3.10/site-packages/setuptools/command/build_py.py:201: _Warning: Package 'httpbin.templates.flasgger' is absent from the `packages` configuration. !! ******************************************************************************** ############################ # Package would be ignored # ############################ Python recognizes 'httpbin.templates.flasgger' as an importable package[^1], but it is absent from setuptools' `packages` configuration. This leads to an ambiguous overall configuration. If you want to distribute this package, please make sure that 'httpbin.templates.flasgger' is explicitly added to the `packages` configuration field. Alternatively, you can also rely on setuptools' discovery methods (for example by using `find_namespace_packages(...)`/`find_namespace:` instead of `find_packages(...)`/`find:`). You can read more about "package discovery" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html If you don't want 'httpbin.templates.flasgger' to be distributed and are already explicitly excluding 'httpbin.templates.flasgger' via `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`, you can try to use `exclude_package_data`, or `include-package-data=False` in combination with a more fine grained `package-data` configuration. You can read more about "package data files" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/datafiles.html [^1]: For Python, any directory (with suitable naming) can be imported, even if it does not contain any `.py` files. On the other hand, currently there is no concept of package data directory, all directories are treated like packages. ******************************************************************************** !! check.warn(importable) /usr/local/lib/python3.10/site-packages/setuptools/command/build_py.py:201: _Warning: Package 'httpbin.templates.images' is absent from the `packages` configuration. !! ******************************************************************************** ############################ # Package would be ignored # ############################ Python recognizes 'httpbin.templates.images' as an importable package[^1], but it is absent from setuptools' `packages` configuration. This leads to an ambiguous overall configuration. If you want to distribute this package, please make sure that 'httpbin.templates.images' is explicitly added to the `packages` configuration field. Alternatively, you can also rely on setuptools' discovery methods (for example by using `find_namespace_packages(...)`/`find_namespace:` instead of `find_packages(...)`/`find:`). You can read more about "package discovery" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html If you don't want 'httpbin.templates.images' to be distributed and are already explicitly excluding 'httpbin.templates.images' via `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`, you can try to use `exclude_package_data`, or `include-package-data=False` in combination with a more fine grained `package-data` configuration. You can read more about "package data files" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/datafiles.html [^1]: For Python, any directory (with suitable naming) can be imported, even if it does not contain any `.py` files. On the other hand, currently there is no concept of package data directory, all directories are treated like packages. ******************************************************************************** !! check.warn(importable) copying httpbin/VERSION -> build/lib/httpbin creating build/lib/httpbin/static copying httpbin/static/favicon.ico -> build/lib/httpbin/static creating build/lib/httpbin/templates copying httpbin/templates/UTF-8-demo.txt -> build/lib/httpbin/templates copying httpbin/templates/footer.html -> build/lib/httpbin/templates copying httpbin/templates/forms-post.html -> build/lib/httpbin/templates copying httpbin/templates/httpbin.1.html -> build/lib/httpbin/templates copying httpbin/templates/index.html -> build/lib/httpbin/templates copying httpbin/templates/moby.html -> build/lib/httpbin/templates copying httpbin/templates/sample.xml -> build/lib/httpbin/templates copying httpbin/templates/trackingscripts.html -> build/lib/httpbin/templates creating build/lib/httpbin/templates/flasgger copying httpbin/templates/flasgger/index.html -> build/lib/httpbin/templates/flasgger creating build/lib/httpbin/templates/images copying httpbin/templates/images/jackal.jpg -> build/lib/httpbin/templates/images copying httpbin/templates/images/pig_icon.png -> build/lib/httpbin/templates/images copying httpbin/templates/images/svg_logo.svg -> build/lib/httpbin/templates/images copying httpbin/templates/images/wolf_1.webp -> build/lib/httpbin/templates/images installing to build/bdist.openbsd-7.5-amd64/wheel running install running install_lib creating build/bdist.openbsd-7.5-amd64 creating build/bdist.openbsd-7.5-amd64/wheel creating build/bdist.openbsd-7.5-amd64/wheel/httpbin copying build/lib/httpbin/__init__.py -> build/bdist.openbsd-7.5-amd64/wheel/httpbin copying build/lib/httpbin/core.py -> build/bdist.openbsd-7.5-amd64/wheel/httpbin copying build/lib/httpbin/filters.py -> build/bdist.openbsd-7.5-amd64/wheel/httpbin copying build/lib/httpbin/helpers.py -> build/bdist.openbsd-7.5-amd64/wheel/httpbin copying build/lib/httpbin/structures.py -> build/bdist.openbsd-7.5-amd64/wheel/httpbin copying build/lib/httpbin/utils.py -> build/bdist.openbsd-7.5-amd64/wheel/httpbin copying build/lib/httpbin/VERSION -> build/bdist.openbsd-7.5-amd64/wheel/httpbin creating build/bdist.openbsd-7.5-amd64/wheel/httpbin/static copying build/lib/httpbin/static/favicon.ico -> build/bdist.openbsd-7.5-amd64/wheel/httpbin/static creating build/bdist.openbsd-7.5-amd64/wheel/httpbin/templates copying build/lib/httpbin/templates/UTF-8-demo.txt -> build/bdist.openbsd-7.5-amd64/wheel/httpbin/templates copying build/lib/httpbin/templates/footer.html -> build/bdist.openbsd-7.5-amd64/wheel/httpbin/templates copying build/lib/httpbin/templates/forms-post.html -> build/bdist.openbsd-7.5-amd64/wheel/httpbin/templates copying build/lib/httpbin/templates/httpbin.1.html -> build/bdist.openbsd-7.5-amd64/wheel/httpbin/templates copying build/lib/httpbin/templates/index.html -> build/bdist.openbsd-7.5-amd64/wheel/httpbin/templates copying build/lib/httpbin/templates/moby.html -> build/bdist.openbsd-7.5-amd64/wheel/httpbin/templates copying build/lib/httpbin/templates/sample.xml -> build/bdist.openbsd-7.5-amd64/wheel/httpbin/templates copying build/lib/httpbin/templates/trackingscripts.html -> build/bdist.openbsd-7.5-amd64/wheel/httpbin/templates creating build/bdist.openbsd-7.5-amd64/wheel/httpbin/templates/flasgger copying build/lib/httpbin/templates/flasgger/index.html -> build/bdist.openbsd-7.5-amd64/wheel/httpbin/templates/flasgger creating build/bdist.openbsd-7.5-amd64/wheel/httpbin/templates/images copying build/lib/httpbin/templates/images/jackal.jpg -> build/bdist.openbsd-7.5-amd64/wheel/httpbin/templates/images copying build/lib/httpbin/templates/images/pig_icon.png -> build/bdist.openbsd-7.5-amd64/wheel/httpbin/templates/images copying build/lib/httpbin/templates/images/svg_logo.svg -> build/bdist.openbsd-7.5-amd64/wheel/httpbin/templates/images copying build/lib/httpbin/templates/images/wolf_1.webp -> build/bdist.openbsd-7.5-amd64/wheel/httpbin/templates/images creating build/bdist.openbsd-7.5-amd64/wheel/tests copying build/lib/tests/__init__.py -> build/bdist.openbsd-7.5-amd64/wheel/tests copying build/lib/tests/test_httpbin.py -> build/bdist.openbsd-7.5-amd64/wheel/tests running install_egg_info Copying httpbin.egg-info to build/bdist.openbsd-7.5-amd64/wheel/httpbin-0.10.0-py3.10.egg-info running install_scripts creating build/bdist.openbsd-7.5-amd64/wheel/httpbin-0.10.0.dist-info/WHEEL creating '/exopi-obj/pobj/py-httpbin-0.10.0-python3/httpbin-0.10.0/dist/.tmp-gg13vtcf/httpbin-0.10.0-py2.py3-none-any.whl' and adding 'build/bdist.openbsd-7.5-amd64/wheel' to it adding 'httpbin/VERSION' adding 'httpbin/__init__.py' adding 'httpbin/core.py' adding 'httpbin/filters.py' adding 'httpbin/helpers.py' adding 'httpbin/structures.py' adding 'httpbin/utils.py' adding 'httpbin/static/favicon.ico' adding 'httpbin/templates/UTF-8-demo.txt' adding 'httpbin/templates/footer.html' adding 'httpbin/templates/forms-post.html' adding 'httpbin/templates/httpbin.1.html' adding 'httpbin/templates/index.html' adding 'httpbin/templates/moby.html' adding 'httpbin/templates/sample.xml' adding 'httpbin/templates/trackingscripts.html' adding 'httpbin/templates/flasgger/index.html' adding 'httpbin/templates/images/jackal.jpg' adding 'httpbin/templates/images/pig_icon.png' adding 'httpbin/templates/images/svg_logo.svg' adding 'httpbin/templates/images/wolf_1.webp' adding 'tests/__init__.py' adding 'tests/test_httpbin.py' adding 'httpbin-0.10.0.dist-info/AUTHORS' adding 'httpbin-0.10.0.dist-info/LICENSE' adding 'httpbin-0.10.0.dist-info/METADATA' adding 'httpbin-0.10.0.dist-info/WHEEL' adding 'httpbin-0.10.0.dist-info/top_level.txt' adding 'httpbin-0.10.0.dist-info/RECORD' removing build/bdist.openbsd-7.5-amd64/wheel Successfully built httpbin-0.10.0-py2.py3-none-any.whl >>> Running package in www/py-httpbin,python3 at 1714747548.60 ===> www/py-httpbin,python3 ===> Faking installation for py3-httpbin-0.10.0 ===> Building package for py3-httpbin-0.10.0 Create /exopi-cvs/ports/packages/amd64/all/py3-httpbin-0.10.0.tgz Creating package py3-httpbin-0.10.0 reading plist| checking dependencies| checking dependencies|archivers/py-brotli,python3 checking dependencies|devel/py-decorator,python3 checking dependencies|devel/py-gevent,python3 checking dependencies|devel/py-six,python3 checking dependencies|lang/python/3.10,-main checking dependencies|textproc/py-MarkupSafe,python3 checking dependencies|www/py-flasgger,python3 checking dependencies|www/py-flask,python3 checking dependencies|www/py-itsdangerous,python3 checking dependencies|www/py-jinja2,python3 checking dependencies|www/py-werkzeug,python3 checksumming| checksumming| | 0% checksumming|* | 1% checksumming|** | 3% checksumming|*** | 4% checksumming|*** | 5% checksumming|**** | 7% checksumming|***** | 8% checksumming|****** | 10% checksumming|******* | 11% checksumming|******** | 12% checksumming|******** | 14% checksumming|********* | 15% checksumming|********** | 16% checksumming|*********** | 18% checksumming|************ | 19% checksumming|************* | 21% checksumming|************* | 22% checksumming|************** | 23% checksumming|*************** | 25% checksumming|**************** | 26% checksumming|***************** | 27% checksumming|****************** | 29% checksumming|****************** | 30% checksumming|******************* | 32% checksumming|******************** | 33% checksumming|********************* | 34% checksumming|********************** | 36% checksumming|*********************** | 37% checksumming|*********************** | 38% checksumming|************************ | 40% checksumming|************************* | 41% checksumming|************************** | 42% checksumming|*************************** | 44% checksumming|**************************** | 45% checksumming|**************************** | 47% checksumming|***************************** | 48% checksumming|****************************** | 49% checksumming|******************************* | 51% checksumming|******************************** | 52% checksumming|********************************* | 53% checksumming|********************************* | 55% checksumming|********************************** | 56% checksumming|*********************************** | 58% checksumming|************************************ | 59% checksumming|************************************* | 60% checksumming|************************************** | 62% checksumming|************************************** | 63% checksumming|*************************************** | 64% checksumming|**************************************** | 66% checksumming|***************************************** | 67% checksumming|****************************************** | 68% checksumming|******************************************* | 70% checksumming|******************************************* | 71% checksumming|******************************************** | 73% checksumming|********************************************* | 74% checksumming|********************************************** | 75% checksumming|*********************************************** | 77% checksumming|************************************************ | 78% checksumming|************************************************ | 79% checksumming|************************************************* | 81% checksumming|************************************************** | 82% checksumming|*************************************************** | 84% checksumming|**************************************************** | 85% checksumming|***************************************************** | 86% checksumming|***************************************************** | 88% checksumming|****************************************************** | 89% checksumming|******************************************************* | 90% checksumming|******************************************************** | 92% checksumming|********************************************************* | 93% checksumming|********************************************************** | 95% checksumming|********************************************************** | 96% checksumming|*********************************************************** | 97% checksumming|************************************************************ | 99% checksumming|*************************************************************|100% archiving| archiving| | 0% archiving|****** | 10% archiving|************* | 20% archiving|************* | 21% archiving|*************** | 24% archiving|***************** | 27% archiving|****************** | 27% archiving|****************** | 28% archiving|********************** | 34% archiving|************************** | 41% archiving|*************************** | 42% archiving|********************************** | 54% archiving|*********************************** | 54% archiving|************************************* | 58% archiving|***************************************** | 63% archiving|****************************************** | 66% archiving|******************************************** | 69% archiving|********************************************* | 70% archiving|************************************************** | 78% archiving|************************************************** | 79% archiving|***************************************************** | 82% archiving|***************************************************** | 83% archiving|*********************************************************** | 92% archiving|************************************************************ | 94% archiving|************************************************************* | 96% archiving|*************************************************************** | 99% archiving|****************************************************************|100% Link to /exopi-cvs/ports/packages/amd64/ftp/py3-httpbin-0.10.0.tgz >>> Running clean in www/py-httpbin,python3 at 1714747555.39 ===> www/py-httpbin,python3 ===> Cleaning for py3-httpbin-0.10.0 >>> Ended at 1714747555.66 max_stuck=0.61/depends=1.78/show-prepare-results=1.29/build=2.42/package=6.72/clean=0.35