From https://aur.archlinux.org/python-webssh 1503c5a..d659e0a master -> origin/master Updating 1503c5a..d659e0a Fast-forward .SRCINFO | 9 ++++----- .gitignore | 4 ++++ PKGBUILD | 12 +++--------- 3 files changed, 11 insertions(+), 14 deletions(-) create mode 100644 .gitignore ==> Making package: python-webssh 1.6.2-2 (Wed Sep 17 15:49:31 2025) ==> Checking runtime dependencies... ==> Checking buildtime dependencies... ==> Retrieving sources... -> Downloading python-webssh-1.6.2.tar.gz... % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 178k 100 178k 0 0 511k 0 --:--:-- --:--:-- --:--:-- 511k -> Found webssh.conf.d -> Found webssh.service -> Found sysusers.conf ==> Validating source files with sha256sums... python-webssh-1.6.2.tar.gz ... Passed webssh.conf.d ... Passed webssh.service ... Passed sysusers.conf ... Passed ==> Extracting sources... -> Extracting python-webssh-1.6.2.tar.gz with bsdtar ==> Removing existing $pkgdir/ directory... ==> Starting build()... * Getting build dependencies for wheel... running egg_info writing webssh.egg-info/PKG-INFO writing dependency_links to webssh.egg-info/dependency_links.txt writing entry points to webssh.egg-info/entry_points.txt writing requirements to webssh.egg-info/requires.txt writing top-level names to webssh.egg-info/top_level.txt reading manifest file 'webssh.egg-info/SOURCES.txt' reading manifest template 'MANIFEST.in' no previously-included directories found matching 'tests/__pycache__' no previously-included directories found matching 'tests/.pytest_cache' no previously-included directories found matching 'webssh/.pytest_cache' warning: no previously-included files matching '*.pyc' found anywhere in distribution warning: no previously-included files matching '*.log' found anywhere in distribution warning: no previously-included files matching '.coverage' found anywhere in distribution adding license file 'LICENSE' writing manifest file 'webssh.egg-info/SOURCES.txt' * Building wheel... running bdist_wheel The [wheel] section is deprecated. Use [bdist_wheel] instead. /usr/lib/python3.13/site-packages/setuptools/_distutils/cmd.py:135: SetuptoolsDeprecationWarning: bdist_wheel.universal is deprecated !! ******************************************************************************** With Python 2.7 end-of-life, support for building universal wheels (i.e., wheels that support both Python 2 and Python 3) is being obviated. Please discontinue using this option, or if you still need it, file an issue with pypa/setuptools describing your use case. This deprecation is overdue, please update your project and remove deprecated calls to avoid build errors in the future. ******************************************************************************** !! self.finalize_options() running build running build_py creating build/lib/webssh copying webssh/__init__.py -> build/lib/webssh copying webssh/_version.py -> build/lib/webssh copying webssh/handler.py -> build/lib/webssh copying webssh/main.py -> build/lib/webssh copying webssh/policy.py -> build/lib/webssh copying webssh/settings.py -> build/lib/webssh copying webssh/utils.py -> build/lib/webssh copying webssh/worker.py -> build/lib/webssh running egg_info writing webssh.egg-info/PKG-INFO writing dependency_links to webssh.egg-info/dependency_links.txt writing entry points to webssh.egg-info/entry_points.txt writing requirements to webssh.egg-info/requires.txt writing top-level names to webssh.egg-info/top_level.txt reading manifest file 'webssh.egg-info/SOURCES.txt' reading manifest template 'MANIFEST.in' no previously-included directories found matching 'tests/__pycache__' no previously-included directories found matching 'tests/.pytest_cache' no previously-included directories found matching 'webssh/.pytest_cache' warning: no previously-included files matching '*.pyc' found anywhere in distribution warning: no previously-included files matching '*.log' found anywhere in distribution warning: no previously-included files matching '.coverage' found anywhere in distribution adding license file 'LICENSE' writing manifest file 'webssh.egg-info/SOURCES.txt' /usr/lib/python3.13/site-packages/setuptools/command/build_py.py:212: _Warning: Package 'webssh.static.css' is absent from the `packages` configuration. !! ******************************************************************************** ############################ # Package would be ignored # ############################ Python recognizes 'webssh.static.css' 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 'webssh.static.css' 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 'webssh.static.css' to be distributed and are already explicitly excluding 'webssh.static.css' 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.13/site-packages/setuptools/command/build_py.py:212: _Warning: Package 'webssh.static.css.fonts' is absent from the `packages` configuration. !! ******************************************************************************** ############################ # Package would be ignored # ############################ Python recognizes 'webssh.static.css.fonts' 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 'webssh.static.css.fonts' 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 'webssh.static.css.fonts' to be distributed and are already explicitly excluding 'webssh.static.css.fonts' 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.13/site-packages/setuptools/command/build_py.py:212: _Warning: Package 'webssh.static.img' is absent from the `packages` configuration. !! ******************************************************************************** ############################ # Package would be ignored # ############################ Python recognizes 'webssh.static.img' 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 'webssh.static.img' 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 'webssh.static.img' to be distributed and are already explicitly excluding 'webssh.static.img' 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.13/site-packages/setuptools/command/build_py.py:212: _Warning: Package 'webssh.static.js' is absent from the `packages` configuration. !! ******************************************************************************** ############################ # Package would be ignored # ############################ Python recognizes 'webssh.static.js' 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 'webssh.static.js' 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 'webssh.static.js' to be distributed and are already explicitly excluding 'webssh.static.js' 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.13/site-packages/setuptools/command/build_py.py:212: _Warning: Package 'webssh.templates' is absent from the `packages` configuration. !! ******************************************************************************** ############################ # Package would be ignored # ############################ Python recognizes 'webssh.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 'webssh.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 'webssh.templates' to be distributed and are already explicitly excluding 'webssh.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) creating build/lib/webssh/static/css copying webssh/static/css/bootstrap.min.css -> build/lib/webssh/static/css copying webssh/static/css/fullscreen.min.css -> build/lib/webssh/static/css copying webssh/static/css/xterm.min.css -> build/lib/webssh/static/css creating build/lib/webssh/static/css/fonts copying webssh/static/css/fonts/.gitignore -> build/lib/webssh/static/css/fonts creating build/lib/webssh/static/img copying webssh/static/img/favicon.png -> build/lib/webssh/static/img creating build/lib/webssh/static/js copying webssh/static/js/bootstrap.min.js -> build/lib/webssh/static/js copying webssh/static/js/jquery.min.js -> build/lib/webssh/static/js copying webssh/static/js/main.js -> build/lib/webssh/static/js copying webssh/static/js/popper.min.js -> build/lib/webssh/static/js copying webssh/static/js/xterm-addon-fit.min.js -> build/lib/webssh/static/js copying webssh/static/js/xterm.min.js -> build/lib/webssh/static/js creating build/lib/webssh/templates copying webssh/templates/index.html -> build/lib/webssh/templates installing to build/bdist.linux-x86_64/wheel running install running install_lib creating build/bdist.linux-x86_64/wheel creating build/bdist.linux-x86_64/wheel/webssh copying build/lib/webssh/__init__.py -> build/bdist.linux-x86_64/wheel/./webssh copying build/lib/webssh/_version.py -> build/bdist.linux-x86_64/wheel/./webssh copying build/lib/webssh/handler.py -> build/bdist.linux-x86_64/wheel/./webssh copying build/lib/webssh/main.py -> build/bdist.linux-x86_64/wheel/./webssh copying build/lib/webssh/policy.py -> build/bdist.linux-x86_64/wheel/./webssh copying build/lib/webssh/settings.py -> build/bdist.linux-x86_64/wheel/./webssh copying build/lib/webssh/utils.py -> build/bdist.linux-x86_64/wheel/./webssh copying build/lib/webssh/worker.py -> build/bdist.linux-x86_64/wheel/./webssh creating build/bdist.linux-x86_64/wheel/webssh/static creating build/bdist.linux-x86_64/wheel/webssh/static/css copying build/lib/webssh/static/css/bootstrap.min.css -> build/bdist.linux-x86_64/wheel/./webssh/static/css copying build/lib/webssh/static/css/fullscreen.min.css -> build/bdist.linux-x86_64/wheel/./webssh/static/css copying build/lib/webssh/static/css/xterm.min.css -> build/bdist.linux-x86_64/wheel/./webssh/static/css creating build/bdist.linux-x86_64/wheel/webssh/static/css/fonts copying build/lib/webssh/static/css/fonts/.gitignore -> build/bdist.linux-x86_64/wheel/./webssh/static/css/fonts creating build/bdist.linux-x86_64/wheel/webssh/static/img copying build/lib/webssh/static/img/favicon.png -> build/bdist.linux-x86_64/wheel/./webssh/static/img creating build/bdist.linux-x86_64/wheel/webssh/static/js copying build/lib/webssh/static/js/bootstrap.min.js -> build/bdist.linux-x86_64/wheel/./webssh/static/js copying build/lib/webssh/static/js/jquery.min.js -> build/bdist.linux-x86_64/wheel/./webssh/static/js copying build/lib/webssh/static/js/main.js -> build/bdist.linux-x86_64/wheel/./webssh/static/js copying build/lib/webssh/static/js/popper.min.js -> build/bdist.linux-x86_64/wheel/./webssh/static/js copying build/lib/webssh/static/js/xterm-addon-fit.min.js -> build/bdist.linux-x86_64/wheel/./webssh/static/js copying build/lib/webssh/static/js/xterm.min.js -> build/bdist.linux-x86_64/wheel/./webssh/static/js creating build/bdist.linux-x86_64/wheel/webssh/templates copying build/lib/webssh/templates/index.html -> build/bdist.linux-x86_64/wheel/./webssh/templates running install_egg_info Copying webssh.egg-info to build/bdist.linux-x86_64/wheel/./webssh-1.6.2-py3.13.egg-info running install_scripts creating build/bdist.linux-x86_64/wheel/webssh-1.6.2.dist-info/WHEEL creating '/srv/maat/src/python-webssh/src/webssh-1.6.2/dist/.tmp-6iy3xdfv/webssh-1.6.2-py2.py3-none-any.whl' and adding 'build/bdist.linux-x86_64/wheel' to it adding 'webssh/__init__.py' adding 'webssh/_version.py' adding 'webssh/handler.py' adding 'webssh/main.py' adding 'webssh/policy.py' adding 'webssh/settings.py' adding 'webssh/utils.py' adding 'webssh/worker.py' adding 'webssh/static/css/bootstrap.min.css' adding 'webssh/static/css/fullscreen.min.css' adding 'webssh/static/css/xterm.min.css' adding 'webssh/static/css/fonts/.gitignore' adding 'webssh/static/img/favicon.png' adding 'webssh/static/js/bootstrap.min.js' adding 'webssh/static/js/jquery.min.js' adding 'webssh/static/js/main.js' adding 'webssh/static/js/popper.min.js' adding 'webssh/static/js/xterm-addon-fit.min.js' adding 'webssh/static/js/xterm.min.js' adding 'webssh/templates/index.html' adding 'webssh-1.6.2.dist-info/licenses/LICENSE' adding 'webssh-1.6.2.dist-info/METADATA' adding 'webssh-1.6.2.dist-info/WHEEL' adding 'webssh-1.6.2.dist-info/entry_points.txt' adding 'webssh-1.6.2.dist-info/top_level.txt' adding 'webssh-1.6.2.dist-info/RECORD' removing build/bdist.linux-x86_64/wheel Successfully built webssh-1.6.2-py2.py3-none-any.whl ==> Entering fakeroot environment... ==> Starting package()... install: creating directory '/srv/maat/src/python-webssh/pkg/python-webssh/usr/share' install: creating directory '/srv/maat/src/python-webssh/pkg/python-webssh/usr/share/licenses' install: creating directory '/srv/maat/src/python-webssh/pkg/python-webssh/usr/share/licenses/python-webssh/' '/srv/maat/src/python-webssh/pkg/python-webssh/usr/share/licenses/python-webssh/LICENSE' -> '/usr/lib/python3.13/site-packages/webssh-1.6.2.dist-info/LICENSE' install: creating directory '/srv/maat/src/python-webssh/pkg/python-webssh/etc' install: creating directory '/srv/maat/src/python-webssh/pkg/python-webssh/etc/conf.d' '/srv/maat/src/python-webssh/src/webssh.conf.d' -> '/srv/maat/src/python-webssh/pkg/python-webssh/etc/conf.d/webssh' install: creating directory '/srv/maat/src/python-webssh/pkg/python-webssh/usr/lib/systemd' install: creating directory '/srv/maat/src/python-webssh/pkg/python-webssh/usr/lib/systemd/system' '/srv/maat/src/python-webssh/src/webssh.service' -> '/srv/maat/src/python-webssh/pkg/python-webssh/usr/lib/systemd/system/webssh.service' install: creating directory '/srv/maat/src/python-webssh/pkg/python-webssh/usr/lib/sysusers.d' '/srv/maat/src/python-webssh/src/sysusers.conf' -> '/srv/maat/src/python-webssh/pkg/python-webssh/usr/lib/sysusers.d/webssh.conf' ==> 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 "python-webssh"... -> Generating .PKGINFO file... -> Generating .BUILDINFO file... -> Generating .MTREE file... -> Compressing package... ==> Leaving fakeroot environment. ==> Signing package(s)... -> Created signature file python-webssh-1.6.2-2-any.pkg.tar.zst.sig. ==> Finished making: python-webssh 1.6.2-2 (Wed Sep 17 15:49:33 2025) ==> Cleaning up...