20398 Commits

Author SHA1 Message Date
prspkt
dad434b808
testing/php7-pecl-grpc: remove incorrect dependency
Make dependency on protobuf-dev is not required.
2019-03-02 20:58:17 +02:00
prspkt
e311ea6054
testing/librespot: remove incorrect dependency
Make dependency on protobuf-dev is not required.
2019-03-02 19:33:13 +02:00
prspkt
cdfd2f4571
testing/lxd: remove incorrect dependency
Make dependency on protobuf-dev is not required.
2019-03-02 19:32:28 +02:00
Henrik Riomar
5adaafc004 testing/sway: completions in subpkgs 2019-03-02 16:34:19 +01:00
Henrik Riomar
fccf43caf5 testing/swaylock: completions in subpkgs 2019-03-02 12:47:52 +01:00
Henrik Riomar
9a09e7ed73 testing/swayidle: new aport 2019-03-02 12:47:47 +01:00
Drew DeVault
0d4e93632f testing/slurp: new APKBUILD 2019-03-02 10:02:00 +01:00
Henrik Riomar
fb47d19b2f testing/xa: enable tests 2019-03-01 19:38:43 +01:00
Henrik Riomar
792379e6ab testing/sway: upgrade to 1.0-rc4 2019-03-01 18:42:50 +01:00
Henrik Riomar
81d25a2f4c testing/wlroots: upgrade to 0.4.1 2019-03-01 18:41:15 +01:00
prspkt
6c2f6b950d
testing/bird: use https, drop prepare function 2019-03-01 18:05:34 +02:00
prspkt
89a9457453
testing/bird: upgrade to 2.0.4 2019-03-01 18:05:34 +02:00
prspkt
248a888b04
testing/xtitle: move xcb-util-wm-dev to makedepends 2019-03-01 15:38:31 +02:00
prspkt
3722f67b93
testing/xtitle: upgrade to 0.4.4, improve 2019-03-01 15:38:31 +02:00
Natanael Copa
dc018d3d52 testing/efibootmgr: fix build against new efivar 2019-03-01 07:10:04 +00:00
lramage94
fcef7207e3 testing/efibootmgr: bumpt to 17 2019-03-01 07:06:23 +00:00
Olliver Schinagl
2da46a8290 testing/mmc-utils: new aport
Signed-off-by: Olliver Schinagl <oliver@schinagl.nl>
2019-02-28 21:39:48 +00:00
Fathi Boudra
ef4f117406 testing/libguestfs: new aport
Closes: https://bugs.alpinelinux.org/issues/1792

Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org>
2019-02-28 21:39:48 +00:00
Natanael Copa
fcb720db9f testing/iwd: enable on all arches except ppc64le 2019-02-28 11:05:28 +00:00
Natanael Copa
d352f6fcd2 testing/ell: disable on ppc64le due to testsuite failure
Fails with:

FAIL: unit/test-uuid
====================

TEST: /uuid/v3
Assertion failed: r (unit/test-uuid.c: test_v3: 58)
Aborted
2019-02-28 11:02:25 +00:00
Natanael Copa
418eafc869 testing/ell: fix test suite and a bug in utf8 2019-02-28 10:59:23 +00:00
Leonardo Arena
d96e437b77 testing/flightgear: restrict to x86* due to openscenegraph 2019-02-28 10:34:53 +00:00
Leonardo Arena
70dd6f1141 testing/simgear: restrict to x86* due to openscenegraph 2019-02-28 10:34:09 +00:00
Leonardo Arena
165645ab6b testing/openscenegraph: restrict to x86* due to gdal 2019-02-28 10:33:01 +00:00
Leonardo Arena
060b8a868a testing/flightgear: upgrade to 2018.3.2 2019-02-28 10:24:31 +00:00
Leonardo Arena
9b9800afdc testing/simgear: upgrade to 2018.3.2 2019-02-28 10:24:31 +00:00
Natanael Copa
bb9a0abb64 testing/iwd: disable all arches except x86 and x86_64
testsuite fails on all other arches and hangs on ppc64le
2019-02-28 09:20:44 +00:00
Jason A. Donenfeld
0bfe7f6823 testing/wireguard: upgrade to 0.0.20190227
* wg-quick: freebsd: allow loopback to work

FreeBSD adds a route for point-to-point destination addresses. We don't
really want to specify any destination address, but unfortunately we
have to. Before we tried to cheat by giving our own address as the
destination, but this had the unfortunate effect of preventing
loopback from working on our local ip address. We work around this with
yet another kludge: we set the destination address to 127.0.0.1. Since
127.0.0.1 is already assigned to an interface, this has the same effect
of not specifying a destination address, and therefore we accomplish the
intended behavior. Note that the bad behavior is still present in Darwin,
where such workaround does not exist.

* tools: remove unused check phony declaration
* highlighter: when subtracting char, cast to unsigned
* chacha20: name enums
* tools: fight compiler slightly harder
* tools: c_acc doesn't need to be initialized
* queueing: more reasonable allocator function convention

Usual nits.

* systemd: wg-quick should depend on nss-lookup.target

