| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Before this change:
$ sudo apk add py3-distro
✂
$ distro --help
Traceback (most recent call last):
File "/usr/bin/distro", line 6, in <module>
from pkg_resources import load_entry_point
ModuleNotFoundError: No module named 'pkg_resources'
After this change:
$ sudo apk add py3-distro
✂
$ distro --help
usage: distro [-h] [--json]
✂
The above commands were run inside docker-abuild with `dabuild sh`.
The change is required because `/usr/bin/distro` 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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Change syntax so that linting passes. Tested manually by (1) installing
the relevant packages and start bash and (2) trying out
completion in bash. 1:
sudo apk add bash bash-completion aws-cli && bash
Test:
. /etc/profile.d/bash_completion.sh
complete -C '/usr/bin/aws_completer' aws
Then typing `aws bu<Tab>` → `aws budgets`
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Before this change:
$ sudo apk add py3-gitlab
✂
$ gitlab --version
Traceback (most recent call last):
File "/usr/bin/gitlab", line 6, in <module>
from pkg_resources import load_entry_point
ModuleNotFoundError: No module named 'pkg_resources'
After this change:
$ sudo apk add py3-gitlab
✂
$ gitlab --version
2.2.0
The commands above were run inside docker-abuild using `dabuild sh`.
The change is required because `/usr/bin/gitlab` 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
|
|
|
|
| |
fixes #11379
|
|
|
|
|
| |
- enable test suite
- update URL to match new GitHub organisation
|
|
|
|
| |
https://github.com/httplib2/httplib2/blob/master/CHANGELOG#L1
|
| |
|
| |
|
| |
|
|
|
|
|
| |
Enable 35 tests in six files; all of the tests that don't require
httmock.
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
`py3-setuptools` is required at runtime because /usr/bin/img2pdf
includes the line:
from pkg_resources import load_entry_point
`pkg_resources` is a part of py3-setuptools:
$ apk info -W /usr/lib/python3.8/site-packages/pkg_resources/__init__.py
/usr/lib/python3.8/site-packages/pkg_resources/__init__.py is owned by py3-setuptools-46.1.3-r0
Before this change, img2pdf exits with the error below:
$ img2pdf --version
Traceback (most recent call last):
File "/usr/bin/img2pdf", line 6, in <module>
from pkg_resources import load_entry_point
ModuleNotFoundError: No module named 'pkg_resources'
After this change img2pdf succeeds:
$ img2pdf --version
img2pdf 0.3.4
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
flake8 refuses to start with pyflakes 2.2.x. Work around this, without
downgrading pyflakes, by shipping the current master of flake8 and the
unmerged patch that makes it compatible with 2.2.x. I've tried to apply
the patch on top of the latest release, but that did not work. This
version appears to be working fine however, and I think it's the best we
can do in this situation. I'll add a warning to py3-pyflakes to prevent
this in the future.
Related: https://gitlab.com/pycqa/flake8/-/merge_requests/417
Fixes: #11378
|
|
|
|
|
| |
add crystal-molinillo build dependency because it is needed for this
shards version
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
Also add musl-dbg to depends, this is required to
get any useful debug info out of the backtrace
subcommand
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
Otherwise it complains about msgmerge missing on
startup
|
|
|
|
| |
ghc no longer needs it
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
CMAKE_BUILD_TYPE=None
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|