Commit graph

16241 commits

Author SHA1 Message Date
Rosen Penev
72e4e36a35
Merge pull request #11999 from jefferyto/bash-import-patches-openwrt-19.07
[openwrt-19.07] bash: Import upstream patches
2020-04-29 12:20:31 -07:00
Dirk Brenken
e92ac8abee
travelmate: fix captive portal detection
* made captive portal detection more bullet proof, fixes #11990

Signed-off-by: Dirk Brenken <dev@brenken.org>
(cherry picked from commit 1aa4518dfc)
2020-04-29 14:53:53 +02:00
Jeffery To
c0f9062736 bash: Import upstream patches
Source:
https://ftp.gnu.org/gnu/bash/bash-5.0-patches/
(bash50-003 to bash50-017)

Signed-off-by: Jeffery To <jeffery.to@gmail.com>
(cherry picked from commit dc5f2df6a4)
2020-04-29 17:19:13 +08:00
Rosen Penev
f5cb61cee5
Merge pull request #11992 from Robby-/openwrt-19.07-freeradius3_update_3_0_21
[19.07] freeradius3: Update to 3.0.21
2020-04-29 02:11:50 -07:00
Josef Schlehofer
37812cd96a
Merge pull request #11994 from jefferyto/python-2.7.18-openwrt-19.07
[openwrt-19.07] python: Update to 2.7.18, refresh patches
2020-04-29 10:56:52 +02:00
Josef Schlehofer
caecc597f0
expat: Update to version 2.2.9
Fixes CVE-2019-15903

Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
(cherry picked from commit 71814007a6)
2020-04-29 10:34:10 +02:00
Jeffery To
e34d0baee9 python: Update to 2.7.18, refresh patches
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
2020-04-29 05:33:21 +08:00
Robby K
28faf9676f freeradius3: Update to 3.0.21
Latest stable release.

Signed-off-by: Robby K <robbyke@gmail.com>
2020-04-28 20:03:51 +02:00
Robby K
cb10971c14 freeradius3: Updated patches/004-fix-target-python-header-detection.patch to remove the rlm_python3 specific changes as it is no longer needed to compile and updated the Makefile to reflect this due to the following change/commit in freeradius:
307678b268

This is in preparation for the 3.0.21 update.

Signed-off-by: Robby K <robbyke@gmail.com>
2020-04-28 20:03:17 +02:00
Robby K
4c9d290938 freeradius3: Refreshed patches/002-disable-session-cache-CVE-2017-9148.patch in preparation for the 3.0.21 update.
Signed-off-by: Robby K <robbyke@gmail.com>
2020-04-28 20:02:37 +02:00
Robby K
fe6f04346f freeradius3: Fix the ordering in the Makefile.
Signed-off-by: Robby K <robbyke@gmail.com>
2020-04-28 20:02:03 +02:00
Florian Eckert
0d795d2028 mwan3: fix whitespace issue
fixes #11965

Signed-off-by: Florian Eckert <fe@dev.tdt.de>
(cherry picked from commit 3c34b151f6)
2020-04-28 17:10:32 +02:00
Brian J. Murrell
b7959a8d38 mwan3: Ping IPv6 hosts using address not interface
Pinging IPv6 hosts using an interface as a source specifier seems
troublesome.  See https://bugs.openwrt.org/index.php?do=details&task_id=2897
for more detail.

Use the desired source interface's IP address instead.

Signed-off-by: Brian J. Murrell <brian@interlinx.bc.ca>
(cherry picked from commit 6721587e8b)
2020-04-28 17:10:32 +02:00
Florian Eckert
2ac0a05d6c mwan3: change license to SPDX compatible identifier
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
(cherry picked from commit 6d638c3e23)
2020-04-28 17:10:32 +02:00
Florian Eckert
928ac2a20a mwan3: update version to 2.8.2
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
(cherry picked from commit 14dd084662)
2020-04-28 17:10:32 +02:00
Florian Eckert
1ea75a8fa5 mwan3: add httping_ssl option
Till now we could only ping http targets on port 80. With this change by
adding the config boolean config option httping_ssl we could also ping
https ping targets on port 443.

Signed-off-by: Florian Eckert <fe@dev.tdt.de>
(cherry picked from commit a689e168aa)
2020-04-28 17:10:32 +02:00
Florian Eckert
c2cd3f0997 mwan3: fix variable naming
The variable IPT is not valid at this point. Set the variable usage to IPT4
fixes this issue.

Signed-off-by: Florian Eckert <fe@dev.tdt.de>
(cherry picked from commit 581d7df844)
2020-04-28 17:10:32 +02:00
Hannu Nyman
5bf733c2d2
Merge pull request #11986 from jefferyto/python-target-build-tools-openwrt-19.07
[openwrt-19.07] python,python3: Fix host build tool names recorded in target files
2020-04-28 12:58:06 +03:00
Jeffery To
c1394a6a7f python: Fix host build tool names recorded in target files
Python will record the values of CC, CXX, AR, and RANLIB (and other
configure options) used during compilation. pip will use these programs
when asked to compile extension modules on the target device.

