Commit graph

17889 commits

Author SHA1 Message Date
Josef Schlehofer
a615a821d9
libredblack: pass CFLAGS properly
Fixes build with enabled ASLR PIE

Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
2020-01-27 22:44:03 +01:00
Hannu Nyman
de83b54a8d
Merge pull request #11141 from lucize/pciutilsup
pciutils: update to 3.6.4
2020-01-27 22:58:46 +02:00
Hannu Nyman
10b835bc44
Merge pull request #11140 from lucize/nssup
nss: update to 3.49.2
2020-01-27 22:58:12 +02:00
Lucian Cristian
d3e497bae6 pciutils: update to 3.6.4
Signed-off-by: Lucian Cristian <lucian.cristian@gmail.com>
2020-01-27 22:19:46 +02:00
Lucian Cristian
8f2023aa9c nss: update to 3.49.2
Signed-off-by: Lucian Cristian <lucian.cristian@gmail.com>
2020-01-27 22:14:53 +02:00
Hannu Nyman
02c918ba79
Merge pull request #11138 from peter-stadler/django-cors-headers
python3-django-cors-headers: update to version 3.2.1
2020-01-27 17:47:22 +02:00
Peter Stadler
3d5c9c5b23 python3-django-cors-headers: update to version 3.2.1
Signed-off-by: Peter Stadler <peter.stadler@student.uibk.ac.at>
2020-01-27 15:16:10 +01:00
Josef Schlehofer
de13f35827
python: readme: drop from table of contents removed sections
Fixes: 446bc30c52 ("python: Remove
PKG_BUILD_DIR/PKG_UNPACK sections from readme")

Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
2020-01-27 14:26:07 +01:00
Rosen Penev
14e1c41cb7
Merge pull request #11086 from michyprima/fix-ser2net
ser2net: fix rpcd reload
2020-01-26 23:49:33 -08:00
Michele Primavera
8299fac7ab ser2net: fix rpcd reload
ser2net did not get restarted after saving in uci or luci

Signed-off-by: Michele Primavera <primavera@elmod.it>
2020-01-27 08:16:29 +01:00
Rosen Penev
934886fff7
Merge pull request #11097 from jempatel/python3-speedtest-cli
python3-speedtest-cli: a new package
2020-01-26 14:47:25 -08:00
Rosen Penev
1631e5ae37
Merge pull request #11133 from micmac1/apache2-cleanup
apache: cleanup, enable LFS and rename server from httpd to apache2
2020-01-26 14:42:27 -08:00
Rosen Penev
e52d2fa663
Merge pull request #11120 from neheb/h6
nsd: update to 4.2.4
2020-01-26 14:37:05 -08:00
Rosen Penev
7ca93b586e
Merge pull request #11130 from BKPepe/dnscrypt-proxy2
dnscrypt-proxy2: update to version 2.0.36
2020-01-26 14:36:13 -08:00
Rosen Penev
bbd3cb82e6
Merge pull request #11121 from neheb/zdb
libzdb: update to 3.2
2020-01-26 14:35:24 -08:00
Michael Heimpold
50b1cd3757 php7: fix dependencies for mysqlnd (fixes #11113)
When during the build the openssl extension is also selected, then
the mysqlnd extension depends on it, too.

Signed-off-by: Michael Heimpold <mhei@heimpold.de>
2020-01-26 21:55:10 +01:00
Michael Heimpold
4f1c5e5919 php7: update to 7.4.2
This fixes:
  - CVE-2020-7059
  - CVE-2020-7060

Signed-off-by: Michael Heimpold <mhei@heimpold.de>
2020-01-26 21:55:10 +01:00
Hannu Nyman
7e4c5dfccf
Merge pull request #11122 from stangri/master-https-dns-proxy
https-dns-proxy: fix deleting server items, configurable dnsmasq settings change
2020-01-26 22:39:07 +02:00
Sebastian Kemper
6bd63d24f0 apache: don't load session_crypto mod by default
In OpenWrt this module is available, but not part of the main package.
This commit disables the LoadModule directive for this module. Otherwise
following the installation of the main apache package the start of the
server would fail (due to the absence of this particular module).

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2020-01-26 19:09:36 +01:00
Sebastian Kemper
e94a08298e apache: rename bin from httpd to apache2
This way there's no need to worry about overwriting another httpd binary
or symlink from another package, for example busyboxes httpd.

The init script is also renamed to apache2 for consistency.

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2020-01-26 19:07:03 +01:00
Sebastian Kemper
a62c0e599b apr-util: clean up Makefile and remove patch
- removes 001-automake-compat.patch:
  Looks like this was meant as a workaround for a libtool issue. But it
  doesn't appear to be needed anymore.

- cleans up installation defines (uses macros, cleans up sed scripts,
  removes gratuitous slashes & whitespaces)

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2020-01-26 19:00:48 +01:00
Sebastian Kemper
193c3913b6 apr: clean up the patches + enable LFS
- removes 001-autoconf-compat.patch:
  Looks like this was meant as a workaround for a libtool issue. But it
  doesn't appear to be needed anymore.
- removes 101-fix_apr_time_now.patch:
  Mentioned in https://dev.openwrt.org/ticket/9287, meant as a fix, but
  issue was fixed differently in the end (by activating LFS).
- removes 201-upgrade-and-fix-1.5.1.patch:
  This is a cross-compile fix. This patch gets replaced by
  001-cross-compile.patch from buildroot project. The latter was sent
  upstream by buildroot and is in line with the patch used by OpenWrt
  for the apache package.
- adds 002-sys-param-h.patch:
  Fix PATH_MAX detection by including sys/param.h if available. Also
  from buildroot.

Additionally configure variables found in buildroot package are added.
These also enable LFS support. This was previously done (in OpenWrt) by
defining _LARGEFILE64_SOURCE in TARGET_CPPFLAGS. But the configure
variable is cleaner (and easier to follow).

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2020-01-26 18:50:06 +01:00
Sebastian Kemper
12037b3f29 apr: clean up the Makefile
- sort configure variables
- clean up installation defines (use macros, improve sed scripts,
  remove gratuitous slashes & whitespaces)

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2020-01-26 18:22:21 +01:00
Sebastian Kemper
893a804c95 apr: add PKG_LICENSE_FILES and PKG_CPE_ID
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2020-01-26 18:07:53 +01:00
Hannu Nyman
a56402b90d
Merge pull request #11132 from Andy2244/wsdd2-name_change_ksmbd
wsdd2: update for renamed smbd->ksmbd
2020-01-26 17:57:44 +02:00
Hannu Nyman
4599d99f56
Merge pull request #11131 from Andy2244/smbd-rename_ksmbd_update-3-1-1
smbd: update to 3.1.1, rename to "ksmbd", "ksmbd-tools"
2020-01-26 17:57:34 +02:00
Andy Walsh
f27a6e42d1 wsdd2: update for renamed smbd->ksmbd
* update for renamed smbd->ksmbd

Signed-off-by: Andy Walsh <andy.walsh44+github@gmail.com>
2020-01-26 16:42:13 +01:00
Andy Walsh
664479fa89 smbd: update to 3.1.1, rename to "ksmbd", "ksmbd-tools"
* rename smbd->ksmbd (upstream name change)
* ksmbd-tools: build with static glib2 (usmbd = ~90kb, smbuseradd = ~40kb)
* new etc folder location = /etc/ksmbd/smb.conf
* new database name = /etc/ksmbd/ksmbdpwd.db
* fixes "map to guest = Bad User" while userdb is also used
* fixes missing ipv6 support
* update/rename to "luci-app-ksmbd"
* remove UCI samba compatibility code for section names (ksmbd uses [share] + [globals] not [sambashare] + [global])

* ksmbd: release 3.1.1 version
* ksmbd: does not work if ipv6 module is not loaded or compiled in
* ksmbd: capsule ifdef CONFIG_SMB_INSECURE_SERVER with smb1 codes
* ksmbd: release 3.1.0 version
* ksmbd: fix over 80 character warnings
* ksmbd: rename smbd-tools to ksmbd-tools in travis.yml
* ksmbd: fix password db file location in travis.yml
* ksmbd: rename smbd prefix function to ksmbd
* ksmbd: rename smbd prefix source files to ksmbd
* Revert "smbd: set connection status with SMBD_SESS_EXITING instead of direct destory"
* ksmbd: rename smbd to ksmbd in .travis.yml
* smbd: rename module name to ksmbd.ko
* smbd: set connection status with SMBD_SESS_EXITING instead of direct destory
* smbd: previous session with same user and same password should be deleted
* smbd: only use global session table in smb2 session
* smbd: add support for ipv6
* smbd: fix empty macro issue from smbd_debug
* cifsd: fix printing of file names in find_next

Signed-off-by: Andy Walsh <andy.walsh44+github@gmail.com>
2020-01-26 16:32:53 +01:00
Josef Schlehofer
8eb0d55475
dnscrypt-proxy2: update to version 2.0.36
Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
2020-01-26 14:52:45 +01:00
Rosen Penev
c488ebe588
Merge pull request #11114 from Robby-/master-freeradius3_update_3_0_20
freeradius3: Update to 3.0.20
2020-01-26 03:28:32 -08:00
Robby K
a4202ca4ff freeradius3: Update to 3.0.20
Latest stable release, contains security fixes for EAP-PWD (side-channel leak), logrotate settings (CVE-2019-10143) and a DoS issue due to multithreaded BN_CTX access (CVE-2019-17185).

Also refreshed patches/002-disable-session-cache-CVE-2017-9148.patch due to the following changes/commits in freeradius:
bf1a1eda23
a3c46544b3

Signed-off-by: Robby K <robbyke@gmail.com>
2020-01-26 12:10:00 +01:00
Josef Schlehofer
d84e70d4f5
Merge pull request #10968 from zokl/node-javascript-obfuscator
node-javascript-obfuscator: add package
2020-01-26 11:58:51 +01:00
Rosen Penev
496ee7f91b
libzdb: update to 3.2
Removed most patches. The last was upstreamed and the others can be worked
around using Makefile.

Removed inactive maintainer.

Added PKG_BUILD_PARALLEL for faster compilation.

Fixed license information.

Massive reorganization of Makefile for consistency between packages.

Removed --with-sql options. These are totally broken when cross compiling.
Leaving them out works just as well.

Added cpp patch as the test needs a header.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-01-25 23:52:32 -08:00
Stan Grishin
03606eddee https-dns-proxy: fix deleting server items, configurable dnsmasq settings change
Signed-off-by: Stan Grishin <stangri@melmac.net>
2020-01-25 21:14:38 -07:00
Rosen Penev
02f071eeae
nsd: update to 4.2.4
Removed upstreamed patches.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-01-25 17:54:04 -08:00
Rosen Penev
1eafc22afa
Merge pull request #10503 from LoEE/jpc/master/git-macos-cross
git: fix cross compilation on macOS
2020-01-25 15:24:46 -08:00
Rosen Penev
66a4a3c7bf
Merge pull request #11066 from neheb/botan
botan: remove
2020-01-25 15:20:26 -08:00
Rosen Penev
c3b4dd833f
Merge pull request #11082 from neheb/lcdp
lcdproc: add serdisplib dependency
2020-01-25 15:19:52 -08:00
Rosen Penev
29efb85bda
Merge pull request #11099 from nmav/tmp-libssh-checks
libssh: simplify endianness check
2020-01-25 15:18:02 -08:00
Rosen Penev
448caaba19
Merge pull request #9686 from yogo1212/talloc_python3
WIP talloc python3/cross-compilation issues
2020-01-25 15:07:59 -08:00
Leon M. George
ad7aaf8f47 talloc: update to version 2.3.1
Signed-off-by: Leon M. George <leon@georgemail.eu>
2020-01-25 23:16:54 +01:00
Michael Heimpold
96c244ea67
Merge pull request #11117 from mhei/libgpiod-python-binding
libgpiod: add package for the Python binding (fixes #11096)
2020-01-25 22:38:15 +01:00
Michael Heimpold
2fdb8268d3 libgpiod: add package for the Python binding (fixes #11096)
Signed-off-by: Michael Heimpold <mhei@heimpold.de>
2020-01-25 22:24:15 +01:00
Nikos Mavrogiannopoulos
eaf16d76c7 libssh: simplified CMAKE tests
That is endianness check is provided as option, SSP and other
flags are enabled by openwrt global flags to fix issues in unsupported
systems, and unused flags were removed.

Signed-off-by: Nikos Mavrogiannopoulos <n.mavrogiannopoulos@gmail.com>
2020-01-25 16:51:20 +01:00
Hannu Nyman
c147ac94bb
Merge pull request #11115 from BKPepe/zeroconf
python-zeroconf: update to version 0.24.4
2020-01-25 15:32:19 +02:00
Josef Schlehofer
8ed94a07fc
python-zeroconf: update to version 0.24.4
Update copyright

Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
2020-01-25 10:17:00 +01:00
Rosen Penev
a60fffe5fd
Merge pull request #11058 from BKPepe/jinja2
Jinja2: update to version 2.10.3
2020-01-24 23:59:15 -08:00
Rosen Penev
4302bfc6d2
Merge pull request #10669 from LLE8/add-ipfs-client
ipfs-http-client: add package
2020-01-24 23:50:06 -08:00
Rosen Penev
77f41efb45
Merge pull request #10425 from luizluca/sane-nonroot
sane-backends: run (xinetd) saned as non-root
2020-01-24 23:47:27 -08:00
Rosen Penev
c3e1cca1e7
Merge pull request #10797 from pymumu/master
smartdns: add new package
2020-01-24 23:45:38 -08:00