>>> wlc: Building testing/wlc 1.13-r2 (using abuild 3.11.0_rc13-r0) started Sun, 30 Apr 2023 22:08:22 +0000 >>> wlc: Checking sanity of /home/buildozer/aports/testing/wlc/APKBUILD... >>> wlc: Analyzing dependencies... >>> wlc: Installing for build: build-base python3 py3-argcomplete py3-dateutil py3-requests py3-xdg py3-setuptools (1/35) Installing libbz2 (1.0.8-r5) (2/35) Installing gdbm (1.23-r1) (3/35) Installing mpdecimal (2.5.1-r2) (4/35) Installing libpanelw (6.4_p20230424-r0) (5/35) Installing readline (8.2.1-r1) (6/35) Installing sqlite-libs (3.41.2-r2) (7/35) Installing python3 (3.11.3-r10) (8/35) Installing python3-pycache-pyc0 (3.11.3-r10) (9/35) Installing pyc (0.1-r0) (10/35) Installing python3-pyc (3.11.3-r10) (11/35) Installing py3-argcomplete (2.0.5-r1) (12/35) Installing py3-argcomplete-pyc (2.0.5-r1) (13/35) Installing py3-six (1.16.0-r6) (14/35) Installing py3-six-pyc (1.16.0-r6) (15/35) Installing py3-dateutil (2.8.2-r3) (16/35) Installing py3-dateutil-pyc (2.8.2-r3) (17/35) Installing py3-certifi (2022.12.7-r2) (18/35) Installing py3-certifi-pyc (2022.12.7-r2) (19/35) Installing py3-charset-normalizer (3.1.0-r1) (20/35) Installing py3-charset-normalizer-pyc (3.1.0-r1) (21/35) Installing py3-idna (3.4-r4) (22/35) Installing py3-idna-pyc (3.4-r4) (23/35) Installing py3-urllib3 (1.26.15-r1) (24/35) Installing py3-urllib3-pyc (1.26.15-r1) (25/35) Installing py3-requests (2.29.0-r0) (26/35) Installing py3-requests-pyc (2.29.0-r0) (27/35) Installing py3-xdg (0.28-r2) (28/35) Installing py3-xdg-pyc (0.28-r2) (29/35) Installing py3-parsing (3.0.9-r2) (30/35) Installing py3-parsing-pyc (3.0.9-r2) (31/35) Installing py3-packaging (23.1-r1) (32/35) Installing py3-packaging-pyc (23.1-r1) (33/35) Installing py3-setuptools (67.7.2-r0) (34/35) Installing py3-setuptools-pyc (67.7.2-r0) (35/35) Installing .makedepends-wlc (20230430.220827) Executing busybox-1.36.0-r8.trigger OK: 1018 MiB in 138 packages >>> wlc: Cleaning up srcdir >>> wlc: Cleaning up pkgdir >>> wlc: Fetching https://distfiles.alpinelinux.org/distfiles/edge/wlc-1.13.tar.gz >>> wlc: Fetching https://distfiles.alpinelinux.org/distfiles/edge/wlc-1.13.tar.gz >>> wlc: Checking sha512sums... wlc-1.13.tar.gz: OK >>> wlc: Unpacking /var/cache/distfiles/wlc-1.13.tar.gz... /usr/lib/python3.11/site-packages/setuptools/config/setupcfg.py:293: _DeprecatedConfig: Deprecated config in `setup.cfg` !! ******************************************************************************** The license_file parameter is deprecated, use license_files instead. By 2023-Oct-30, you need to update your project and remove deprecated calls or your builds will no longer be supported. See https://setuptools.pypa.io/en/latest/userguide/declarative_config.html for details. ******************************************************************************** !! parsed = self.parsers.get(option_name, lambda x: x)(value) running build running build_py creating build creating build/lib creating build/lib/wlc copying wlc/test_main.py -> build/lib/wlc copying wlc/main.py -> build/lib/wlc copying wlc/__init__.py -> build/lib/wlc copying wlc/test_wlc.py -> build/lib/wlc copying wlc/config.py -> build/lib/wlc copying wlc/test_base.py -> build/lib/wlc running egg_info creating wlc.egg-info writing wlc.egg-info/PKG-INFO writing dependency_links to wlc.egg-info/dependency_links.txt writing entry points to wlc.egg-info/entry_points.txt writing requirements to wlc.egg-info/requires.txt writing top-level names to wlc.egg-info/top_level.txt writing manifest file 'wlc.egg-info/SOURCES.txt' reading manifest file 'wlc.egg-info/SOURCES.txt' reading manifest template 'MANIFEST.in' warning: no files found matching 'README.rst' adding license file 'LICENSE' writing manifest file 'wlc.egg-info/SOURCES.txt' /usr/lib/python3.11/site-packages/setuptools/command/build_py.py:201: _Warning: Package 'wlc.test_data' is absent from the `packages` configuration. !! ******************************************************************************** ############################ # Package would be ignored # ############################ Python recognizes 'wlc.test_data' 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 'wlc.test_data' 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 'wlc.test_data' to be distributed and are already explicitly excluding 'wlc.test_data' 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/lib/python3.11/site-packages/setuptools/command/build_py.py:201: _Warning: Package 'wlc.test_data.api' is absent from the `packages` configuration. !! ******************************************************************************** ############################ # Package would be ignored # ############################ Python recognizes 'wlc.test_data.api' 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 'wlc.test_data.api' 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 'wlc.test_data.api' to be distributed and are already explicitly excluding 'wlc.test_data.api' 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/lib/python3.11/site-packages/setuptools/command/build_py.py:201: _Warning: Package 'wlc.test_data.mock' is absent from the `packages` configuration. !! ******************************************************************************** ############################ # Package would be ignored # ############################ Python recognizes 'wlc.test_data.mock' 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 'wlc.test_data.mock' 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 'wlc.test_data.mock' to be distributed and are already explicitly excluding 'wlc.test_data.mock' 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) creating build/lib/wlc/test_data copying wlc/test_data/.weblate -> build/lib/wlc/test_data copying wlc/test_data/section -> build/lib/wlc/test_data copying wlc/test_data/weblate.ini -> build/lib/wlc/test_data copying wlc/test_data/wlc -> build/lib/wlc/test_data creating build/lib/wlc/test_data/api copying wlc/test_data/api/changes -> build/lib/wlc/test_data/api copying wlc/test_data/api/components -> build/lib/wlc/test_data/api copying wlc/test_data/api/components-hello-android -> build/lib/wlc/test_data/api copying wlc/test_data/api/components-hello-android-file -> build/lib/wlc/test_data/api copying wlc/test_data/api/components-hello-android-file--GET--format=zip -> build/lib/wlc/test_data/api copying wlc/test_data/api/components-hello-weblate -> build/lib/wlc/test_data/api copying wlc/test_data/api/components-hello-weblate--DELETE-- -> build/lib/wlc/test_data/api copying wlc/test_data/api/components-hello-weblate-changes -> build/lib/wlc/test_data/api copying wlc/test_data/api/components-hello-weblate-file -> build/lib/wlc/test_data/api copying wlc/test_data/api/components-hello-weblate-file--GET--format=zip -> build/lib/wlc/test_data/api copying wlc/test_data/api/components-hello-weblate-lock -> build/lib/wlc/test_data/api copying wlc/test_data/api/components-hello-weblate-lock--POST--lock=0 -> build/lib/wlc/test_data/api copying wlc/test_data/api/components-hello-weblate-lock--POST--lock=1 -> build/lib/wlc/test_data/api copying wlc/test_data/api/components-hello-weblate-repository -> build/lib/wlc/test_data/api copying wlc/test_data/api/components-hello-weblate-repository--POST--operation=cleanup -> build/lib/wlc/test_data/api copying wlc/test_data/api/components-hello-weblate-repository--POST--operation=commit -> build/lib/wlc/test_data/api copying wlc/test_data/api/components-hello-weblate-repository--POST--operation=pull -> build/lib/wlc/test_data/api copying wlc/test_data/api/components-hello-weblate-repository--POST--operation=push -> build/lib/wlc/test_data/api copying wlc/test_data/api/components-hello-weblate-repository--POST--operation=reset -> build/lib/wlc/test_data/api copying wlc/test_data/api/components-hello-weblate-statistics -> build/lib/wlc/test_data/api copying wlc/test_data/api/components-hello-weblate-statistics--GET--page=2 -> build/lib/wlc/test_data/api copying wlc/test_data/api/components-hello-weblate-statistics--GET--page=3 -> build/lib/wlc/test_data/api copying wlc/test_data/api/components-hello-weblate-translations -> build/lib/wlc/test_data/api copying wlc/test_data/api/components-hello-weblate-translations--GET--page=2 -> build/lib/wlc/test_data/api copying wlc/test_data/api/components-hello-weblate-translations--POST--language_code=nl_BE -> build/lib/wlc/test_data/api copying wlc/test_data/api/languages -> build/lib/wlc/test_data/api copying wlc/test_data/api/languages--GET--page=2 -> build/lib/wlc/test_data/api copying wlc/test_data/api/languages--GET--page=3 -> build/lib/wlc/test_data/api copying wlc/test_data/api/languages--POST--code=tst--name=Test-Language--direction=rtl--plural=number=2--formula=n-!=-1 -> build/lib/wlc/test_data/api copying wlc/test_data/api/projects -> build/lib/wlc/test_data/api copying wlc/test_data/api/projects--POST--name=Hello--slug=hello--web=http---example.com---source_language=name=Malayalam--code=ml -> build/lib/wlc/test_data/api copying wlc/test_data/api/projects--POST--name=denied_json--slug=denide_json--web=http---some-weblate-app.com- -> build/lib/wlc/test_data/api copying wlc/test_data/api/projects-acl -> build/lib/wlc/test_data/api copying wlc/test_data/api/projects-empty -> build/lib/wlc/test_data/api copying wlc/test_data/api/projects-empty-components -> build/lib/wlc/test_data/api copying wlc/test_data/api/projects-hello -> build/lib/wlc/test_data/api copying wlc/test_data/api/projects-hello--DELETE-- -> build/lib/wlc/test_data/api copying wlc/test_data/api/projects-hello-changes -> build/lib/wlc/test_data/api copying wlc/test_data/api/projects-hello-components -> build/lib/wlc/test_data/api copying wlc/test_data/api/projects-hello-components--POST--9c51d0bc -> build/lib/wlc/test_data/api copying wlc/test_data/api/projects-hello-components--POST--branch=main--file_format=po--filemask=po--.po--git_export=--license=--license_url=--name=Weblate--slug=weblate--repo=file----home-nijel-work-weblate-hello--template=--new_base=--vcs=git -> build/lib/wlc/test_data/api copying wlc/test_data/api/projects-hello-languages -> build/lib/wlc/test_data/api copying wlc/test_data/api/projects-hello-repository -> build/lib/wlc/test_data/api copying wlc/test_data/api/projects-hello-repository--POST--operation=cleanup -> build/lib/wlc/test_data/api copying wlc/test_data/api/projects-hello-repository--POST--operation=commit -> build/lib/wlc/test_data/api copying wlc/test_data/api/projects-hello-repository--POST--operation=pull -> build/lib/wlc/test_data/api copying wlc/test_data/api/projects-hello-repository--POST--operation=push -> build/lib/wlc/test_data/api copying wlc/test_data/api/projects-hello-repository--POST--operation=reset -> build/lib/wlc/test_data/api copying wlc/test_data/api/projects-hello-statistics -> build/lib/wlc/test_data/api copying wlc/test_data/api/projects-invalid -> build/lib/wlc/test_data/api copying wlc/test_data/api/translations -> build/lib/wlc/test_data/api copying wlc/test_data/api/translations--GET--page=2 -> build/lib/wlc/test_data/api copying wlc/test_data/api/translations--GET--page=3 -> build/lib/wlc/test_data/api copying wlc/test_data/api/translations-hello-android-en-units -> build/lib/wlc/test_data/api copying wlc/test_data/api/translations-hello-android-en-units--POST--key=test-monolingual--value=-test-me- -> build/lib/wlc/test_data/api copying wlc/test_data/api/translations-hello-weblate-cs -> build/lib/wlc/test_data/api copying wlc/test_data/api/translations-hello-weblate-cs--DELETE-- -> build/lib/wlc/test_data/api copying wlc/test_data/api/translations-hello-weblate-cs-changes -> build/lib/wlc/test_data/api copying wlc/test_data/api/translations-hello-weblate-cs-file -> build/lib/wlc/test_data/api copying wlc/test_data/api/translations-hello-weblate-cs-file--GET--format=csv -> build/lib/wlc/test_data/api copying wlc/test_data/api/translations-hello-weblate-cs-file--POST--3748506a -> build/lib/wlc/test_data/api copying wlc/test_data/api/translations-hello-weblate-cs-file--POST--5c6a101f -> build/lib/wlc/test_data/api copying wlc/test_data/api/translations-hello-weblate-cs-file--POST--85762547 -> build/lib/wlc/test_data/api copying wlc/test_data/api/translations-hello-weblate-cs-file--POST--90a4957d -> build/lib/wlc/test_data/api copying wlc/test_data/api/translations-hello-weblate-cs-file--POST--f8672b4c -> build/lib/wlc/test_data/api copying wlc/test_data/api/translations-hello-weblate-cs-repository -> build/lib/wlc/test_data/api copying wlc/test_data/api/translations-hello-weblate-cs-repository--POST--operation=cleanup -> build/lib/wlc/test_data/api copying wlc/test_data/api/translations-hello-weblate-cs-repository--POST--operation=commit -> build/lib/wlc/test_data/api copying wlc/test_data/api/translations-hello-weblate-cs-repository--POST--operation=pull -> build/lib/wlc/test_data/api copying wlc/test_data/api/translations-hello-weblate-cs-repository--POST--operation=push -> build/lib/wlc/test_data/api copying wlc/test_data/api/translations-hello-weblate-cs-repository--POST--operation=reset -> build/lib/wlc/test_data/api copying wlc/test_data/api/translations-hello-weblate-cs-statistics -> build/lib/wlc/test_data/api copying wlc/test_data/api/translations-hello-weblate-cs-units -> build/lib/wlc/test_data/api copying wlc/test_data/api/translations-hello-weblate-cs-units--GET--q=source%3A%3D%22mr%22 -> build/lib/wlc/test_data/api copying wlc/test_data/api/units -> build/lib/wlc/test_data/api copying wlc/test_data/api/units-123 -> build/lib/wlc/test_data/api copying wlc/test_data/api/units-123--DELETE-- -> build/lib/wlc/test_data/api copying wlc/test_data/api/units-123--PATCH--target=-foo---state=30 -> build/lib/wlc/test_data/api copying wlc/test_data/api/units-123--PUT--target=-foo---state=30 -> build/lib/wlc/test_data/api creating build/lib/wlc/test_data/mock copying wlc/test_data/mock/project-local-file.pot -> build/lib/wlc/test_data/mock >>> wlc: Entering fakeroot... /usr/lib/python3.11/site-packages/setuptools/config/setupcfg.py:293: _DeprecatedConfig: Deprecated config in `setup.cfg` !! ******************************************************************************** The license_file parameter is deprecated, use license_files instead. By 2023-Oct-30, you need to update your project and remove deprecated calls or your builds will no longer be supported. See https://setuptools.pypa.io/en/latest/userguide/declarative_config.html for details. ******************************************************************************** !! parsed = self.parsers.get(option_name, lambda x: x)(value) running install /usr/lib/python3.11/site-packages/setuptools/_distutils/cmd.py:66: SetuptoolsDeprecationWarning: setup.py install is deprecated. !! ******************************************************************************** Please avoid running ``setup.py`` directly. Instead, use pypa/build, pypa/installer, pypa/build or other standards-based tools. See https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html for details. ******************************************************************************** !! self.initialize_options() running install_lib creating /home/buildozer/aports/testing/wlc/pkg creating /home/buildozer/aports/testing/wlc/pkg/wlc creating /home/buildozer/aports/testing/wlc/pkg/wlc/usr creating /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib creating /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11 creating /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages creating /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc copying build/lib/wlc/test_main.py -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc copying build/lib/wlc/main.py -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc copying build/lib/wlc/__init__.py -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc copying build/lib/wlc/test_wlc.py -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc creating /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data creating /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/mock copying build/lib/wlc/test_data/mock/project-local-file.pot -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/mock copying build/lib/wlc/test_data/.weblate -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data creating /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/projects-hello-changes -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/translations-hello-weblate-cs-statistics -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/projects-hello-repository -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/components-hello-weblate-file -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/components-hello-android -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/projects--POST--name=Hello--slug=hello--web=http---example.com---source_language=name=Malayalam--code=ml -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/translations-hello-weblate-cs-file--POST--3748506a -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/translations-hello-android-en-units--POST--key=test-monolingual--value=-test-me- -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/translations -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/components-hello-weblate-file--GET--format=zip -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/projects-empty -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/projects-hello--DELETE-- -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/projects-acl -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/translations-hello-weblate-cs -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/components -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/translations-hello-weblate-cs-file--POST--f8672b4c -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/translations-hello-weblate-cs--DELETE-- -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/languages--POST--code=tst--name=Test-Language--direction=rtl--plural=number=2--formula=n-!=-1 -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/components-hello-weblate-translations--POST--language_code=nl_BE -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/projects-hello-repository--POST--operation=reset -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/units-123--PUT--target=-foo---state=30 -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/translations-hello-weblate-cs-file -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/components-hello-weblate-repository--POST--operation=push -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/translations-hello-weblate-cs-units--GET--q=source%3A%3D%22mr%22 -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/components-hello-android-file--GET--format=zip -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/translations-hello-weblate-cs-file--GET--format=csv -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/components-hello-weblate-repository -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/translations-hello-weblate-cs-repository--POST--operation=push -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/translations-hello-weblate-cs-changes -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/projects-hello-statistics -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/components-hello-weblate-repository--POST--operation=pull -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/translations-hello-weblate-cs-repository--POST--operation=pull -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/components-hello-weblate-lock--POST--lock=1 -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/components-hello-weblate-translations--GET--page=2 -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/components-hello-weblate-lock -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/components-hello-weblate-translations -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/components-hello-weblate--DELETE-- -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/projects-hello-repository--POST--operation=cleanup -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/components-hello-android-file -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/translations-hello-weblate-cs-file--POST--5c6a101f -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/components-hello-weblate-changes -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/projects-hello-components -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/units-123--DELETE-- -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/components-hello-weblate-statistics--GET--page=2 -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/projects--POST--name=denied_json--slug=denide_json--web=http---some-weblate-app.com- -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/projects-hello-languages -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/translations--GET--page=2 -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/projects-hello-components--POST--9c51d0bc -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/changes -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/components-hello-weblate-repository--POST--operation=commit -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/components-hello-weblate-repository--POST--operation=cleanup -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/components-hello-weblate-statistics--GET--page=3 -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/languages--GET--page=2 -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/projects-hello-repository--POST--operation=pull -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/projects-hello -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/translations-hello-weblate-cs-repository--POST--operation=reset -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/projects-empty-components -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/translations-hello-android-en-units -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/translations-hello-weblate-cs-repository--POST--operation=cleanup -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/translations-hello-weblate-cs-file--POST--90a4957d -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/projects -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/translations-hello-weblate-cs-repository -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/languages--GET--page=3 -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/units-123 -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/translations-hello-weblate-cs-file--POST--85762547 -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/units-123--PATCH--target=-foo---state=30 -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/languages -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/translations-hello-weblate-cs-repository--POST--operation=commit -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/projects-hello-components--POST--branch=main--file_format=po--filemask=po--.po--git_export=--license=--license_url=--name=Weblate--slug=weblate--repo=file----home-nijel-work-weblate-hello--template=--new_base=--vcs=git -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/components-hello-weblate-statistics -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/translations--GET--page=3 -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/components-hello-weblate-repository--POST--operation=reset -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/components-hello-weblate -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/components-hello-weblate-lock--POST--lock=0 -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/projects-hello-repository--POST--operation=push -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/projects-invalid -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/projects-hello-repository--POST--operation=commit -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/units -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/api/translations-hello-weblate-cs-units -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data/api copying build/lib/wlc/test_data/weblate.ini -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data copying build/lib/wlc/test_data/wlc -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data copying build/lib/wlc/test_data/section -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_data copying build/lib/wlc/config.py -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc copying build/lib/wlc/test_base.py -> /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc byte-compiling /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_main.py to test_main.cpython-311.pyc byte-compiling /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/main.py to main.cpython-311.pyc byte-compiling /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/__init__.py to __init__.cpython-311.pyc byte-compiling /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_wlc.py to test_wlc.cpython-311.pyc byte-compiling /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/config.py to config.cpython-311.pyc byte-compiling /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/test_base.py to test_base.cpython-311.pyc running install_egg_info running egg_info writing wlc.egg-info/PKG-INFO writing dependency_links to wlc.egg-info/dependency_links.txt writing entry points to wlc.egg-info/entry_points.txt writing requirements to wlc.egg-info/requires.txt writing top-level names to wlc.egg-info/top_level.txt reading manifest file 'wlc.egg-info/SOURCES.txt' reading manifest template 'MANIFEST.in' warning: no files found matching 'README.rst' adding license file 'LICENSE' writing manifest file 'wlc.egg-info/SOURCES.txt' Copying wlc.egg-info to /home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc-1.13-py3.11.egg-info running install_scripts Installing wlc script to /home/buildozer/aports/testing/wlc/pkg/wlc/usr/bin >>> wlc-pyc*: Running split function pyc... '/home/buildozer/aports/testing/wlc/pkg/wlc/usr/lib/python3.11/site-packages/wlc/__pycache__' -> '/home/buildozer/aports/testing/wlc/pkg/wlc-pyc/usr/lib/python3.11/site-packages/wlc/__pycache__' >>> wlc-pyc*: Preparing subpackage wlc-pyc... >>> wlc-pyc*: Running postcheck for wlc-pyc >>> wlc*: Running postcheck for wlc >>> wlc*: Preparing package wlc... >>> wlc-pyc*: Tracing dependencies... python3 py3-argcomplete py3-dateutil py3-requests py3-xdg python3~3.11 >>> wlc-pyc*: Package size: 204.0 KB >>> wlc-pyc*: Compressing data... >>> wlc-pyc*: Create checksum... >>> wlc-pyc*: Create wlc-pyc-1.13-r2.apk >>> wlc*: Tracing dependencies... python3 py3-argcomplete py3-dateutil py3-requests py3-xdg python3~3.11 >>> wlc*: Package size: 128.0 KB >>> wlc*: Compressing data... >>> wlc*: Create checksum... >>> wlc*: Create wlc-1.13-r2.apk >>> wlc: Build complete at Sun, 30 Apr 2023 22:08:36 +0000 elapsed time 0h 0m 14s >>> wlc: Cleaning up srcdir >>> wlc: Cleaning up pkgdir >>> wlc: Uninstalling dependencies... (1/35) Purging .makedepends-wlc (20230430.220827) (2/35) Purging py3-argcomplete-pyc (2.0.5-r1) (3/35) Purging py3-argcomplete (2.0.5-r1) (4/35) Purging py3-dateutil-pyc (2.8.2-r3) (5/35) Purging py3-dateutil (2.8.2-r3) (6/35) Purging py3-six-pyc (1.16.0-r6) (7/35) Purging py3-six (1.16.0-r6) (8/35) Purging py3-requests-pyc (2.29.0-r0) (9/35) Purging py3-requests (2.29.0-r0) (10/35) Purging py3-certifi-pyc (2022.12.7-r2) (11/35) Purging py3-certifi (2022.12.7-r2) (12/35) Purging py3-charset-normalizer-pyc (3.1.0-r1) (13/35) Purging py3-charset-normalizer (3.1.0-r1) (14/35) Purging py3-idna-pyc (3.4-r4) (15/35) Purging py3-idna (3.4-r4) (16/35) Purging py3-urllib3-pyc (1.26.15-r1) (17/35) Purging py3-urllib3 (1.26.15-r1) (18/35) Purging py3-xdg-pyc (0.28-r2) (19/35) Purging py3-xdg (0.28-r2) (20/35) Purging py3-setuptools-pyc (67.7.2-r0) (21/35) Purging py3-setuptools (67.7.2-r0) (22/35) Purging py3-packaging-pyc (23.1-r1) (23/35) Purging py3-packaging (23.1-r1) (24/35) Purging py3-parsing-pyc (3.0.9-r2) (25/35) Purging py3-parsing (3.0.9-r2) (26/35) Purging python3-pyc (3.11.3-r10) (27/35) Purging python3-pycache-pyc0 (3.11.3-r10) (28/35) Purging pyc (0.1-r0) (29/35) Purging python3 (3.11.3-r10) (30/35) Purging gdbm (1.23-r1) (31/35) Purging libbz2 (1.0.8-r5) (32/35) Purging libpanelw (6.4_p20230424-r0) (33/35) Purging mpdecimal (2.5.1-r2) (34/35) Purging readline (8.2.1-r1) (35/35) Purging sqlite-libs (3.41.2-r2) Executing busybox-1.36.0-r8.trigger OK: 966 MiB in 103 packages >>> wlc: Updating the testing/riscv64 repository index... >>> wlc: Signing the index...