Search Criteria
Package Details: lxdui 2.1.3-2
Package Actions
| Git Clone URL: | https://aur.archlinux.org/lxdui.git (read-only, click to copy) |
|---|---|
| Package Base: | lxdui |
| Description: | Web UI for the native Linux container technology LXD/LXC |
| Upstream URL: | https://github.com/AdaptiveScale/lxdui |
| Licenses: | AGPL3 |
| Provides: | lxdui |
| Submitter: | pa314159 |
| Maintainer: | pa314159 |
| Last Packager: | pa314159 |
| Votes: | 3 |
| Popularity: | 0.000000 |
| First Submitted: | 2018-06-29 15:22 (UTC) |
| Last Updated: | 2026-07-16 18:46 (UTC) |
Dependencies (7)
- lxd (lxd-gitAUR, lxd516AUR)
- python-flask
- python-netaddr
- python-pylxd
- python-terminado
- python-setuptools (make)
- python-virtualenv (make)
Latest Comments
pa314159 commented on 2026-07-16 17:02 (UTC)
@aleckt there is no new stable release since 2020
aleckt commented on 2026-07-15 20:36 (UTC)
i just realized the project is unmaintained since 2020 :/
aleckt commented on 2026-07-15 20:24 (UTC) (edited on 2026-07-15 20:27 (UTC) by aleckt)
Package fails to build on current Python/setuptools (tested with Python 3.14):
mv: impossible d'évaluer '.../LXDUI-2.1.3-py3.14.egg/conf/*': Aucun fichier ou dossier de ce nom
==> ERROR: A failure occurred in package().
The mv command in package() expects an old .egg-style install path that setuptools no longer creates : conf/ now lands directly in site-packages/conf/ Swapping to that path fixes it:
-mv $pkgdir/usr/lib/$pkgname/lib/python$PYVER/site-packages/LXDUI-$pkgver-py$PYVER.egg/conf/* $pkgdir/etc/$pkgnam
+mv $pkgdir/usr/lib/$pkgname/lib/python$PYVER/site-packages/conf/* $pkgdir/etc/$pkgname
Builds and installs fine after this change, but fails to start due to a jwt requirement.... ?
ModuleNotFoundError: No module named 'jwt'
Checking for missing dependency...