aboutsummaryrefslogtreecommitdiffstats
path: root/main
Commit message (Collapse)AuthorAgeFilesLines
...
* main/font-bh-ttf: fix wrong fonts directory and modernizeLuca Weiss2020-04-131-13/+7
| | | | | | fontutil.m4 from font-util-dev queries pkg-config (fontconfig.pc) for the correct font path, this failed before and an incorrect fallback was used. Fix this by including fontconfig-dev as makedepends.
* main/http-parser: upgrade to 2.9.4Jakub Jirutka2020-04-131-5/+3
|
* main/doxygen: upgrade to 1.8.18Leo2020-04-132-94/+9
|
* main/pax-utils: add missing dependencies on py3-elftools and python3Leo2020-04-131-4/+4
|
* main/p11-kit: rebuild again against libffi.so.7Rasmus Thomsen2020-04-131-1/+1
| | | | | Apparently some packages weren't rebuilt correclty against libffi.so.7 on some arches and still need libffi.so.6
* main/wayland: rebuild again against libffi.so.7Rasmus Thomsen2020-04-131-1/+1
| | | | | Apparently some packages weren't rebuilt correclty against libffi.so.7 on some arches and still need libffi.so.6
* main/llvm9: rebuild again against libffi.so.7Rasmus Thomsen2020-04-131-1/+1
| | | | | Apparently some packages weren't rebuilt correclty against libffi.so.7 on some arches and still need libffi.so.6
* main/glib: rebuild again against libffi.so.7Rasmus Thomsen2020-04-131-1/+1
| | | | | Apparently some packages weren't rebuilt correclty against libffi.so.7 on some arches and still need libffi.so.6
* main/mozjs60: rebuild again against libffi.so.7Rasmus Thomsen2020-04-131-1/+1
| | | | | Apparently some packages weren't rebuilt correclty against libffi.so.7 on some arches and still need libffi.so.6
* main/python2: rebuild again against libffi.so.7Rasmus Thomsen2020-04-131-1/+1
| | | | | Apparently some packages weren't rebuilt correclty against libffi.so.7 on some arches and still need libffi.so.6
* main/python3: rebuild again against libffi.so.7Rasmus Thomsen2020-04-131-1/+1
| | | | | Apparently some packages weren't rebuilt correclty against libffi.so.7 on some arches and still need libffi.so.6
* main/py3-babel: add missing dependencyKeith Maxwell2020-04-131-3/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* main/py3-mako: enable check()Keith Maxwell2020-04-131-1/+6
|
* main/py3-mako: add missing dependencyKeith Maxwell2020-04-131-3/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | 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]
* main/ethtool: add bash-completion subpackageLeo2020-04-131-2/+11
|
* main/bluez: move zsh completion from mainpkg instead of copying itLeo2020-04-131-3/+3
|
* main/libinput: add zsh-completion subpackageLeo2020-04-131-2/+16
|
* main/grub: modernizeLeo2020-04-131-18/+30
|
* main/open-lldp: modernizeLeo2020-04-131-27/+29
|
* main/freetds: upgrade to 1.1.32Leo2020-04-131-2/+2
|
* main/msmtp: upgrade to 1.8.8Leo2020-04-131-3/+3
|
* main/perl-data-uuid: upgrade to 1.226Leo2020-04-121-3/+3
|
* main/py3-cffi: rebuildAriadne Conill2020-04-121-1/+1
| | | | not all builders built against new libffi :(
* 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.
* main/perl-scalar-list-utils: upgrade to 1.55Leo2020-04-121-3/+2
|
* main/libunwind: upgrade to 1.4.0Leo2020-04-122-5/+26
|
* 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
* 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
* 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.
* 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
* main/man-pages: upgrade to 5.06Leo2020-04-121-2/+2
|
* 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]
* main/yaml: upgrade to 0.2.3Leo2020-04-111-7/+5
|
* main/arm-trusted-firmware: upgrade to 2.2 and add patch for rk3399 baudrateBart Ribbers2020-04-112-9/+33
|
* main/py3-chardet: add check() & missing dependencyKeith Maxwell2020-04-112-7/+33
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* main/parallel: upgrade to 20200322Leo2020-04-111-2/+2
|
* main/awall: upgrade to 1.7.2Kaarle Ritvanen2020-04-112-4/+5
|
* main/openrc: networking: wait for udev eventsKaarle Ritvanen2020-04-112-2/+3
|
* main/udev-init-scripts: fix dependenciesKaarle Ritvanen2020-04-116-17/+244
| | | | | | | Allow depending on udev-settle when udev is not desired. Remove virtual service definition from udev: dev is already provided by udev-trigger.
* main/freetds: upgrade to 1.1.30Leo2020-04-111-5/+2
|
* main/macifrename: upgrade to 0.1.1Ariadne Conill2020-04-101-2/+2
|
* main/libffi: add -dbg subpackageRasmus Thomsen2020-04-101-2/+2
|
* main/dmvpn: file list for in-syncKaarle Ritvanen2020-04-102-3/+8
|
* main/in-sync: moved from testingKaarle Ritvanen2020-04-104-0/+67
|
* main/fetchmail: upgrade to 6.4.3Sören Tempel2020-04-101-2/+2
|