* Updating package to 2.54.0
* Changed Makefile to install binary to /usr/bin (as in upstream)
* Updated init.rc script with new path
Signed-off-by: R4SAS I2P <r4sas@i2pmail.org>
This enables SRT support within gstreamer.
Secure Reliable Transport is a popular streaming protocol which
can be used both as a sink or source.
It actively continuously negotiates between sender/receiver to avoid
packet loss at all costs.
It also supports stream encryption by simply
setting a password on both ends.
Signed-off-by: Koen Vandeputte <koen.vandeputte@citymesh.com>
This adds the Secure Reliable Transport (SRT) package.
SRT is used as a popular transfer protocol for video & audio
and can be used within gstreamer as both a sink or source.
It also supports stream encryptino by simply
setting a password on both ends of the link.
More details can be found here:
https://www.haivision.com/products/srt-secure-reliable-transport/
It is being actively developed on github:
https://github.com/Haivision/srt
Signed-off-by: Koen Vandeputte <koen.vandeputte@citymesh.com>
libmaxminddb has switched to using CMAKE_INSTALL_PREFIX,
CMAKE_INSTALL_LIBDIR and CMAKE_INSTALL_INCLUDEDIR for generating the
pkg-config in upstream commit [1] and thus broke pkg-config file
generation in openwrt.
It would generate:
prefix=/usr
exec_prefix=/usr
libdir=lib
includedir=include
Obviously libdir and includedirs are incorrect for OpenWrt and this
would then cause pdns compilation to fail if geoip backend was enabled
since it uses pkg-config to get the required flags and passing just
lib for LDFLAGS would cause libtool to error out since that path is not
valid.
So, lets use SED magic to replace libdir and includedir with the correct
paths, so now pkg-config looks like:
prefix=/usr
exec_prefix=/usr
libdir=${exec_prefix}/lib
includedir=${prefix}/include
[1] 8b4bf0dec9
Fixes: 9f7357880f ("libmaxminddb: update to 1.11.0")
Signed-off-by: Robert Marko <robimarko@gmail.com>
Signed-off-by: S. Brusch <ne20002@gmx.ch>
Maintainer: Kerma Gérald <gandalf@gk2.net>
Run tested: mediatek/filogic, BPI-R3, Openwrt 23.05.5
Description:
updated the initd script creating the nftables rules for the bouncer
to adapt and support the crowdsec-firewall-bouncer's (from 0.0.30)
new internal rule creation mechanism.
Deactivate the dependencies to libsals2, libzlib and libzstd.
This fixes the build of fluent-bit.
This fixes the following problem:
```
Package fluent-bit is missing dependencies for the following libraries:
libsasl2.so.3
libz.so.1
libzstd.so.1
```
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
Deactivate the dependencies to libgudev.
This fixes the build of gst1-plugins-good.
This fixes the following problem:
```
Package gst1-mod-video4linux2 is missing dependencies for the following libraries:
libgudev-1.0.so.0
```
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
* supports comments (introduced with a #), for MAC addresses
in the allow and block list, e.g. 26:5e:a0:6a:9c:da # Test
* added hagezi threat ip feed
* added an adguard logterm to the readme
* removed the broken talos feed
Signed-off-by: Dirk Brenken <dev@brenken.org>
* fixed adblock status reporting
* optimized the mail template
* removed unanswered DNS requests from reporting
* various small fixes
Signed-off-by: Dirk Brenken <dev@brenken.org>
mtools: update to 4.0.45
no change log
https://www.gnu.org/software/mtools/manual/mtools.html
Compile tested: Model ASUS RT-AC88U
Architecture ARMv7 Processor rev 0 (v7l)
BCM53xx / arm_cortex-a9.
Kernel Version 6.6.53
main branch
Run tested: Using GCC 14.2.0 and binutils 2.43.1
Signed-off-by: Jen Wolf <jenwolf@protonmail.com>
Notable Changes
Experimental Network Inspection Support in Node.js
Exposes X509_V_FLAG_PARTIAL_CHAIN to tls.createSecureContext
New option for vm.createContext() to create a context with a freezable globalThis
Signed-off-by: Hirokazu MORIKAWA <morikw2@gmail.com>
Switch to local tarballs instead of codeload. No need to override
PKG_BUILD_DIR.
Remove PKG_BUILD_PARALLEL and PKG_INSTALL as they are not needed with
meson.
Remove upstreamed patch.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
* switch to dstnat chain from dstnat_lan chain for dns & tor policies (thanks @egc112)
* re-introduce procd_lan_interface for better LAN detection
* improve is_domain function
* introduce health-check for requried fw4 chains
* bugfix: avoid double counters for dns policies
* bugfix: remove faulty counters for tor policies
* rename interface_process to process_interface for better code readability
* overhaul pbr.user.aws script for a much better performance and more compact
(gzipped) storage of the ranges json locally (thanks @bigsmile74)
Signed-off-by: Stan Grishin <stangri@melmac.ca>
Remove GPL-2.0+ and GPL-3.0+ from PKG_LICENSE as GNU GPLv2+ and GPLv3+
are only used for the build system as stated in [1]:
The build system contains public domain files, and files that
are under GNU GPLv2+ or GNU GPLv3+. None of these files end up
in the binaries being built.
Moreover, add 0BSD which is used since version 5.6.0 [2]
[1]: 02ddf09bc3
[2]: 689e0228ba
Fixes: b9e87eeb7d (xz: import from old packages feed)
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
go1.23.2 (released 2024-10-01) includes fixes to the compiler, cgo,
the runtime, and the maps, os, os/exec, time, and unique packages.
Signed-off-by: Milinda Brantini <C_A_T_T_E_R_Y@outlook.com>