==> Synchronizing chroot copy [/home/leming/armv8/root] -> [leming]...done ==> Making package: jupyterlab-pygments 0.2.2-1 (Fri Jun 23 21:44:25 2023) ==> Retrieving sources... -> Found jupyterlab_pygments-0.2.2.tar.gz ==> WARNING: Skipping verification of source file PGP signatures. ==> Validating source files with sha256sums... jupyterlab_pygments-0.2.2.tar.gz ... Passed ==> Making package: jupyterlab-pygments 0.2.2-1 (Fri Jun 23 21:44:32 2023) ==> Checking runtime dependencies... ==> Installing missing dependencies... [?25lresolving dependencies... looking for conflicting packages... Packages (3) libnsl-2.0.0-3 python-3.11.3-2 python-pygments-2.15.1-1 Total Installed Size: 89.02 MiB :: Proceed with installation? [Y/n] checking keyring... checking package integrity... loading package files... checking for file conflicts... checking available disk space... :: Processing package changes... installing libnsl... installing python... Optional dependencies for python python-setuptools python-pip sqlite [installed] mpdecimal: for decimal xz: for lzma [installed] tk: for tkinter installing python-pygments... [?25h==> Checking buildtime dependencies... ==> Installing missing dependencies... [?25lresolving dependencies... looking for conflicting packages... Packages (23) python-autocommand-2.2.2-4 python-deprecation-2.1.0-8 python-fastjsonschema-2.17.1-1 python-inflect-6.0.4-2 python-jaraco.context-4.3.0-3 python-jaraco.functools-3.7.0-1 python-jaraco.text-3.11.1-3 python-more-itertools-9.1.1-4 python-ordered-set-4.1.0-4 python-packaging-23.1-1 python-platformdirs-3.5.1-1 python-pydantic-1.10.9-1 python-pyproject-hooks-1.0.0-5 python-setuptools-1:67.8.0-1 python-tomli-2.0.1-3 python-tomlkit-0.11.8-2 python-trove-classifiers-2023.5.24-1 python-typing_extensions-4.6.3-1 python-validate-pyproject-0.13-1 python-wheel-0.40.0-3 python-build-0.10.0-4 python-installer-0.7.0-3 python-jupyter-packaging-0.12.3-4 Total Installed Size: 18.24 MiB :: Proceed with installation? [Y/n] checking keyring... checking package integrity... loading package files... checking for file conflicts... checking available disk space... :: Processing package changes... installing python-packaging... installing python-pyproject-hooks... installing python-build... Optional dependencies for python-build python-virtualenv: Use virtualenv for build isolation installing python-installer... installing python-deprecation... installing python-wheel... Optional dependencies for python-wheel python-keyring: for wheel.signatures python-xdg: for wheel.signatures installing python-tomlkit... installing python-more-itertools... installing python-jaraco.functools... installing python-jaraco.context... installing python-autocommand... installing python-typing_extensions... installing python-pydantic... Optional dependencies for python-pydantic python-dotenv: for .env file support python-email-validator: for email validation installing python-inflect... installing python-jaraco.text... installing python-ordered-set... installing python-platformdirs... installing python-tomli... installing python-fastjsonschema... installing python-trove-classifiers... installing python-validate-pyproject... installing python-setuptools... installing python-jupyter-packaging... [?25h==> Retrieving sources... -> Found jupyterlab_pygments-0.2.2.tar.gz ==> WARNING: Skipping all source file integrity checks. ==> Extracting sources... -> Extracting jupyterlab_pygments-0.2.2.tar.gz with bsdtar ==> Starting build()... * Building wheel... /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 bdist_wheel running ensure_targets running build running build_py creating build creating build/lib creating build/lib/jupyterlab_pygments copying jupyterlab_pygments/_version.py -> build/lib/jupyterlab_pygments copying jupyterlab_pygments/style.py -> build/lib/jupyterlab_pygments copying jupyterlab_pygments/__init__.py -> build/lib/jupyterlab_pygments running egg_info writing jupyterlab_pygments.egg-info/PKG-INFO writing dependency_links to jupyterlab_pygments.egg-info/dependency_links.txt writing top-level names to jupyterlab_pygments.egg-info/top_level.txt reading manifest file 'jupyterlab_pygments.egg-info/SOURCES.txt' reading manifest template 'MANIFEST.in' no previously-included directories found matching '**/node_modules' no previously-included directories found matching 'lib' no previously-included directories found matching 'binder' warning: no previously-included files matching '*~' found anywhere in distribution warning: no previously-included files matching '*.pyc' found anywhere in distribution warning: no previously-included files matching '*.pyo' found anywhere in distribution warning: no previously-included files matching '.git' found anywhere in distribution warning: no previously-included files matching '.ipynb_checkpoints' found anywhere in distribution adding license file 'LICENSE' writing manifest file 'jupyterlab_pygments.egg-info/SOURCES.txt' /usr/lib/python3.11/site-packages/setuptools/command/build_py.py:201: _Warning: Package 'jupyterlab_pygments.labextension' is absent from the `packages` configuration. !! ******************************************************************************** ############################ # Package would be ignored # ############################ Python recognizes 'jupyterlab_pygments.labextension' 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 'jupyterlab_pygments.labextension' 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 'jupyterlab_pygments.labextension' to be distributed and are already explicitly excluding 'jupyterlab_pygments.labextension' 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 'jupyterlab_pygments.labextension.static' is absent from the `packages` configuration. !! ******************************************************************************** ############################ # Package would be ignored # ############################ Python recognizes 'jupyterlab_pygments.labextension.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 'jupyterlab_pygments.labextension.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 'jupyterlab_pygments.labextension.static' to be distributed and are already explicitly excluding 'jupyterlab_pygments.labextension.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) creating build/lib/jupyterlab_pygments/labextension copying jupyterlab_pygments/labextension/package.json -> build/lib/jupyterlab_pygments/labextension creating build/lib/jupyterlab_pygments/labextension/static copying jupyterlab_pygments/labextension/static/568.1e2faa2ba0bbe59c4780.js -> build/lib/jupyterlab_pygments/labextension/static copying jupyterlab_pygments/labextension/static/747.8eb3ddccc7ec4987bff9.js -> build/lib/jupyterlab_pygments/labextension/static copying jupyterlab_pygments/labextension/static/remoteEntry.aa1060b2d1221f8e5688.js -> build/lib/jupyterlab_pygments/labextension/static copying jupyterlab_pygments/labextension/static/style.js -> build/lib/jupyterlab_pygments/labextension/static copying jupyterlab_pygments/labextension/static/third-party-licenses.json -> build/lib/jupyterlab_pygments/labextension/static installing to build/bdist.linux-aarch64/wheel running install running install_lib creating build/bdist.linux-aarch64 creating build/bdist.linux-aarch64/wheel creating build/bdist.linux-aarch64/wheel/jupyterlab_pygments copying build/lib/jupyterlab_pygments/_version.py -> build/bdist.linux-aarch64/wheel/jupyterlab_pygments copying build/lib/jupyterlab_pygments/style.py -> build/bdist.linux-aarch64/wheel/jupyterlab_pygments creating build/bdist.linux-aarch64/wheel/jupyterlab_pygments/labextension creating build/bdist.linux-aarch64/wheel/jupyterlab_pygments/labextension/static copying build/lib/jupyterlab_pygments/labextension/static/747.8eb3ddccc7ec4987bff9.js -> build/bdist.linux-aarch64/wheel/jupyterlab_pygments/labextension/static copying build/lib/jupyterlab_pygments/labextension/static/568.1e2faa2ba0bbe59c4780.js -> build/bdist.linux-aarch64/wheel/jupyterlab_pygments/labextension/static copying build/lib/jupyterlab_pygments/labextension/static/remoteEntry.aa1060b2d1221f8e5688.js -> build/bdist.linux-aarch64/wheel/jupyterlab_pygments/labextension/static copying build/lib/jupyterlab_pygments/labextension/static/third-party-licenses.json -> build/bdist.linux-aarch64/wheel/jupyterlab_pygments/labextension/static copying build/lib/jupyterlab_pygments/labextension/static/style.js -> build/bdist.linux-aarch64/wheel/jupyterlab_pygments/labextension/static copying build/lib/jupyterlab_pygments/labextension/package.json -> build/bdist.linux-aarch64/wheel/jupyterlab_pygments/labextension copying build/lib/jupyterlab_pygments/__init__.py -> build/bdist.linux-aarch64/wheel/jupyterlab_pygments running install_data creating build/bdist.linux-aarch64/wheel/jupyterlab_pygments-0.2.2.data creating build/bdist.linux-aarch64/wheel/jupyterlab_pygments-0.2.2.data/data creating build/bdist.linux-aarch64/wheel/jupyterlab_pygments-0.2.2.data/data/share creating build/bdist.linux-aarch64/wheel/jupyterlab_pygments-0.2.2.data/data/share/jupyter creating build/bdist.linux-aarch64/wheel/jupyterlab_pygments-0.2.2.data/data/share/jupyter/labextensions creating build/bdist.linux-aarch64/wheel/jupyterlab_pygments-0.2.2.data/data/share/jupyter/labextensions/jupyterlab_pygments creating build/bdist.linux-aarch64/wheel/jupyterlab_pygments-0.2.2.data/data/share/jupyter/labextensions/jupyterlab_pygments/static copying jupyterlab_pygments/labextension/static/747.8eb3ddccc7ec4987bff9.js -> build/bdist.linux-aarch64/wheel/jupyterlab_pygments-0.2.2.data/data/share/jupyter/labextensions/jupyterlab_pygments/static copying jupyterlab_pygments/labextension/static/third-party-licenses.json -> build/bdist.linux-aarch64/wheel/jupyterlab_pygments-0.2.2.data/data/share/jupyter/labextensions/jupyterlab_pygments/static copying jupyterlab_pygments/labextension/static/remoteEntry.aa1060b2d1221f8e5688.js -> build/bdist.linux-aarch64/wheel/jupyterlab_pygments-0.2.2.data/data/share/jupyter/labextensions/jupyterlab_pygments/static copying jupyterlab_pygments/labextension/static/568.1e2faa2ba0bbe59c4780.js -> build/bdist.linux-aarch64/wheel/jupyterlab_pygments-0.2.2.data/data/share/jupyter/labextensions/jupyterlab_pygments/static copying jupyterlab_pygments/labextension/static/style.js -> build/bdist.linux-aarch64/wheel/jupyterlab_pygments-0.2.2.data/data/share/jupyter/labextensions/jupyterlab_pygments/static copying jupyterlab_pygments/labextension/package.json -> build/bdist.linux-aarch64/wheel/jupyterlab_pygments-0.2.2.data/data/share/jupyter/labextensions/jupyterlab_pygments copying install.json -> build/bdist.linux-aarch64/wheel/jupyterlab_pygments-0.2.2.data/data/share/jupyter/labextensions/jupyterlab_pygments running install_egg_info Copying jupyterlab_pygments.egg-info to build/bdist.linux-aarch64/wheel/jupyterlab_pygments-0.2.2-py3.11.egg-info running install_scripts creating build/bdist.linux-aarch64/wheel/jupyterlab_pygments-0.2.2.dist-info/WHEEL creating '/build/jupyterlab-pygments/src/jupyterlab_pygments-0.2.2/dist/.tmp-foiwaldv/jupyterlab_pygments-0.2.2-py2.py3-none-any.whl' and adding 'build/bdist.linux-aarch64/wheel' to it adding 'jupyterlab_pygments/__init__.py' adding 'jupyterlab_pygments/_version.py' adding 'jupyterlab_pygments/style.py' adding 'jupyterlab_pygments/labextension/package.json' adding 'jupyterlab_pygments/labextension/static/568.1e2faa2ba0bbe59c4780.js' adding 'jupyterlab_pygments/labextension/static/747.8eb3ddccc7ec4987bff9.js' adding 'jupyterlab_pygments/labextension/static/remoteEntry.aa1060b2d1221f8e5688.js' adding 'jupyterlab_pygments/labextension/static/style.js' adding 'jupyterlab_pygments/labextension/static/third-party-licenses.json' adding 'jupyterlab_pygments-0.2.2.data/data/share/jupyter/labextensions/jupyterlab_pygments/install.json' adding 'jupyterlab_pygments-0.2.2.data/data/share/jupyter/labextensions/jupyterlab_pygments/package.json' adding 'jupyterlab_pygments-0.2.2.data/data/share/jupyter/labextensions/jupyterlab_pygments/static/568.1e2faa2ba0bbe59c4780.js' adding 'jupyterlab_pygments-0.2.2.data/data/share/jupyter/labextensions/jupyterlab_pygments/static/747.8eb3ddccc7ec4987bff9.js' adding 'jupyterlab_pygments-0.2.2.data/data/share/jupyter/labextensions/jupyterlab_pygments/static/remoteEntry.aa1060b2d1221f8e5688.js' adding 'jupyterlab_pygments-0.2.2.data/data/share/jupyter/labextensions/jupyterlab_pygments/static/style.js' adding 'jupyterlab_pygments-0.2.2.data/data/share/jupyter/labextensions/jupyterlab_pygments/static/third-party-licenses.json' adding 'jupyterlab_pygments-0.2.2.dist-info/LICENSE' adding 'jupyterlab_pygments-0.2.2.dist-info/METADATA' adding 'jupyterlab_pygments-0.2.2.dist-info/WHEEL' adding 'jupyterlab_pygments-0.2.2.dist-info/top_level.txt' adding 'jupyterlab_pygments-0.2.2.dist-info/RECORD' removing build/bdist.linux-aarch64/wheel Successfully built jupyterlab_pygments-0.2.2-py2.py3-none-any.whl ==> Entering fakeroot environment... ==> Starting package()... ==> Tidying install... -> Removing libtool files... -> Purging unwanted files... -> Removing static library files... -> Stripping unneeded symbols from binaries and libraries... -> Compressing man and info pages... ==> Checking for packaging issues... ==> Creating package "jupyterlab-pygments"... -> Generating .PKGINFO file... -> Generating .BUILDINFO file... -> Generating .MTREE file... -> Compressing package... ==> Leaving fakeroot environment. ==> Finished making: jupyterlab-pygments 0.2.2-1 (Fri Jun 23 21:44:40 2023) ==> Cleaning up...