aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* community/oq: upgrade to 1.0.2Milan P. Stanić2020-04-121-2/+2
|
* main/py3-virtualenv: upgrade to 20.0.17Keith Maxwell2020-04-121-3/+3
|
* main/py3-virtualenv: add missing dependencyKeith Maxwell2020-04-121-3/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Before this change: $ dabuild sh $ sudo apk add py3-virtualenv >/dev/null && virtualenv --version 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/virtualenv 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-virtualenv >/dev/null && virtualenv --version 16.7.9
* main/py3-tappy: add missing dependencyKeith Maxwell2020-04-121-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Before this change: $ dabuild sh $ sudo apk add py3-tappy >/dev/null && tappy --help Traceback (most recent call last): File "/usr/bin/tappy", 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/tappy import pkg_resources 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-tappy >/dev/null && tappy --help usage: tappy [-h] [-v] [FILE [FILE ...]] A TAP consumer for Python positional arguments: FILE A file containing TAP output. Any directories listed will be scanned for files to include as TAP files. optional arguments: -h, --help show this help message and exit -v, --verbose use verbose messages When no files are given or a dash (-) is used for the file name, tappy will read a TAP stream from STDIN.
* community/kde-frameworks: upgrade to 5.69.0Bart Ribbers2020-04-1282-1099/+496
|
* main/perl-scalar-list-utils: upgrade to 1.55Leo2020-04-121-3/+2
|
* main/libunwind: upgrade to 1.4.0Leo2020-04-122-5/+26
|
* community/rstcheck: move from testingKeith Maxwell2020-04-122-5/+3
|
* testing/zim-tools: upgrade to 1.1.0Leo2020-04-121-11/+9
|
* testing/libzim: upgrade to 6.1.0Leo2020-04-122-5/+20
|
* testing/s3cmd: upgrade to 2.1.0Leo2020-04-121-8/+3
|
* main/py3-pbr: add missing dependencyKeith Maxwell2020-04-121-5/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Before this change: $ dabuild sh $ sudo apk add py3-pbr >/dev/null && pbr --version Traceback (most recent call last): File "/usr/bin/pbr", line 6, in <module> from pbr.cmd.main import main File "/usr/lib/python3.8/site-packages/pbr/cmd/main.py", line 20, in <module> import pkg_resources ModuleNotFoundError: No module named 'pkg_resources' This change adds py3-setuptools as a runtime dependency because pkg_resources is imported by a file imported by /usr/bin/pbr: $ grep 'import pkg_resources' /usr/lib/python3.8/site-packages/pbr/cmd/main.py import pkg_resources 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-pbr >/dev/null && pbr --version 5.4.5
* testing/i2pd: upgrade to 2.31.0Leo2020-04-121-3/+3
|
* testing/howard-bc: upgrade to 2.6.1Leo2020-04-121-5/+4
|
* main/py3-future: add missing dependencyKeith Maxwell2020-04-121-5/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Before this change: $ dabuild sh $ sudo apk add py3-future >/dev/null && futurize --version Traceback (most recent call last): File "/usr/bin/futurize", 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/futurize 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-future >/dev/null && futurize --version 0.18.2
* community/vint: move from testingKeith Maxwell2020-04-122-0/+0
|
* testing/vala-language-server: new aportRasmus Thomsen2020-04-121-0/+34
| | | | | https://github.com/benwaffle/vala-language-server Code Intelligence for Vala
* main/musl: add --enable-debug for assembly unwind infoTimo Teräs2020-04-121-2/+3
| | | | | | | Add --enable-debug configure option. It enables -g which was already set by abuild since -dbg is there. But more importantly this will enable CFI unwind info for assembly sources, so this makes the unwind info in -dbg package complete.
* community/waybar: upgrade to 0.9.2Leo2020-04-121-2/+2
|
* community/waybar: upgrade to 0.9.1Leo2020-04-122-18/+4
|
* main/py3-tox: add missing dependencyKeith Maxwell2020-04-121-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Before this change: $ dabuild sh $ sudo apk add py3-tox >/dev/null && tox --version 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/tox 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-tox >/dev/null && tox --version 3.14.6 imported from /usr/lib/python3.8/site-packages/tox/__init__.py
* community/py3-ansicolor: move from testingKeith Maxwell2020-04-121-0/+0
|
* community/py3-hypothesis: upgrade to 5.8.2Leo2020-04-121-2/+2
|
* testing/flit: upgrade to 2.3.0Leo2020-04-121-3/+3
|
* community/py3-ansicolors: move from testingKeith Maxwell2020-04-122-1/+6
| | | | Also add check()
* testing/py3-gitpython: upgrade to 3.1.1Leo2020-04-121-2/+2
|
* main/man-pages: upgrade to 5.06Leo2020-04-121-2/+2
|
* community/qt5-qtwayland: correct dev dependsBart Ribbers2020-04-121-4/+4
|
* main/py3-wheel: add missing dependencyKeith Maxwell2020-04-121-6/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* main/dnsmasq: upgrade to 2.81Leo2020-04-123-104/+6
|
* main/ncurses: upgrade to 6.2_p20200411Milan P. Stanić2020-04-121-2/+2
|
* main/speedtest-cli: fix command line scriptsKeith Maxwell2020-04-121-4/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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]
* community/py3-hypothesis: upgrade to 5.8.1Leo2020-04-121-2/+2
|
* community/fwupd: build w/ elogindRasmus Thomsen2020-04-121-3/+3
| | | | | | I'd rather not make fwupd hard-depend on elogind, but it's important here, since elogind is required for fwupd to build its dbus daemon, which we need for GNOME Software and KDE Discover
* testing/mdcat: upgrade to 0.16.0Leo2020-04-121-5/+3
| | | | | remove oniguruma from the dependencies as mdcat now uses the pure rust regex backend
* community/perl-alien-build: upgrade to 2.21Timothy Legge2020-04-121-2/+3
|
* community/feh: add preliminary support for testsLeo2020-04-111-0/+6
|
* community/feh: upgrade to 3.4Leo2020-04-111-2/+3
|
* main/yaml: upgrade to 0.2.3Leo2020-04-111-7/+5
|
* community/py3-rsa: add missing dependencyKeith Maxwell2020-04-111-3/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Before this change: $ sudo apk add py3-rsa && pyrsa-verify --help (1/11) Installing libbz2 (1.0.8-r1) (2/11) Installing libffi (3.3-r1) (3/11) Installing gdbm (1.13-r1) (4/11) Installing xz-libs (5.2.5-r0) (5/11) Installing ncurses-terminfo-base (6.2_p20200404-r0) (6/11) Installing ncurses-libs (6.2_p20200404-r0) (7/11) Installing readline (8.0.4-r0) (8/11) Installing sqlite-libs (3.31.1-r1) (9/11) Installing python3 (3.8.2-r5) (10/11) Installing py3-asn1 (0.4.7-r2) (11/11) Installing py3-rsa (4.0-r0) Executing busybox-1.31.1-r14.trigger OK: 276 MiB in 68 packages Traceback (most recent call last): File "/usr/bin/pyrsa-verify", line 6, in <module> from pkg_resources import load_entry_point ModuleNotFoundError: No module named 'pkg_resources' After this change: $ sudo apk add py3-rsa && pyrsa-verify --help (1/17) Installing libbz2 (1.0.8-r1) (2/17) Installing libffi (3.3-r1) (3/17) Installing gdbm (1.13-r1) (4/17) Installing xz-libs (5.2.5-r0) (5/17) Installing ncurses-terminfo-base (6.2_p20200404-r0) (6/17) Installing ncurses-libs (6.2_p20200404-r0) (7/17) Installing readline (8.0.4-r0) (8/17) Installing sqlite-libs (3.31.1-r1) (9/17) Installing python3 (3.8.2-r5) (10/17) Installing py3-asn1 (0.4.7-r2) (11/17) Installing py3-ordered-set (3.1.1-r0) (12/17) Installing py3-appdirs (1.4.3-r2) (13/17) Installing py3-parsing (2.4.7-r0) (14/17) Installing py3-six (1.14.0-r1) (15/17) Installing py3-packaging (20.3-r0) (16/17) Installing py3-setuptools (46.1.3-r0) (17/17) Installing py3-rsa (4.0-r1) Executing busybox-1.31.1-r14.trigger OK: 278 MiB in 74 packages Usage: pyrsa-verify [options] public_key signature_file Verifies a signature, exits with status 0 upon success, prints an error message and exits with status 1 upon error. Options: -h, --help show this help message and exit -i INPUT, --input=INPUT Name of the file to verify. Reads from stdin if not specified. --keyform=KEYFORM Key format of the public key - default PEM The above commands were run inside docker-abuild with `dabuild sh`. The change is required because `/usr/bin/pyrsa-verify` 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
* community/retroarch: fix invalid pathsDavid Demelier2020-04-112-4/+4
|
* main/arm-trusted-firmware: upgrade to 2.2 and add patch for rk3399 baudrateBart Ribbers2020-04-112-9/+33
|
* community/py3-rsa: upgrade to 4.0 and add check()Keith Maxwell2020-04-111-3/+8
|
* community/py3-distro: add missing dependencyKeith Maxwell2020-04-111-3/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* unmaintained/llvm7: removeLeo2020-04-117-485/+0
|
* unmaintained/llvm4: removeLeo2020-04-117-481/+0
|
* unmaintained/llvm3.9: removeLeo2020-04-1111-1879/+0
|
* unmaintained/clang6: removeLeo2020-04-113-209/+0
| | | | llvm6 was removed
* testing/llvm6: removeJ0WI2020-04-116-421/+0
|
* community/aws-cli: upgrade to 1.18.39Keith Maxwell2020-04-111-12/+17
| | | | | | | | | | | | | | | 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`