Rosen Penev
dc7b5732e8
cifsd-tools: Run init script through shellcheck
Main warning fixed was about echo -e not being supported by POSIX sh.
Added PKG_BUILD_PARALLEL for slightly faster compilation.
Small whitespace cleanups.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
5 years ago
Rosen Penev
78fce79090
Merge pull request #9556 from neheb/net
netifyd: Don't build on uClibc-ng
5 years ago
Rosen Penev
626469860a
Merge pull request #9549 from hauke/io-tool-sync
io: Open /dev/mem with O_SYNC for uncached access
5 years ago
Jan Pavlinec
f77c53cff1
libxslt: patch security issues
Fixes:
CVE-2019-13117
CVE-2019-13118
Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
5 years ago
Hauke Mehrtens
90df0f3e24
io: Open /dev/mem with O_SYNC for uncached access
Only when /dev/mem is opened with O_SYNC the write and *read* is done
uncached. We saw wrong values read out from the hardware without setting
O_SYNC, the busybox devmem tool showed different values, when O_SYNC is
also set for the io tool, it reads out the same values as devmem.
When looking at the drivers/char/mem.c file in the kernel it is behaving
differently based on the O_DSYNC flag.
Signed-off-by: Hauke Mehrtens <hauke.mehrtens@intel.com>
5 years ago
Eneas U de Queiroz
ea0f17c3ac
tessdata: reorganize menu
Move language data menu under the package itself, and shorten the titles
so that all of them show up in the menu.
Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
5 years ago
Christian Lachner
e7faabcf11
haproxy: Update HAProxy to v2.0.3
- Update haproxy download URL and hash
- Add new patches
Signed-off-by: Christian Lachner <gladiac@gmail.com>
5 years ago
Rosen Penev
0a3ebb32a1
netifyd: Don't build on uClibc-ng
This absolutely needs symbols from libresolv, which uClibc-ng does not
support.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
5 years ago
Rosy Song
444420423f
kea: remove python3 dependency of kea-admin
fix #9495
Signed-off-by: Rosy Song <rosysong@rosinson.com>
5 years ago
Rosen Penev
6d9e48ab38
Merge pull request #9515 from neheb/opendkim
opendkim: Fix compilation with uClibc-ng
5 years ago
Jan Pavlinec
8f3378e86d
libarchive: update to version 3.4.0
Changes:
remove backported patches
add bsdtar libopenssl variant
switch to github codeload
polish tab/spaces
Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
5 years ago
James Taylor
cd1edc5a3e
pdns-recursor: bump version to 4.2.0
Maintainer: me
This commit bumps the version of pdns-recursor to the latest 4.2.0. This release brings in mostly minor changes, with the full changelog available at https://doc.powerdns.com/recursor/changelog/4.2.html
Signed-off-by: James Taylor <james@jtaylor.id.au>
5 years ago
DENG Qingfang
41814de0fc
pcre: remove unnecessary dependency on C++ lib
Add libpcrecpp to PKG_CONFIG_DEPENDS to properly trigger
reconfiguration, avoiding unnecessary dependency.
This reverts commit 17090fecf1
.
This reverts commit ec138f51ab
.
Signed-off-by: DENG Qingfang <dengqf6@mail2.sysu.edu.cn>
5 years ago
Rosen Penev
c53ed17fd5
tar: Add zstd capability
Small cleanups.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
5 years ago
Josef Schlehofer
ad6ed836a5
Merge pull request #9521 from shenek/feature_python-cachelib
python: cachelib package added
5 years ago
Jeffery To
79b1942116
prometheus: Fix build for mips64/mips64el
Prometheus uses an older version of fsnotify, which uses a system call
(unix.InotifyInit) that is not implemented for mips64/mips64el.
This patches Prometheus to use a newer version of fsnotify that uses a
different system call (unix.InotifyInit1) that should be available on
all Linux systems.
Fixes #9494 .
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
5 years ago
Rosen Penev
626949defc
Merge pull request #9531 from neheb/rto
rtorrent bump
5 years ago
Rosen Penev
84c92f215d
rtorrent: Update to 0.9.8
Switch to codeload. A lot simpler.
Remove upstreamed patch.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
5 years ago
Rosen Penev
46dabcf89b
libsigc++: Update to 2.10.2
No actual difference. Just regenerated documentation.
Small Makefile cleanups.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
5 years ago
Rosen Penev
a328861269
libtorrent: Update to 0.13.8
Removed upstreamed patches.
Small change to IPv6 configure flag.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
5 years ago
Rosen Penev
791145bb5c
Merge pull request #9523 from micmac1/sqlite329
sqlite3: bump to 3.29.0
5 years ago
Rosen Penev
4c48cc97cd
Merge pull request #9528 from neheb/softhhh
softethervpn: Update to rtm version 4.29-9680
5 years ago
Josef Schlehofer
41241f0f12
Merge pull request #9532 from jefferyto/python-musl-find_library
python,python3: Fix ctypes.util.find_library()
5 years ago
Josef Schlehofer
725eb84462
python: add patch for CVE-2018-20852
Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
5 years ago
Stijn Tintel
bb9711a5df
Merge pull request #9332 from neheb/dom
domoticz: Fix compilation without deprecated OpenSSL APIs
5 years ago
Rosen Penev
615ff1f3e0
Merge pull request #9517 from neheb/apf
apfree-wifidog: Run init script through shellcheck
5 years ago
Jeffery To
e14c4e5c0a
python,python3: Fix ctypes.util.find_library()
Python's ctypes.util.find_library() function currently doesn't work for
musl libraries/systems[1].
This adds a patch to fix this function, based on a patch from Alpine
Linux[2].
Fixes #9448 .
[1]: https://bugs.python.org/issue21622
[2]: https://git.alpinelinux.org/aports/tree/main/python2/musl-find_library.patch
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
5 years ago
Stepan Henek
ebdeca0108
python-cachelib: package added
Signed-off-by: Stepan Henek <stepan.henek@nic.cz>
Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
5 years ago
Josef Schlehofer
b64558b1ba
netdata: update to version 1.16.0
- Add dependencies: libopenssl, liblz4
- Correct SPDX License Identifier
- Change URL of the website
Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
5 years ago
Daniel Engberg
ded736a697
Merge pull request #9530 from Andy2244/samba-4-9-11
samba4: revert to 4.9.11
5 years ago
Andy Walsh
2f2a4bccd9
samba4: revert to 4.9.11
* revert to 4.9.x series (4.10 needs too many unofficial patches and has weird waf bugs)
* cleanup patches
* enable AD_DC build option again
Signed-off-by: Andy Walsh <andy.walsh44+github@gmail.com>
5 years ago
Rosen Penev
5a3e520f45
openssh: Fix compilation with -Wimplicit-function
Upstream backport.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
5 years ago
Rosen Penev
80bad7073f
etherwake: Remove obsolete uClibc patch
No such issue with uClibc-ng.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
5 years ago
Rosen Penev
3bceaf67dc
perl-device-usb: Update to 0.38
Signed-off-by: Rosen Penev <rosenp@gmail.com>
5 years ago
Rosen Penev
ec84a5b59c
perl-inline: Update to 0.83
Signed-off-by: Rosen Penev <rosenp@gmail.com>
5 years ago
Rosen Penev
8ccbaf3ed0
perl-inline-c: Update to 0.81
Minor Makefile cleanups.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
5 years ago
Rosen Penev
640ae6efed
Merge pull request #9518 from neheb/nss
nss: Replace usleep with nanosleep
5 years ago
Rosen Penev
b1a3042b9e
Merge pull request #9519 from neheb/libre
libreswan: Replace usleep with nanosleep
5 years ago
Josef Schlehofer
621dd1f866
youtube-dl: update to version 2019.7.16
Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
5 years ago
Jeffery To
d0bf31431d
golang: Update to 1.12.7
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
5 years ago
Gerard Ryan
d815d4c048
docker-ce: Updated and added --init and --publish options
Signed-off-by: Gerard Ryan <G.M0N3Y.2503@gmail.com>
5 years ago
Gerard Ryan
b7e378700a
libnetwork: Added networking for docker-ce
Signed-off-by: Gerard Ryan <G.M0N3Y.2503@gmail.com>
5 years ago
Gerard Ryan
466132831f
tini: Added tini init utility
Signed-off-by: Gerard Ryan <G.M0N3Y.2503@gmail.com>
5 years ago
Philipp Schuster
34db38520b
softethervpn: Update to rtm version 4.29-9680
Update SoftEther VPN to the latest rtm version 4.29-9680
Compile tested: Atheros AR7xxx/AR9xxx, TP-LINK Archer C7 v2, 18.06.4
Signed-off-by: Philipp Schuster <philippschuster@gmx.com>
(rebased and refreshed patches).
Signed-off-by: Rosen Penev <rosenp@gmail.com>
5 years ago
Noble Pepper
5caa181b17
gcc: update to version 7.4.0, Add config options
for coping libc.a, libpthread.a and libstdc++ to target.
Add config option to eliminate need for -lstdc++ and -lgcc_pic
switches when linking statically
Signed-off-by: Noble Pepper <noblepepper@gmail.com>
5 years ago
Rosen Penev
1bb888f054
Merge pull request #9520 from danielkucera/minisatip
minisatip: pkg hash fix
5 years ago
Sebastian Kemper
2f7fbde7d6
sqlite3: bump to 3.29.0
Also drops upstreamed patch.
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
5 years ago
Rosen Penev
0fd2c99da6
Merge pull request #9514 from mtelka/mini_snmpd-netifs
mini_snmpd: Allow up to 8 network interfaces
5 years ago
Jan Pavlinec
f311ec0161
lmdb: add new package
Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
5 years ago
Daniel Kucera
e2f9106a04
minisatip: pkg hash fix
Signed-off-by: Daniel Kucera <daniel.kucera@gmail.com>
5 years ago