| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| |
|
| |
|
|
|
|
|
| |
https://goodies.xfce.org/projects/panel-plugins/xfce4-genmon-plugin
A generic, script-driven monitoring plugin for the Xfce panel
|
| |
|
|
|
|
| |
Signed-off-by: Daniel Isaksen <d@duniel.no>
|
|
|
|
| |
use source and url from github.com
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
'strtod_l' is guarded by _GNU_SOURCE which gsoap fails to define on
musl and compilation reports warnings like this:
stdsoap2.c:16352:19: warning: implicit declaration of function 'strtod_l'; did you mean 'strtok_r'? [-Wimplicit-function-declaration]
*p = (float)strtod_l(s, &r, SOAP_LOCALE(soap));
^~~~~~~~
strtok_r
On most hard-float systems (x86_64 and mips*hf for sure) this code
will use some random garbage from the integer register.
...and update musl-fixes.patches to cover yet another attempt to
use glibc-style strerror_r() (triggered by _GNU_SOURCE).
The implicitly declared isatty() at soapcpp2_lex.c:1944 is ignored.
|
| |
|
| |
|
| |
|
|
|
|
| |
The current apk is broken anyway, it wants .so.10
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
- set the license to Apache 2.0 only, one have to download another
tarball for the GPL version (2.12 was using Apache 2.0 tarball);
- use the download link from the main web site for easier checksum
cross-verification (github tarballs have different SHA sums);
- sort secfixes from newer-to-older;
- add python3 as now required for build.
Rebuild is needed for the dependent aports due to libmbedtls.so.12
version bump (was .11).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
SQLITE_ENABLE_FTS3 is already defined via `-DSQLITE_ENABLE_FTS3` in
`CFLAGS`, however this approach does not work (compile source below to
verify). Adding `--enable-fts3` as parameter did the trick. FTS3 is required
e.g. by Firefox.
#include <stdio.h>
#include "sqlite3.h"
int main(int argc, char **argv){
if (sqlite3_compileoption_used("SQLITE_ENABLE_FTS3"))
puts("yes");
else
puts("no");
return 0;
}
|
|
|
|
|
| |
- Update to LTS version 2.2.3 (current version drops python 2 support)
- Split up packages (py2-, py3-) to add python 3 support
|
| |
|
|
|
|
|
| |
https://cgit.freedesktop.org/xorg/driver/xf86-video-vbox/
VirtualBox guest video driver
|
| |
|
|
|
|
|
|
|
|
|
| |
check() fails otherwise with the following output:
[+] fwsnort has been successfully installed!
[*] ./test-fwsnort.pl: You must be root (or equivalent UID 0 account) to effectively test fwsnort at ./test-fwsnort.pl line 822.
>>> ERROR: fwsnort: check failed
|
|
|
|
| |
This reverts commit 5985560fe98fd43a451182b531ae2aebbe512f5f.
|
|
|
|
|
|
|
|
| |
CVE-2018-19661, CVE-2018-19662)
This is upstream commit 8ddc442d539ca775d80cdbc7af17a718634a743f
Partially fixes #9232
|
|
|
|
| |
Testing linear interpolation ...Error in Linear interpolation (2p): Must be i=8000, But is n=8001
|
|
|
|
|
| |
OpenID Connect library for the nginx lua module
https://github.com/zmartzone/lua-resty-openidc
|
|
|
|
|
| |
Session library for OpenResty
https://github.com/bungle/lua-resty-session
|
|
|
|
|
| |
JSON Web Token library for OpenResty
https://github.com/cdbattags/lua-resty-jwt
|
|
|
|
|
| |
HMAC functions for OpenResty
https://github.com/jkeys089/lua-resty-hmac
|
|
|
|
|
| |
String functions for OpenResty
https://github.com/openresty/lua-resty-string
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
| |
mktorrent-borg to mktorrent
This package was referring to another mktorrent, called mktorrent-borg.
Gentoo fixed this overlaps by renaming mktorrent to mktorrent-borg:
https://packages.gentoo.org/packages/net-p2p/mktorrent-borg
this package is actually mktorrent:
https://packages.gentoo.org/packages/net-p2p/mktorrent
|
| |
|
| |
|
|
|
|
| |
Remove bash dependency. Any shall will do.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
| |
Build amazon's ena network driver module on x86, x86_64, and aarch64 (for EC2 a1 instances).
At some point we will probably want to add config-virt.aarch64, too.
The ena driver in recent kernels (4.19.x) is in sync with the one in https://github.com/amzn/amzn-drivers, eliminating the necessity for the 'community/aws-ena-driver' aport.
|
|
|
|
|
|
|
|
| |
Take out all CPU specific compiler flags and rely on gcc defaults.
The problem on armv7 was that configuring manually armv6 and
using gcc default for thumb tries to build using thumb1 which
does not work. Use Alpine default config for these which is proper
combination.
|