chayleaf

Results 41 issues of chayleaf

This would close #809. It can also allow rebinding the UDP socket port, but that isn't implemented (granted, it's a single-line change) I've still to create examples, tests and documentation,...

> The `$XDG_STATE_HOME` contains state data that should persist between (application) restarts, but that is not important or portable enough to the user that it should be stored in `$XDG_DATA_HOME`.

The [setuptools documentation](https://setuptools.pypa.io/en/latest/pkg_resources.html) mentions: > Use of pkg_resources is deprecated in favor of [importlib.resources](https://docs.python.org/3.11/library/importlib.resources.html#module-importlib.resources), [importlib.metadata](https://docs.python.org/3.11/library/importlib.metadata.html#module-importlib.metadata) and their backports ([importlib_resources](https://pypi.org/project/importlib_resources), [importlib_metadata](https://pypi.org/project/importlib_metadata)). Some useful APIs are also provided by [packaging](https://pypi.org/project/packaging) (e.g. requirements...

I'm currently trying to [package](https://github.com/NixOS/nixpkgs/pull/154261) maubot for NixOS, but since Maubot is supposed to be an application, I want to package it as one - not as a module. I...

> The `$XDG_STATE_HOME` contains state data that should persist between (application) restarts, but that is not important or portable enough to the user that it should be stored in `$XDG_DATA_HOME`....

- Cache files should be put to the path specified by the `XDG_CACHE_HOME` env var, or `~/.cache` if it isn't set. - Config files should be put to `XDG_CONFIG_HOME` or...

linux

**Is your feature request related to a problem? Please describe.** See [Python docs](https://docs.python.org/3/library/mailcap.html) - mailcap module is deprecated **Describe the solution you'd like** Writing a custom mailcap file loader that...

cleanup

I created the derivations, it's better if the additional files to be put in `valve` are instead packed into a zip file and passed via `XASH3D_EXTRAS_PAK2` env var, otherwise setup...

Run-time error '13': Type mismatch ![1](https://cloud.githubusercontent.com/assets/9590981/4936734/9d4871dc-65bc-11e4-9d2d-6e69b2fe4a55.jpg) ![2](https://cloud.githubusercontent.com/assets/9590981/4936733/9d477f02-65bc-11e4-9a10-942c566adb65.jpg) ![3](https://cloud.githubusercontent.com/assets/9590981/4936735/9d4e3306-65bc-11e4-8e59-0021a88533e3.jpg) ![4](https://cloud.githubusercontent.com/assets/9590981/4936736/9d55ab36-65bc-11e4-95a4-381fdb13de5c.jpg) ![paint](https://cloud.githubusercontent.com/assets/9590981/4936743/af1358be-65bc-11e4-85a7-559f8dd8937e.jpg)

`CMAKE_INSTALL_LIBDIR` and `CMAKE_INSTALL_INCLUDEDIR` are allowed to be absolute [as per CMake docs](https://cmake.org/cmake/help/latest/module/GNUInstallDirs.html), so they shouldn't be concatenated to absolute paths. Instead, use `CMAKE_INSTALL_FULL_LIBDIR` and `CMAKE_INSTALL_FULL_INCLUDEDIR`, which are known to be...