* If ccache is used during build, CC and CXX will be ccache_cc and
  ccache_cxx, respectively, which are not available on-device (#11912).

* If an external toolchain is used during build, the values of these
  variables will contain the external toolchain prefix, which may not be
  available on target.

* If the normal toolchain is used during build, AR and RANLIB will
  contain the toolchain prefix, but the names of ar and ranlib on-device
  do not contain the prefix; they are named "ar" and "ranlib".

This changes the values of these variables in Python's files to match
the names available on-device, and without any toolchain prefix.

Signed-off-by: Jeffery To <jeffery.to@gmail.com>
2020-04-28 17:20:50 +08:00
Jeffery To
3d2dc69200 python3: Fix host build tool names recorded in target files
Python will record the values of CC, CXX, AR, and READELF (and other
configure options) used during compilation. pip will use these programs
when asked to compile extension modules on the target device.

* If ccache is used during build, CC and CXX will be ccache_cc and
  ccache_cxx, respectively, which are not available on-device (#11912).

* If an external toolchain is used during build, the values of these
  variables will contain the external toolchain prefix, which may not be
  available on target.

* If the normal toolchain is used during build, AR and READELF will
  contain the toolchain prefix, but the names of ar and readelf
  on-device do not contain the prefix; they are named "ar" and
  "readelf".

This changes the values of these variables in Python's files to match
the names available on-device, and without any toolchain prefix.

Signed-off-by: Jeffery To <jeffery.to@gmail.com>
(cherry picked from commit 9f81ab895e)
2020-04-28 13:56:47 +08:00
Rosen Penev
99abc1bd89
Merge pull request #11976 from br101/pingcheck-update
pingcheck: Update and add script directories
2020-04-27 15:27:27 -07:00
Bruno Randolf
aa353e13da pingcheck: Update and add script directories
- Update to version with longer interface names.

- Add /etc/pingcheck/(on|off)line.d/ directories with an example
  script. Closes #11263

Signed-off-by: Bruno Randolf <br1@einfach.org>
2020-04-27 16:15:27 +01:00
Rosen Penev
411633e52f mpd: update to 0.21.23
Signed-off-by: Rosen Penev <rosenp@gmail.com>
(cherry picked from commit 332e6d4e26)
2020-04-26 20:06:14 -07:00
Michael Heimpold
63a7426cda Merge branch 'BKPepe-19.07-php7' into openwrt-19.07 (fixes #11923)
Signed-off-by: Michael Heimpold <mhei@heimpold.de>
2020-04-25 21:18:16 +02:00
Michael Heimpold
d2a02ee24c Merge branch '19.07-php7' of https://github.com/BKPepe/packages into
a local branch for conflict resolving.

Signed-off-by: Michael Heimpold <mhei@heimpold.de>
2020-04-25 21:16:19 +02:00
Michael Heimpold
f2143f6ebc 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>
(cherry picked from commit 50b1cd3757)
2020-04-25 21:11:43 +02:00
Hannu Nyman
6d9bfa5a88
Merge pull request #11948 from dvtirol/rlm_rest-19.07
OpenWrt 19: freeradius3: Support building freeradius3-mod-rest
2020-04-25 09:56:00 +03:00
Tobias Girstmair
742944560c freeradius3: Support building freeradius3-mod-rest
Signed-off-by: Tobias Girstmair <tobias.girstmair@tirol.gv.at>
2020-04-24 21:22:31 +02:00
Hannu Nyman
f3bf2e9dd7
Merge pull request #11946 from jefferyto/python-pip-pep517-pyc-fix-openwrt-19.07
[openwrt-19.07] python-pip,python3-pip: Fix error when installing packages that require compilation
2020-04-24 19:30:16 +03:00
Jeffery To
cbb850712a python-pip: Fix error when installing packages that require compilation
This addresses one of the issues raised in #11912.

Signed-off-by: Jeffery To <jeffery.to@gmail.com>
2020-04-24 23:31:44 +08:00
Jeffery To
5b66075571 python3-pip: Fix error when installing packages that require compilation
This addresses one of the issues raised in #11912.

Signed-off-by: Jeffery To <jeffery.to@gmail.com>
(cherry picked from commit 11bc05763d)
2020-04-24 23:29:34 +08:00
Dirk Brenken
ad75f69013
travelmate: refine logical interface selection
Signed-off-by: Dirk Brenken <dev@brenken.org>
(cherry picked from commit 9eebb43159)
2020-04-24 08:34:46 +02:00
Josef Schlehofer
eccacec551
less: add ALTERNATIVES
This package can not be installed if you have installed less from
busybox.

Collected errors:
 * check_data_file_clashes: Package less wants to install file /bin/less
        But that file is already provided by package  * busybox
 * opkg_install_cmd: Cannot install package less.

To avoid this error, I moved it from /bin/less to /usr/bin/less.

If you install it now, it changes symlink from busybox to /usr/bin/less
/bin/less -> busybox*
/bin/less -> /usr/bin/less*

When you remove it, it changes symlink back to busybox.

That's why postint and postrm scripts are no longer needed.

Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
(cherry picked from commit 0ae161ecb6)
2020-04-23 09:26:56 +02:00
Rosen Penev
3ab2a1c518
Merge pull request #11938 from aleksander0m/aleksander/modem-updates-19.07
libqmi and MM updates for stable 19.07
2020-04-22 22:31:46 -07:00
Aleksander Morgado
8b46bb9dfa modemmanager: release 1.12.8
https://lists.freedesktop.org/archives/modemmanager-devel/2020-March/007729.html

Signed-off-by: Aleksander Morgado <aleksander@aleksander.es>
(cherry picked from commit 052d9274ef)
2020-04-23 06:45:39 +02:00
Aleksander Morgado
9c337b7baf modemmanager: release 1.12.6
https://lists.freedesktop.org/archives/modemmanager-devel/2020-February/007713.html

Signed-off-by: Aleksander Morgado <aleksander@aleksander.es>
(cherry picked from commit d121e270e8)
2020-04-23 06:45:31 +02:00
Aleksander Morgado
2c1fbf5eca libqmi: update version to 1.24.10
https://lists.freedesktop.org/archives/libqmi-devel/2020-April/003275.html

Signed-off-by: Aleksander Morgado <aleksander@aleksander.es>
(cherry picked from commit 5f995ccb47)
2020-04-23 06:44:12 +02:00
Aleksander Morgado
a6f66a0785 libqmi: update to version 1.24.8
https://lists.freedesktop.org/archives/libqmi-devel/2020-March/003248.html

Signed-off-by: Aleksander Morgado <aleksander@aleksander.es>
(cherry picked from commit b3fe4254ab)
2020-04-23 06:44:06 +02:00
Nicholas Smith
920c439465 libqmi: bump libqmi version
Signed-off-by: Nicholas Smith <nicholas.smith@telcoantennas.com.au>
(cherry picked from commit e9813262f9)
2020-04-23 06:43:59 +02:00
Rosen Penev
1b0b8ffa7a
Merge pull request #11928 from jefferyto/golang-1.13.10-openwrt-19.07
[openwrt-19.07] golang: Update to 1.13.10
2020-04-22 12:54:27 -07:00
Dirk Brenken
a15e7212df
travelmate: release 1.5.4
* add 'status_service' as workaround to init for 19.07
* fix 'wifionice' auto-login script
* fix autologin script matching
* change wifi scanning to logical interface name,
  no longer use the radio device

Signed-off-by: Dirk Brenken <dev@brenken.org>
(cherry picked from commit 59cca01a23)
2020-04-22 21:08:34 +02:00
Jeffery To
f6bb9f3c2b golang: Update to 1.13.10
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
2020-04-23 02:41:32 +08:00
Hannu Nyman
6e5ca4ddf4
Merge pull request #11925 from stangri/19.07-simple-adblock
[19.07] simple-adblock: bugfix: start downloads on cold boot/fresh install
2020-04-22 20:57:38 +03:00
Stan Grishin
c725bb1b4c simple-adblock: bugfix: start downloads on cold boot
Signed-off-by: Stan Grishin <stangri@melmac.net>
2020-04-22 17:46:07 +00:00
Josef Schlehofer
09738290a3
php7: update to version 7.2.30
Fixes:
CVE-2020-7066
CVE-2020-7064

Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
2020-04-22 18:05:21 +02:00
tripolar
059e949eec
Merge pull request #11882 from yousong/wget1907
[19.07] acme: depends on wget-ssl
2020-04-18 19:56:05 +02:00
Yousong Zhou
fb64ef9d36 acme: depends on wget-ssl
Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
(cherry picked from commit d917d662ae)
2020-04-18 23:38:25 +08:00
Yousong Zhou
ba4c4e681e wget: make the ssl variant provides wget-ssl
This is to address the need for specifying dependency on a wget
implementation with ssl support.

Now we have a game of names for opkg

 1. uclient-fetch: minimal version by openwrt project
 2. wget-nossl: gnu wget w/o ssl support
 3. wget-ssl: for the moment since this commit, gnu wget w/ ssl support
 4. wget: uclient-fetch, wget-nossl, or wget-ssl
 5. gnu-wget: wget-nossl or wget-ssl

By the time we provide some dummy package like uclient-fetch-ssl and
make it also provide wget-ssl, I guess by then we will also need
gnu-wget-ssl...

Ref: https://github.com/openwrt/packages/issues/11534
Ref: https://github.com/openwrt/packages/pull/9941
Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
(cherry picked from commit 585e4a38fe)
2020-04-18 23:36:43 +08:00
Karel Kočí
406b052f73 wget: do not provide itself
The package wget should not say that it provides itself.

This also make gnu-wget provide general so it is not written in Makefile
twice.

Signed-off-by: Karel Kočí <karel.koci@nic.cz>
(cherry picked from commit 75f2be7d50)
2020-04-18 23:36:33 +08:00
Dirk Brenken
ea5c497c23
adblock: filter spurious line endings in sources
* prevent processing of spurious line endings
  that confuses (g)awk

Signed-off-by: Dirk Brenken <dev@brenken.org>
(cherry picked from commit e291d68055)
2020-04-18 15:36:02 +02:00