Since wg-quick(8) calls wg(8) which does hostname lookups, we should
probably only run this after we're allowed to look up hostnames.

* compat: backport ALIGN_DOWN
* noise: whiten the nanoseconds portion of the timestamp

This mitigates unrelated sidechannel attacks that think they can turn
WireGuard into a useful time oracle.

* hashtables: decouple hashtable allocations from the main device allocation

The hashtable allocations are quite large, and cause the device allocation in
the net framework to stall sometimes while it tries to find a contiguous
region that can fit the device struct. To fix the allocation stalls, decouple
the hashtable allocations from the device allocation and allocate the
hashtables with kvmalloc's implicit __GFP_NORETRY so that the allocations fall
back to vmalloc with little resistance.

* chacha20poly1305: permit unaligned strides on certain platforms

The map allocations required to fix this are mostly slower than unaligned
paths.

* noise: store clamped key instead of raw key

This causes `wg show` to now show the right thing. Useful for doing
comparisons.

* compat: ipv6_stub is sometimes null

On ancient kernels, ipv6_stub is sometimes null in cases where IPv6 has
been disabled with a command line flag or other failures.

* Makefile: don't duplicate code in install and modules-install
* Makefile: make the depmod path configurable

* queueing: net-next has changed signature of skb_probe_transport_header

A 5.1 change. This could change again, but for now it allows us to keep this
snapshot aligned with our upstream submissions.

* netlink: don't remove allowed ips for new peers
* peer: only synchronize_rcu_bh and traverse trie once when removing all peers
* allowedips: maintain per-peer list of allowedips

This is a rather big and important change that makes it much much faster to do
operations involving thousands of peers. Batch peer/allowedip addition and
clearing is several orders of magnitude faster now.

Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
2019-02-28 10:51:34 +02:00
Natanael Copa
cbb492e08e testing/iwd: build fix. needs linux-headers 2019-02-28 07:16:05 +00:00
Milan P. Stanić
ff2dbd7e2b testing/iwd: new aport
Internet Wireless Daemon
2019-02-28 07:15:08 +00:00
Milan P. Stanić
8c9bc3ab93 testing/ell: new aport
dependency for iwd
2019-02-28 07:13:48 +00:00
prspkt
f92187a86f
testing/handbrake: add speex and lzma makedepends 2019-02-27 20:32:43 +02:00
prspkt
0cd73d9ce1
testing/handbrake: disable nvenc
Disable nvidia encoder APIs which are only available on x86* and
therefore limit package availability.
2019-02-27 20:32:43 +02:00
prspkt
49c4725efb
testing/handbrake: upgrade to 1.2.2, clarify license 2019-02-27 20:32:43 +02:00
prspkt
c8b7eb29ee
testing/libheif: rebuild against libx265.so.169 2019-02-27 20:32:43 +02:00
Natanael Copa
d8ce74e36b testing/wireguard-virt: rebuild against kernel 4.19.26-r0 2019-02-27 16:05:37 +00:00
Natanael Copa
c8687463b6 testing/wireguard-vanilla: rebuild against kernel 4.19.26-r0 2019-02-27 16:05:16 +00:00
Natanael Copa
248a40ceb6 testing/ipt-netflow-vanilla: rebuild against kernel 4.19.26-r0 2019-02-27 16:04:27 +00:00
Natanael Copa
89cf054a2d testing/firefox: build with bundled libvpx due to 1.8.0
libvpx update to 1.8.0 broke firefox-esr
upstream bug: https://bugzilla.mozilla.org/show_bug.cgi?id=1525393
2019-02-27 13:51:28 +00:00
Kevin Daudt
0d40326b80 testing/sopel: add py3-dnspython as dependency 2019-02-27 11:32:57 +00:00
Carlo Landmeter
27bde63026 testing/drone: new aport
This is a first step at adding drone to aports and is no way a finished
product.
2019-02-27 10:04:46 +00:00
Tim Brust
f227c87fc0 main/libvpx: upgrade to 1.8.0 2019-02-26 22:03:13 +00:00
Natanael Copa
6b504978e4 testing/openjdk9: disable on armhf due to build failure 2019-02-26 21:59:05 +00:00
Mike Sullivan
941939e441 testing/imv: fix and reenable ppc64le build failures for bool decls 2019-02-26 20:51:30 +00:00
Olliver Schinagl
bad64dae78 community/memtester: new aport 4.3.0
Signed-off-by: Olliver Schinagl <oliver@schinagl.nl>
2019-02-26 11:51:01 +00:00
Natanael Copa
76e44d1825 testing/gpm: resurrect
get patches from https://github.com/telmich/gpm
2019-02-26 11:10:55 +01:00
Natanael Copa
3072ffa441 testing/openjdk9: disable on x86 due to build failure 2019-02-26 09:29:59 +00:00
Natanael Copa
4143ac1472 testing/openjdk9: reorder subpkg split and add -src 2019-02-26 08:28:06 +00:00
Simon Frankenberger
356b47d2f4 testing/openjdk9: New aport 2019-02-26 08:28:06 +00:00
Kevin Daudt
308a9de1b7 testing/sopel: update to 6.6.3 2019-02-25 20:15:43 +00:00