| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Before this change:
$ dabuild sh
$ sudo apk add py3-wheel >/dev/null && wheel --help
Traceback (most recent call last):
File "/usr/bin/wheel", 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/wheel
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-wheel >/dev/null && wheel -h
usage: wheel [-h] {unpack,pack,convert,version,help} ...
positional arguments:
{unpack,pack,convert,version,help}
commands
unpack Unpack wheel
pack Repack wheel
convert Convert egg or wininst to wheel
version Print version and exit
help Show this help
optional arguments:
-h, --help show this help message and exit
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Before this change:
$ dabuild sh
$ sudo apk add speedtest-cli >/dev/null && speedtest-cli --version
env: can't execute 'python': No such file or directory
$ speedtest --version
Traceback (most recent call last):
File "/usr/bin/speedtest", line 6, in <module>
from pkg_resources import load_entry_point
ModuleNotFoundError: No module named 'pkg_resources'
This change removes the specific install line for speedtest-cli, because
it leaves a broken shebang first line. setup.py already installs a
speedtest-cli script which a functional shebang line.
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/speedtest
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 speedtest-cli >/dev/null && speedtest-cli --version
speedtest-cli 2.1.2
Python 3.8.2 (default, Apr 9 2020, 21:05:08) [GCC 9.3.0]
$ speedtest --version
speedtest-cli 2.1.2
Python 3.8.2 (default, Apr 9 2020, 21:05:08) [GCC 9.3.0]
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Adds a patch so that the tests work with pytest>=4.0. Upstream have
merged the patch but have not released a new version.
Before this change:
$ sudo apk add py3-chardet
✂
$ chardetect --version
Traceback (most recent call last):
File "/usr/bin/chardetect", line 6, in <module>
from pkg_resources import load_entry_point
ModuleNotFoundError: No module named 'pkg_resources'
After this change:
$ sudo apk add py3-chardet
✂
$ chardetect --version
chardetect 3.0.4
The above commands were run inside docker-abuild with `dabuild sh`.
The change is required because `/usr/bin/chardetect` includes the line:
from pkg_resources import load_entry_point
That means that py3-setuptools is required at runtime:
$ python3 -c 'import pkg_resources; print(pkg_resources.__file__)'
/usr/lib/python3.8/site-packages/pkg_resources/__init__.py
$ apk info -q -W /usr/lib/python3.8/site-packages/pkg_resources/__init__.py
py3-setuptools
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
| |
Allow depending on udev-settle when udev is not desired.
Remove virtual service definition from udev: dev is already provided by
udev-trigger.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
Fixes: https://gitlab.alpinelinux.org/alpine/aports/issues/11361
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
during previous rebuild (commit d95e2bc8267a) python2 was not yet rebuilt against
libffi.so.7 (python2 was rebuilt later, in commit cb2baf840cab) so old
libffi.so.6 was pulled in. Make sure we rebuild it with the updated libffi.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
superseeded by cryptsetup 2.x
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
Does not work correctly as /etc/profile (sourced by zprofile)
overwrites PATH again. Besides, I believe that locations such as ~/bin
should be explicitly enabled by the user. Other shells (e.g. bash, mksh,
…) do not add ~/bin to PATH by default either.
Fixes #11371
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|