| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
x86/ppc64le/mips.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
| |
gsa uses "${CMAKE_INSTALL_PREFIX}/etc/default" and
"${CMAKE_INSTALL_PREFIX}/etc/logrotate.d" as default unless otherwise
specified which resulted in the files being installed in /usr/etc/
instead of in /usr
|
| |
|
|
|
|
| |
Ref https://github.com/xmrig/xmrig/releases
|
|
|
|
|
|
|
|
|
|
| |
drop lxc dependency, as apk detects the lxc-libs dep and the init
script creates the required directory itself.
fix the init script: when the container manager failed, the openRC
service wasn't able to start. It could not be started again because
anbox-bridge.sh errored out: it was unable to create an already
existing interface.
|
| |
|
| |
|
| |
|
|
|
|
|
| |
Previously the file /usr/etc/xdg/dfc/dfcrc would be installed which is
incorrect. Fix this by explitely setting the sysconfdir.
|
|
|
|
| |
- Add bash-completion subpackage
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
| |
- Add missing bash-completion subpackage
- Add missing zsh-completion subpackage
- Add missing fish-completion subpackage
- Install to 'lib' not 'lib64'
|
| |
|
| |
|
|
|
|
|
| |
Apparently some packages weren't rebuilt correclty against libffi.so.7
on some arches and still need libffi.so.6
|
|
|
|
|
| |
Apparently some packages weren't rebuilt correclty against libffi.so.7
on some arches and still need libffi.so.6
|
|
|
|
|
| |
Apparently some packages weren't rebuilt correclty against libffi.so.7
on some arches and still need libffi.so.6
|
|
|
|
|
| |
Apparently some packages weren't rebuilt correclty against libffi.so.7
on some arches and still need libffi.so.6
|
|
|
|
|
| |
Apparently some packages weren't rebuilt correclty against libffi.so.7
on some arches and still need libffi.so.6
|
|
|
|
|
| |
Apparently some packages weren't rebuilt correclty against libffi.so.7
on some arches and still need libffi.so.6
|
|
|
|
|
| |
Apparently some packages weren't rebuilt correclty against libffi.so.7
on some arches and still need libffi.so.6
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
Currently the autostart file gets installed into
/usr/etc/xdg/autostart/org.gnome.Evolution-alarm-notify.desktop which is
wrong, so fix the location by passing cmake the correct directory.
|
| |
|
|
|
|
|
|
|
| |
Currently bash completions are getting installed to
/usr/etc/bash_completion.d/nitrokey-app which is incorrect. The upstream
cmake scripts query the bash completion location via pkg-config, so
make sure that bash-completion.pc gets installed during the build.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Before this change:
$ dabuild sh
$ sudo apk add py3-babel >/dev/null && pybabel --version
Traceback (most recent call last):
File "/usr/bin/pybabel", line 6, in <module>
from pkg_resources import load_entry_point
ModuleNotFoundError: No module named 'pkg_resources'
This change adds py3-setuptools as a runtime dependency because pkg_resources is
imported by a file installed into /usr/bin/:
$ grep pkg_resources /usr/bin/pybabel
from pkg_resources import load_entry_point
pkg_resources is part of py3-setuptools:
$ apk info -L py3-setuptools | grep pkg_resources/__init__.py
usr/lib/python3.8/site-packages/pkg_resources/__init__.py
After this change:
$ dabuild sh
$ sudo apk add py3-babel >/dev/null && pybabel --version
pybabel 2.8.0
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Before this change:
$ dabuild sh
$ sudo apk add py3-mako >/dev/null && mako-render --help | head -n 1
Traceback (most recent call last):
File "/usr/bin/virtualenv", line 6, in <module>
from pkg_resources import load_entry_point
ModuleNotFoundError: No module named 'pkg_resources'
This change adds py3-setuptools as a runtime dependency because
pkg_resources is imported by a file installed into /usr/bin/:
$ grep pkg_resources /usr/bin/mako-render
from pkg_resources import load_entry_point
pkg_resources is part of py3-setuptools:
$ apk info -L py3-setuptools | grep pkg_resources/__init__.py
usr/lib/python3.8/site-packages/pkg_resources/__init__.py
After this change:
$ dabuild sh
$ sudo apk add py3-mako >/dev/null && mako-render --help | head -n 1
usage: mako-render [-h] [--var VAR] [--template-dir TEMPLATE_DIR]
|
| |
|
| |
|
| |
|