buildroot.git
5 years ago{linux, linux-headers}: bump 4.{4, 9, 14, 19}.x / 5.{0, 1}.x series
Peter Korsgaard [Fri, 17 May 2019 08:44:22 +0000 (10:44 +0200)]
{linux, linux-headers}: bump 4.{4, 9, 14, 19}.x / 5.{0, 1}.x series

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
5 years agopackage/gerbera: fix pidfile name in start-stop-script
Jörg Krause [Thu, 16 May 2019 08:25:42 +0000 (10:25 +0200)]
package/gerbera: fix pidfile name in start-stop-script

`NAME` is not set resulting in a pidfile without a basename:
`/var/run/.pid`. Use the correct variable `DAEMON` instead.

Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agopackage/dhcp: fix upstream URL in Config.in
Thomas Petazzoni [Fri, 17 May 2019 08:02:43 +0000 (10:02 +0200)]
package/dhcp: fix upstream URL in Config.in

The current URL no longer exists, so update it to what looks like the
main DHCP upstream site.

This issue was noticed by the upstream URL check added by Matt Weber
in the pkg-stats script, whose results are visible at
http://autobuild.buildroot.net/stats/.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agopackage/python: security bump to version 2.7.16
Peter Korsgaard [Thu, 16 May 2019 14:12:41 +0000 (16:12 +0200)]
package/python: security bump to version 2.7.16

Fixes the following security issues:

- CVE-2013-1752: Change use of readline() in :class:`imaplib.IMAP4_SSL` to limit line length

- CVE-2018-14647: The C accelerated _elementtree module now initializes hash
  randomization salt from _Py_HashSecret instead of libexpat's default
  CSPRNG.

For more details, see the NEWS file:
https://github.com/python/cpython/blob/v2.7.16/Misc/NEWS.d/2.7.16rc1.rst

Refresh patches, drop now upstream
package/python/0035-bpo-35746-Fix-segfault-in-ssl-s-cert-parser-GH-11569.patch
and adjust hash of LICENSE file for a change of copyright years.

run-tests results:
16:05:41 TestPython2                              Starting
16:05:42 TestPython2                              Building
16:11:26 TestPython2                              Building done
16:11:32 TestPython2                              Cleaning up
.
----------------------------------------------------------------------
Ran 1 test in 351.905s

OK

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agopackage/wpebackend-fdo: package needs wayland libegl
Giulio Benetti [Mon, 15 Apr 2019 09:16:32 +0000 (11:16 +0200)]
package/wpebackend-fdo: package needs wayland libegl

Now wpebackend-fdo depends only on HAS_LIBEGL but if libegl is not of
wayland type, build breaks due to different EGLNativeWindowType types
depending on backends(fb,x11,wl).

Modify:
'depend on BR2_PACKAGE_HAS_LIBEGL'
to:
'depend on BR2_PACKAGE_HAS_LIBEGL_WAYLAND'
in Config.in to avoid building if there is not a wayland egl backend.
Modify also comment in Config.in when package is not selectable
mentioning the need to have an OpenEGL-capable Wayland backend.

Fixes:
http://autobuild.buildroot.net/results/4f02b91f6ffffd194e09ed18c917b4f678b1a52d/

Signed-off-by: Giulio Benetti <giulio.benetti@micronovasrl.com>
Reviewed-by: Adrian Perez de Castro <aperez@igalia.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agoUpdate for 2019.05-rc2
Peter Korsgaard [Wed, 15 May 2019 20:35:04 +0000 (22:35 +0200)]
Update for 2019.05-rc2

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agoDEVELOPERS: add Giulio Benetti to Minicom package
Giulio Benetti [Wed, 15 May 2019 15:06:38 +0000 (17:06 +0200)]
DEVELOPERS: add Giulio Benetti to Minicom package

Signed-off-by: Giulio Benetti <giulio.benetti@micronovasrl.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agopackage/libtorrent-rasterbar: fix build on m68k_cf
Fabrice Fontaine [Tue, 14 May 2019 17:02:13 +0000 (19:02 +0200)]
package/libtorrent-rasterbar: fix build on m68k_cf

An internal compiler error is raised on m68k_cf at dwarf2cfi.c:2802 in
connect_traces. Error can be fixed by adding -fno-defer-pop, see
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58864

Fixes:
 - http://autobuild.buildroot.org/results/746f60fadb40288341c1e5642cfcf6373b70583a

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agopackage/lynx: remove duplicate dependency for host-pkg-conf
Vadim Kochan [Wed, 15 May 2019 10:44:56 +0000 (13:44 +0300)]
package/lynx: remove duplicate dependency for host-pkg-conf

host-pkg-conf is already in default lynx's dependencies so remove it
from openssl condition block.

Signed-off-by: Vadim Kochan <vadim4j@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agopackage/lynx: fix build with libidn
Vadim Kochan [Tue, 14 May 2019 20:25:47 +0000 (23:25 +0300)]
package/lynx: fix build with libidn

In case of BR2_STATIC_LIBS=y the linking with libidn fails because
linker can't resolve libiconv symbols needed by libidn. Fix it by
required LIBS for libidn generated by pkg-conf.

The issue can be reproduced with the following defconfig:

BR2_x86_i686=y
BR2_STATIC_LIBS=y
BR2_PACKAGE_LIBICONV=y
BR2_PACKAGE_LIBIDN=y
BR2_PACKAGE_LYNX=y

Fixes:
http://autobuild.buildroot.net/results/23a421e15c32b17ff2f69f183a2e8620ecb93316/

Signed-off-by: Vadim Kochan <vadim4j@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years ago{linux, linux-headers}: bump 4.{9, 14, 19}.x / 5.{0, 1}.x series
Peter Korsgaard [Tue, 14 May 2019 21:24:00 +0000 (23:24 +0200)]
{linux, linux-headers}: bump 4.{9, 14, 19}.x / 5.{0, 1}.x series

Including mitigation for the "ZombieLoad" speculative execution
vulnerability.

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agopackage/woff2: add a comment for C++
Fabrice Fontaine [Tue, 14 May 2019 20:52:04 +0000 (22:52 +0200)]
package/woff2: add a comment for C++

woff2 depends on C++ so add a comment if C++ is not enabled

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Reviewed-by: Adrian Perez de Castro <aperez@igalia.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agopackage/netsurf: do not allow on static linking configurations
Thomas Petazzoni [Thu, 9 May 2019 20:28:08 +0000 (22:28 +0200)]
package/netsurf: do not allow on static linking configurations

Static linking does not work properly in netsurf, nobody fixed it, and
the netsurf build system is completely broken. Let's disable the
package for static linking configurations.

Fixes:

  http://autobuild.buildroot.net/results/28b43c29e241080e23c87145797ea00dc4b3970d/

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agopackage/netsurf: change how CFLAGS/LDFLAGS are passed
Thomas Petazzoni [Thu, 9 May 2019 20:28:07 +0000 (22:28 +0200)]
package/netsurf: change how CFLAGS/LDFLAGS are passed

Fixes:
http://autobuild.buildroot.net/results/eeb2863c6237aac8428e49a5ee514d43088b0fb8
http://autobuild.buildroot.net/results/f938fd1515f1d6e11b57aa6e314135789da52a44

In commit 6da049f8ae61b956d135526722ce58fc2f67626a ("package/netsurf:
fix build"), the CC variable passed to netsurf's build system was
extended to pass some special -I and -L options needed for netsurf to
find its own headers/libraries.

Unfortunately, on some systems (including mine), it breaks the build,
due to:

  toolpath_ := $(shell /bin/which $(CC__))

when $(CC__) contains some -I/-L options, they are considered to be
options "to which", which causes the funny:

/usr/bin/make install --directory=libnslog HOST=arm-buildroot-linux-uclibcgnueabi PREFIX=/home/thomas/projets/outputs/shared-netsurf/build/netsurf-3.8/tmpusr Q=@ WARNFLAGS='-Wall -W -Wno-error' DESTDIR=
make[3]: warning: jobserver unavailable: using -j1.  Add '+' to parent make rule.
/bin/which: invalid option -- 'I'
/bin/which: invalid option -- '/'
/bin/which: invalid option -- 'h'
/bin/which: invalid option -- 'o'
/bin/which: invalid option -- 'm'
/bin/which: invalid option -- 'e'
/bin/which: invalid option -- '/'
/bin/which: invalid option -- 't'
/bin/which: invalid option -- 'h'
/bin/which: invalid option -- 'o'
/bin/which: invalid option -- 'm'
/bin/which: invalid option -- 's'
/bin/which: invalid option -- '/'
[...]
/bin/which: invalid option -- 'l'
/bin/which: invalid option -- 'b'
/bin/which: --read-alias, -i: Warning: stdin is a tty.

and the build simply hangs.

We cannot pass CFLAGS/LDFLAGS as make options, as they would override
the CFLAGS definitions in netsurf Makefiles. However, those Makefiles
use the construct:

CFLAGS := $(CFLAGS) -more-flags

so by passing CFLAGS and LDFLAGS through the make environment, which
can achieve our goal.

It is worth mentioning that it remains very fragile, because
CFLAGS/LDFLAGS are used both for building target objects but also some
host tools. The netsurf build system is really not good.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agopackage/qt5multimedia: put back gstreamer 0.10 optional dependency
Fabrice Fontaine [Sun, 12 May 2019 13:26:26 +0000 (15:26 +0200)]
package/qt5multimedia: put back gstreamer 0.10 optional dependency

Commit b2e16ea64a6f89a82098625bb93db020ea5d4db4 tried to remove
gstreamer 0.10 support by removing its dependency but this was just
masking the issue as we have a build failure with gstreamer 0.10

So put back this dependency.

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
5 years agopackage/qt5multimedia: fix build with gstreamer 0.10
Fabrice Fontaine [Sun, 12 May 2019 13:26:27 +0000 (15:26 +0200)]
package/qt5multimedia: fix build with gstreamer 0.10

Fixes:
 - http://autobuild.buildroot.org/results/de26fd4f5ab130bd87ea9d7709d9568290362758

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Reviewed-by: Peter Seiderer <ps.report@gmx.net>
[Arnout: patch applies to 5.12.2 version only]
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
5 years agopackage/uclibc: fix preadv/pwritev offset argument type
Max Filippov [Mon, 13 May 2019 18:48:11 +0000 (11:48 -0700)]
package/uclibc: fix preadv/pwritev offset argument type

preadv/pwritev don't provide separate version for 64-bit wide off_t,
and default to 32-bit wide off_t, which results in a mismatch between
declaration and definition for user programs built with
-D_FILE_OFFSET_BITS=64.

Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
5 years agopackage/ca-certificates: bump to version 20190110
Adam Duskett [Mon, 13 May 2019 19:26:22 +0000 (15:26 -0400)]
package/ca-certificates: bump to version 20190110

Also add a hash for the license file.

Signed-off-by: Adam Duskett <Aduskett@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
5 years agopackage/linknx: fix build with log4cpp
Fabrice Fontaine [Mon, 13 May 2019 20:42:06 +0000 (22:42 +0200)]
package/linknx: fix build with log4cpp

Fixes:
 - http://autobuild.buildroot.org/results/1863f8f27041bc15ca68e786ba3b8e4764c40574

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
5 years agopackage/gdb: fix build of 7.12.1 with glibc 2.29
Fabrice Fontaine [Mon, 13 May 2019 21:29:18 +0000 (23:29 +0200)]
package/gdb: fix build of 7.12.1 with glibc 2.29

Between glibc 2.28 and glibc 2.29, commit
89983cb37c9319806a551e8fe9f3a11ff8f973e1 ("Update siginfo constants
from Linux kernel (bug 21286)") was merged. This commit moved the
TRAP_HWBKPT definition from an IA64-specific header to an
architecture-agnostic header.

This change exhibited a build issue that until then was only visible
on IA64 (which Buildroot does not support). This Buildroot commit
backports a patch from gdb upstream (which is in gdb since 8.2) which
mentions IA64 because it was originally meant to fix only the
IA64-related issue. But the glibc change, this change has become
visible on all architectures.

Fixes:
 - No autobuilder failures

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
5 years agopackage/gdb: fix build of 8.0.1 with glibc 2.29
Fabrice Fontaine [Mon, 13 May 2019 21:15:37 +0000 (23:15 +0200)]
package/gdb: fix build of 8.0.1 with glibc 2.29

Between glibc 2.28 and glibc 2.29, commit
89983cb37c9319806a551e8fe9f3a11ff8f973e1 ("Update siginfo constants
from Linux kernel (bug 21286)") was merged. This commit moved the
TRAP_HWBKPT definition from an IA64-specific header to an
architecture-agnostic header.

This change exhibited a build issue that until then was only visible
on IA64 (which Buildroot does not support). This Buildroot commit
backports a patch from gdb upstream (which is in gdb since 8.2) which
mentions IA64 because it was originally meant to fix only the
IA64-related issue. But the glibc change, this change has become
visible on all architectures.

Fixes:
 - No autobuilder failures

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
5 years agoboot/optee-os: install trusted shared libraries
Etienne Carriere [Tue, 14 May 2019 08:53:14 +0000 (10:53 +0200)]
boot/optee-os: install trusted shared libraries

Install generated trusted shared libraries in the target file
system next to the trusted applications.

Signed-off-by: Etienne Carriere <etienne.carriere@linaro.org>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
5 years agoboot/optee-os: fix TA files installation
Etienne Carriere [Tue, 14 May 2019 08:53:13 +0000 (10:53 +0200)]
boot/optee-os: fix TA files installation

This change fixes the TA binary files install sequence that were
previously install in target filesystem though
OPTEE_OS_INSTALL_IMAGES_CMDS instead of expected
OPTEE_OS_INSTALL_TARGET_CMDS.

This change removes useless mkdir prior call to $(INSTALL) that
already handles parent directory creation when needed.

This change conditions the .ta files installation upon their
availability as they may exist or not depending on the exact OPTEE
version/configuration selected.

Signed-off-by: Etienne Carriere <etienne.carriere@linaro.org>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
5 years ago{linux, linux-headers}: bump 4.{9, 14, 19}.x / 5.{0, 1}.x series
Peter Korsgaard [Tue, 14 May 2019 11:57:54 +0000 (13:57 +0200)]
{linux, linux-headers}: bump 4.{9, 14, 19}.x / 5.{0, 1}.x series

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
5 years agopackage/samba4: security bump to version 4.9.8
Peter Korsgaard [Tue, 14 May 2019 11:42:05 +0000 (13:42 +0200)]
package/samba4: security bump to version 4.9.8

Fixes the following security issues:

CVE-2018-16860: The checksum validation in the S4U2Self handler in the
embedded Heimdal KDC did not first confirm that the checksum was keyed,
allowing replacement of the requested target (client) principal.

For more details, see the advisory:
https://www.samba.org/samba/security/CVE-2018-16860.html

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
5 years agopackage/gdb: fix build of 8.1.1 since the bump to glibc 2.29
Fabrice Fontaine [Sun, 12 May 2019 10:11:47 +0000 (12:11 +0200)]
package/gdb: fix build of 8.1.1 since the bump to glibc 2.29

Between glibc 2.28 and glibc 2.29, commit
89983cb37c9319806a551e8fe9f3a11ff8f973e1 ("Update siginfo constants
from Linux kernel (bug 21286)") was merged. This commit moved the
TRAP_HWBKPT definition from an IA64-specific header to an
architecture-agnostic header.

This change exhibited a build issue that until then was only visible
on IA64 (which Buildroot does not support). This Buildroot commit
backports a patch from gdb upstream (which is in gdb since 8.2) which
mentions IA64 because it was originally meant to fix only the
IA64-related issue. But the glibc change, this change has become
visible on all architectures.

Fixes:

 - http://autobuild.buildroot.org/results/a81eb395bd95306fcbb07c1443c9134fd63fa379

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
[Thomas: extend commit log]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
5 years agopackage/mono: needs C++
Fabrice Fontaine [Sun, 12 May 2019 10:45:42 +0000 (12:45 +0200)]
package/mono: needs C++

mono needs a working C++ compiler to get the exact type of size_t since
version 5.16.0.179 and
https://github.com/mono/mono/commit/d8af77551de1f59803a46946786e0f9a5eb5cb9d

Fixes:
 - http://autobuild.buildroot.org/results/ee6d037154127cc6572f06e9a78bae383ea381bc

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Tested-by: Angelo Compagnucci <angelo@amarulasolutions.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
5 years agodocs/manual: clarify location of local.mk
Charlie Turner [Mon, 13 May 2019 10:37:42 +0000 (11:37 +0100)]
docs/manual: clarify location of local.mk

In particular, the manual was incorrect when the user had selected an
out-of-tree build.

Signed-off-by: Charlie Turner <cturner@igalia.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
5 years agopackage/sqlite: security bump version to 3.28.0
Bernd Kuhls [Mon, 13 May 2019 16:22:36 +0000 (18:22 +0200)]
package/sqlite: security bump version to 3.28.0

Release notes: https://www.sqlite.org/releaselog/3_28_0.html

Fixes https://nvd.nist.gov/vuln/detail/CVE-2019-5018

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
5 years agoconfigs/bananapi_m64: uboot needs host pylibfdt to build
Thomas Petazzoni [Mon, 13 May 2019 18:16:53 +0000 (20:16 +0200)]
configs/bananapi_m64: uboot needs host pylibfdt to build

Fixes:

  https://gitlab.com/buildroot.org/buildroot/-/jobs/210208532

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
5 years agoconfigs/friendlyarm_nanopi_a64: kernel needs host-openssl to build
Thomas Petazzoni [Mon, 13 May 2019 18:11:57 +0000 (20:11 +0200)]
configs/friendlyarm_nanopi_a64: kernel needs host-openssl to build

Fixes:

  https://gitlab.com/buildroot.org/buildroot/-/jobs/210208558

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
5 years agoconfigs/friendlyarm_nanopi_neo2: kernel needs host-openssl to build
Thomas Petazzoni [Mon, 13 May 2019 18:10:05 +0000 (20:10 +0200)]
configs/friendlyarm_nanopi_neo2: kernel needs host-openssl to build

Fixes:

  https://gitlab.com/buildroot.org/buildroot/-/jobs/210208559

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
5 years agopackage/rpm: fix build with NLS
Fabrice Fontaine [Sun, 12 May 2019 12:12:52 +0000 (14:12 +0200)]
package/rpm: fix build with NLS

Add TARGET_NLS_LIBS to LIBS to definitely fix linking with lintl instead
of calling autoreconf

Fixes:
 - http://autobuild.buildroot.org/results/a1446b419f5f59f65fe80849182e38457de203b5

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agopackage/samba4: fix build on mips64el
Fabrice Fontaine [Fri, 10 May 2019 22:20:53 +0000 (00:20 +0200)]
package/samba4: fix build on mips64el

Fixes:
 - http://autobuild.buildroot.org/results/bae0508e84c905dc23ad7cf1153cd1e9d8e4d734

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agoconfigs/olimex_a64_olinuxino: kernel needs host-openssl to build
Thomas Petazzoni [Sun, 12 May 2019 10:00:43 +0000 (12:00 +0200)]
configs/olimex_a64_olinuxino: kernel needs host-openssl to build

Fixes:

  https://gitlab.com/buildroot.org/buildroot/-/jobs/210208600

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
5 years agoconfigs/orangepi_pc2: kernel needs host-openssl to build
Thomas Petazzoni [Sun, 12 May 2019 09:59:57 +0000 (11:59 +0200)]
configs/orangepi_pc2: kernel needs host-openssl to build

Fixes:

  https://gitlab.com/buildroot.org/buildroot/-/jobs/210208607

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
5 years agoconfigs/orangepi_prime: kernel needs host-openssl to build
Thomas Petazzoni [Sun, 12 May 2019 09:59:10 +0000 (11:59 +0200)]
configs/orangepi_prime: kernel needs host-openssl to build

Fixes:

  https://gitlab.com/buildroot.org/buildroot/-/jobs/210208611

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
5 years agoconfigs/pine64_sopine: kernel needs host-openssl to build
Thomas Petazzoni [Sun, 12 May 2019 09:57:25 +0000 (11:57 +0200)]
configs/pine64_sopine: kernel needs host-openssl to build

Fixes:

  https://gitlab.com/buildroot.org/buildroot/-/jobs/210208624

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
5 years agoconfigs/pine64: kernel needs host-openssl to build
Thomas Petazzoni [Sun, 12 May 2019 09:56:26 +0000 (11:56 +0200)]
configs/pine64: kernel needs host-openssl to build

Fixes:

  https://gitlab.com/buildroot.org/buildroot/-/jobs/210208623

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
5 years agopackage/qt5enginio: needs ssl
Fabrice Fontaine [Sun, 5 May 2019 12:47:31 +0000 (14:47 +0200)]
package/qt5enginio: needs ssl

qt5enginio needs Qt5 with ssl support, a dependency could be added on
BR2_PACKAGE_QT5BASE_OPENSSL but this proposal was rejected in the first
iteration of this patch.

Qt5 has ssl support through libressl on Qt 5.6 or openssl in latest Qt
however we can't select libressl without adding a circular dependency as
some packages (such as sqlcipher) force openssl through
BR2_PACKAGE_OPENSSL_FORCE_LIBOPENSSL.

Any solution at the Kconfig level that tries to select libressl will
lead to circular dependencies. Since Qt 5.6 is more or less deprecated
anyway, and since it is not tested in the autobuilders, solve this with
a comment. The comment is only shown for Qt 5.6, when libressl is not
selected. Note that it is also shown when qt5enginio is not selected.

Fixes:
 - http://autobuild.buildroot.org/results/60678cab68ec9aa17184b8417b64b3b79adf428a

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
5 years agopackage/libinput: bump version to 1.13.2
Peter Seiderer [Thu, 9 May 2019 20:13:48 +0000 (22:13 +0200)]
package/libinput: bump version to 1.13.2

For detail see [1].

[1] https://lists.freedesktop.org/archives/wayland-devel/2019-May/040548.html

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agopackage/cracklib: properly handle BR2_SYSTEM_ENABLE_NLS=y configurations
Thomas Petazzoni [Thu, 9 May 2019 20:43:40 +0000 (22:43 +0200)]
package/cracklib: properly handle BR2_SYSTEM_ENABLE_NLS=y configurations

Use the TARGET_NLS_DEPENDENCIES and TARGET_NLS_LIBS variables to
correctly handle BR2_SYSTEM_ENABLE_NLS=y configurations.

Fixes:

  http://autobuild.buildroot.net/results/dda70b5b88c75d36c61fbf1cc5fca16ea8414582/

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agopackage/strace: disable bpf support for m68k
Baruch Siach [Thu, 9 May 2019 20:50:02 +0000 (23:50 +0300)]
package/strace: disable bpf support for m68k

Mismatch in struct bpf_prog_info fields offset between kernel headers
and strace local definition causes build failure. Disable bpf support
for m68k until upstream (either strace or the kernel) find a solution.

https://lists.strace.io/pipermail/strace-devel/2019-May/thread.html#8750

Fixes:
http://autobuild.buildroot.net/results/c036b11bf1f2fc39f42661634ef3e03360fb85de/
http://autobuild.buildroot.net/results/f142e4c7f0d512bb872572f5e678230117ab0ad5/
http://autobuild.buildroot.net/results/b74a17cfa7112c026938cacafdd18c6dca285005/

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agosupport/dependencies: Add hint for ArchLinux when host needs IA32 libs
Vadim Kochan [Fri, 10 May 2019 05:42:33 +0000 (08:42 +0300)]
support/dependencies: Add hint for ArchLinux when host needs IA32 libs

Add hint about which package needs to be installed to provide IA32 libs
support for the host when it is needed.

Signed-off-by: Vadim Kochan <vadim4j@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agoboard/pc: drop unused grub-efi.cfg file
Thomas Petazzoni [Fri, 10 May 2019 07:38:56 +0000 (09:38 +0200)]
board/pc: drop unused grub-efi.cfg file

Following commit fee29b05bb7db25e37c8a5175ce00dc712554edf
("configs/pc_x86_64_efi: use a GPT partition table"),
board/pc/grub-efi.cfg is no longer used anywhere: the
post-image-efi-gpt.sh script generates the grub configuration.

Also, since post-image-efi-gpt.sh generates a grub configuration file
that uses the root filesystem partition UUID as the root= kernel
argument, the instructions in the readme.txt file to tweak root= from
/dev/sda2 to /dev/vda2 is no longer relevant. This was noted in the
commit log of fee29b05bb7db25e37c8a5175ce00dc712554edf:

    The root filesystem location is passed to the kernel by a partition
    UUID, so it is possible to boot on QEMU, directly from the disk image,
    or dump the image to a physical device.

Fixes: #11841
Cc: Pete Morici <pmorici@dev295.com>
Cc: Carlos A. M. dos Santos <unixmania@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agopackage/postgresql: security bump to version 11.3
Peter Korsgaard [Thu, 9 May 2019 20:45:28 +0000 (22:45 +0200)]
package/postgresql: security bump to version 11.3

Fixes the following security issues:

CVE-2019-10129: Memory disclosure in partition routing

Prior to this release, a user running PostgreSQL 11 can read arbitrary bytes
of server memory by executing a purpose-crafted INSERT statement to a
partitioned table.

CVE-2019-10130: Selectivity estimators bypass row security policies

PostgreSQL maintains statistics for tables by sampling data available in
columns; this data is consulted during the query planning process.  Prior to
this release, a user able to execute SQL queries with permissions to read a
given column could craft a leaky operator that could read whatever data had
been sampled from that column.  If this happened to include values from rows
that the user is forbidden to see by a row security policy, the user could
effectively bypass the policy.  This is fixed by only allowing a
non-leakproof operator to use this data if there are no relevant row
security policies for the table.

For more details, see the release notes:
https://www.postgresql.org/about/news/1939/

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years ago{linux, linux-headers}: bump 4.{9, 14, 19}.x / 5.0.x series
Peter Korsgaard [Thu, 9 May 2019 07:46:53 +0000 (09:46 +0200)]
{linux, linux-headers}: bump 4.{9, 14, 19}.x / 5.0.x series

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agopackage/bullet: extras needs NPTL
Fabrice Fontaine [Mon, 29 Apr 2019 16:48:44 +0000 (18:48 +0200)]
package/bullet: extras needs NPTL

Fixes:
 - http://autobuild.buildroot.org/results/9c6325e6cc86116d1e8c940e0fcfe94243faa6de

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Tested-by: Giulio Benetti <giulio.benetti@micronovasrl.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
5 years agopackage/dhcp: use system bind
Fabrice Fontaine [Fri, 26 Apr 2019 16:56:13 +0000 (18:56 +0200)]
package/dhcp: use system bind

Select bind instead of using the embedded bind libraries. This will help
managing correctly all the bind dependencies such as zlib

Fixes:
 - http://autobuild.buildroot.org/results/a61f24e9f117c81893c58befb20d21179e61b85b

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
5 years agopackage/bind: don't enable server by default
Fabrice Fontaine [Fri, 26 Apr 2019 16:56:12 +0000 (18:56 +0200)]
package/bind: don't enable server by default

Don't enable server by default as dhcp will now select bind to use the
bind libraries

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
5 years agopackage/bind: remove threads dependency
Fabrice Fontaine [Fri, 26 Apr 2019 16:56:11 +0000 (18:56 +0200)]
package/bind: remove threads dependency

Threads dependency has been added in 2015 with commit
07c1ad4647b6a8e60338fc01ddcb2d629de0ad14 however bind can be built
without threads thanks to --disable-threads

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
5 years agopackage/bind: enable static build
Fabrice Fontaine [Fri, 26 Apr 2019 16:56:10 +0000 (18:56 +0200)]
package/bind: enable static build

Static build has been disabled in 2014 with commit
6045904752b06a8b8e52ba8fc2e49a8548964e8d however bind can be built
statically thanks to --without-dlopen so enable it back

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
5 years agopackage/collectd: explicitly disable lua
Fabrice Fontaine [Wed, 8 May 2019 21:05:43 +0000 (23:05 +0200)]
package/collectd: explicitly disable lua

lua plugin has been added in version 5.6.0 with
https://github.com/collectd/collectd/commit/023092323ca617c8ff95b1efd4a055c29b1aaa3b

Disabled it otherwise it'll be enabled if liblua is found

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agodocs/website/news.html: add 2019.05-rc1 announcement link
Peter Korsgaard [Wed, 8 May 2019 21:25:50 +0000 (23:25 +0200)]
docs/website/news.html: add 2019.05-rc1 announcement link

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agoUpdate for 2019.05-rc1
Peter Korsgaard [Wed, 8 May 2019 20:54:44 +0000 (22:54 +0200)]
Update for 2019.05-rc1

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agopackage/libsigrok: fix comment display
Fabrice Fontaine [Wed, 8 May 2019 17:00:28 +0000 (19:00 +0200)]
package/libsigrok: fix comment display

Commit 922b82bde9d554237769c21e50f6c5b4f73f41a8 added a dependency to
locale and updated comment text but forgot to add the !BR2_ENABLE_LOCALE
dependency to comment

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agopackage/atftp: security bump to version 0.7.2
Peter Korsgaard [Wed, 8 May 2019 06:35:19 +0000 (08:35 +0200)]
package/atftp: security bump to version 0.7.2

Fixes the following security issues:

CVE-2019-11365: An issue was discovered in atftpd in atftp 0.7.1.  A remote
attacker may send a crafted packet triggering a stack-based buffer overflow
due to an insecurely implemented strncpy call.  The vulnerability is
triggered by sending an error packet of 3 bytes or fewer.  There are
multiple instances of this vulnerable strncpy pattern within the code base,
specifically within tftpd_file.c, tftp_file.c, tftpd_mtftp.c, and
tftp_mtftp.c.

CVE-2019-11366: An issue was discovered in atftpd in atftp 0.7.1.  It does
not lock the thread_list_mutex mutex before assigning the current thread
data structure.  As a result, the daemon is vulnerable to a denial of
service attack due to a NULL pointer dereference.  If thread_data is NULL
when assigned to current, and modified by another thread before a certain
tftpd_list.c check, there is a crash when dereferencing current->next.

For details, see
https://pulsesecurity.co.nz/advisories/atftpd-multiple-vulnerabilities

Patch 0001-Makefile.am-link-against-libpthread-for-atftp.patch patches
Makefile.am, so add _AUTORECONF.

CFLAGS is now correctly handled since commit f9dbb96844167f (configure.ac:
fix hard setting of CFLAGS), so drop the workaround about passing
-fgnu89-inline in CPPFLAGS.

Add a hash for the license file.

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Reviewed-by: Ryan Barnett <ryan.barnett@rockwellcollins.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agopackage/wireshark: replace utf-8 space by ascii character
Peter Seiderer [Tue, 7 May 2019 21:30:30 +0000 (23:30 +0200)]
package/wireshark: replace utf-8 space by ascii character

Replace utf-8 NO-BREAK-SPACE (c2 a0) in comment line by simple
ascii space character.

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agopackage/vdr: replace utf-8 space by ascii character
Peter Seiderer [Tue, 7 May 2019 21:30:29 +0000 (23:30 +0200)]
package/vdr: replace utf-8 space by ascii character

Replace utf-8 NO-BREAK-SPACE (c2 a0) in comment line by simple
ascii space character.

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agopackage/turbolua: replace utf-8 apostrophe by ascii single quote
Peter Seiderer [Tue, 7 May 2019 21:30:28 +0000 (23:30 +0200)]
package/turbolua: replace utf-8 apostrophe by ascii single quote

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agopackage/sane-backends: replace utf-8 space by ascii character
Peter Seiderer [Tue, 7 May 2019 21:30:27 +0000 (23:30 +0200)]
package/sane-backends: replace utf-8 space by ascii character

Replace utf-8 NO-BREAK-SPACE (c2 a0) in comment line by simple
ascii space character.

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agopackage/rpm: replace utf-8 space by ascii character
Peter Seiderer [Tue, 7 May 2019 21:30:26 +0000 (23:30 +0200)]
package/rpm: replace utf-8 space by ascii character

Replace utf-8 NO-BREAK-SPACE (c2 a0) in comment line by simple
ascii space character.

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agopackage/quota: replace utf-8 space by ascii character
Peter Seiderer [Tue, 7 May 2019 21:30:25 +0000 (23:30 +0200)]
package/quota: replace utf-8 space by ascii character

Replace utf-8 NO-BREAK-SPACE (c2 a0) in comment line by simple
ascii space character.

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agopackage/python-prompt-toolkit: replace utf-8 space by ascii character
Peter Seiderer [Tue, 7 May 2019 21:30:24 +0000 (23:30 +0200)]
package/python-prompt-toolkit: replace utf-8 space by ascii character

Replace utf-8 NO-BREAK-SPACE (c2 a0) in comment line by simple
ascii space character.

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agopackage/python-pexpect: replace utf-8 apostrophe by ascii single quote
Peter Seiderer [Tue, 7 May 2019 21:30:23 +0000 (23:30 +0200)]
package/python-pexpect: replace utf-8 apostrophe by ascii single quote

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agocore: remove show-dependency-tree
Yann E. MORIN [Tue, 7 May 2019 20:52:29 +0000 (22:52 +0200)]
core: remove show-dependency-tree

show-dependency-tree was introduced in this release cycle, as a way to
quickly and easily provide the dependency tree to graph-depends.

show-dependency-tree is no longer used, now that graph-depends has been
switched over to using the more versatile show-info.

Beside, show-dependency-tree has never been part of a release.

Drop it.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Cc: Thomas De Schampheleire <patrickdepinguin@gmail.com>
Cc: Arnout Vandecappelle <arnout@mind.be>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agosupport/scripts: use show-info to extract dependency graph
Yann E. MORIN [Tue, 7 May 2019 20:52:28 +0000 (22:52 +0200)]
support/scripts: use show-info to extract dependency graph

Currently, we extract the dependency graph from the aptly named but
ad-hoc show-dependency-graph rule.

We now have a better solution to report package information, with
show-info.

Since show-dependency-graph never went into a release so far, and
show-info does provide the same (and more), switch to using show-info.

Thanks to Adam for suggesting the coding style to have a readable code
that is not ugly but still pleases flake8. Thanks to Arnout for
suggesting the use of dict.get() to further simplify the code.

Note: we do not use the reverse_dependencies field because it only
contains those packages that have a kconfig option, so we'd miss most
host packages.

Reported-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Cc: Thomas De Schampheleire <patrickdepinguin@gmail.com>
Cc: Adam Duskett <aduskett@gmail.com>
Cc: Arnout Vandecappelle <arnout@mind.be>
Cc: Ricardo Martincoski <ricardo.martincoski@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agopackage/python-mutagen: replace utf-8 apostrophe by ascii single quote
Peter Seiderer [Tue, 7 May 2019 20:35:40 +0000 (22:35 +0200)]
package/python-mutagen: replace utf-8 apostrophe by ascii single quote

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agopackage/python-idna: replace utf-8 quote by ascii single quote
Peter Seiderer [Tue, 7 May 2019 20:35:39 +0000 (22:35 +0200)]
package/python-idna: replace utf-8 quote by ascii single quote

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agopackage/python-gunicorn: replace utf-8 quote by ascii single quote
Peter Seiderer [Tue, 7 May 2019 20:35:38 +0000 (22:35 +0200)]
package/python-gunicorn: replace utf-8 quote by ascii single quote

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agopackage/pngquant: replace utf-8 hyphen by ascii hyphen
Peter Seiderer [Tue, 7 May 2019 20:35:37 +0000 (22:35 +0200)]
package/pngquant: replace utf-8 hyphen by ascii hyphen

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agopackage/mpfr: replace utf-8 space by ascii character
Peter Seiderer [Tue, 7 May 2019 20:35:36 +0000 (22:35 +0200)]
package/mpfr: replace utf-8 space by ascii character

Replace utf-8 NO-BREAK-SPACE (c2 a0) in comment line by simple
ascii space character.

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agopackage/mksh: replace utf-8 apostrophe by ascii single quote
Peter Seiderer [Tue, 7 May 2019 20:35:35 +0000 (22:35 +0200)]
package/mksh: replace utf-8 apostrophe by ascii single quote

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agopackage/madplay: replace utf-8 hyphen by ascii hyphen
Peter Seiderer [Tue, 7 May 2019 20:35:34 +0000 (22:35 +0200)]
package/madplay: replace utf-8 hyphen by ascii hyphen

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agopackage/libunwind: replace utf-8 space by ascii character
Peter Seiderer [Tue, 7 May 2019 20:35:33 +0000 (22:35 +0200)]
package/libunwind: replace utf-8 space by ascii character

Replace utf-8 NO-BREAK-SPACE (c2 a0) in comment line by simple
ascii space character.

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agopackage/jemalloc: eplace utf-8 space by ascii character
Peter Seiderer [Tue, 7 May 2019 20:35:32 +0000 (22:35 +0200)]
package/jemalloc: eplace utf-8 space by ascii character

Replace utf-8 NO-BREAK-SPACE (c2 a0) in comment line by simple
ascii space character.

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agopackage/collectd: replace utf-8 quote by ascii single quote
Peter Seiderer [Tue, 7 May 2019 20:35:31 +0000 (22:35 +0200)]
package/collectd: replace utf-8 quote by ascii single quote

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agopackage/capnproto: replace utf-8 apostrophe by ascii single quote
Peter Seiderer [Tue, 7 May 2019 20:35:30 +0000 (22:35 +0200)]
package/capnproto: replace utf-8 apostrophe by ascii single quote

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agopackage/vde2: replace utf-8 space by ascii character
Peter Seiderer [Tue, 7 May 2019 20:35:29 +0000 (22:35 +0200)]
package/vde2: replace utf-8 space by ascii character

Replace utf-8 NO-BREAK-SPACE (c2 a0) in comment line by simple
ascii space character.

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agopackage/tekui: replace utf-8 space by ascii character
Peter Seiderer [Tue, 7 May 2019 20:35:28 +0000 (22:35 +0200)]
package/tekui: replace utf-8 space by ascii character

Replace utf-8 NO-BREAK-SPACE (c2 a0) in comment line by simple
ascii space character.

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agopackage/sysklogd: replace utf-8 space by ascii character
Peter Seiderer [Tue, 7 May 2019 20:35:27 +0000 (22:35 +0200)]
package/sysklogd: replace utf-8 space by ascii character

Replace utf-8 NO-BREAK-SPACE (c2 a0) in comment line by simple
ascii space character.

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agopackage/reaver: replace utf-8 space by ascii character
Peter Seiderer [Tue, 7 May 2019 20:35:26 +0000 (22:35 +0200)]
package/reaver: replace utf-8 space by ascii character

Replace utf-8 NO-BREAK-SPACE (c2 a0) in comment line by simple
ascii space character.

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agopackage/qemu: replace utf-8 space by ascii character
Peter Seiderer [Tue, 7 May 2019 20:35:25 +0000 (22:35 +0200)]
package/qemu: replace utf-8 space by ascii character

Replace utf-8 NO-BREAK-SPACE (c2 a0) in comment line by simple
ascii space character.

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agopackage/libopenssl: replace utf-8 quote by ascii single quote
Peter Seiderer [Tue, 7 May 2019 20:35:24 +0000 (22:35 +0200)]
package/libopenssl: replace utf-8 quote by ascii single quote

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agopackage/libglu: replace utf-8 apostrophe by ascii single quote
Peter Seiderer [Tue, 7 May 2019 20:35:23 +0000 (22:35 +0200)]
package/libglu: replace utf-8 apostrophe by ascii single quote

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agopackage/ffmpeg: replace utf-8 space by ascii character
Peter Seiderer [Tue, 7 May 2019 20:35:22 +0000 (22:35 +0200)]
package/ffmpeg: replace utf-8 space by ascii character

Replace utf-8 NO-BREAK-SPACE (c2 a0) in comment line by simple
ascii space character.

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agopackage/assimp: replace utf-8 quote by ascii single quote
Peter Seiderer [Tue, 7 May 2019 20:35:21 +0000 (22:35 +0200)]
package/assimp: replace utf-8 quote by ascii single quote

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agopackage/go: bump version to 1.12.5
Peter Korsgaard [Tue, 7 May 2019 15:13:39 +0000 (17:13 +0200)]
package/go: bump version to 1.12.5

Fixes a number of issues discovered since 1.12.4.  From the release notes:

go1.12.5 (released 2019/05/06) includes fixes to the compiler, the linker,
the go command, the runtime, and the os package.

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agopackage/luarocks: bump to version 3.1.1
Francois Perrad [Mon, 6 May 2019 19:32:13 +0000 (21:32 +0200)]
package/luarocks: bump to version 3.1.1

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agopackage/linux-headers: drop support 4.20 headers
Peter Korsgaard [Tue, 7 May 2019 17:45:08 +0000 (19:45 +0200)]
package/linux-headers: drop support 4.20 headers

Now that support for 5.1 headers have been added, drop support for the
obsolete 4.20 series.

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agopackage/linux-headers: add support for Linux 5.1 kernel headers
Marcin Niestroj [Tue, 7 May 2019 09:01:49 +0000 (11:01 +0200)]
package/linux-headers: add support for Linux 5.1 kernel headers

Signed-off-by: Marcin Niestroj <m.niestroj@grinn-global.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agotoolchain/toolchain-external-andes-nds32: disable static build
Baruch Siach [Tue, 7 May 2019 03:54:22 +0000 (06:54 +0300)]
toolchain/toolchain-external-andes-nds32: disable static build

Buildroot does not support static build with glibc. Since this external
toolchain uses glibc, disable static build with this toolchain.

Fixes:
http://autobuild.buildroot.net/results/3c93cfac81f15f4c18eb7ad578ad86bb7bcf1c12/
http://autobuild.buildroot.net/results/63994f51a2b224b66acfafe5b236249d867a507d/
http://autobuild.buildroot.net/results/96c3be922a96c50fbd8e68059f9ced8a2a75f9ab/

Cc: Nylon Chen <nylon7@andestech.com>
Suggested-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agopackage/cryptopp: replace utf-8 space by ascii character
Peter Seiderer [Mon, 6 May 2019 20:24:02 +0000 (22:24 +0200)]
package/cryptopp: replace utf-8 space by ascii character

Replace utf-8 NO-BREAK-SPACE (c2 a0) in comment line by simple
ascii space character.

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agopackage/docker-cli: bump version to 18.09.6
Peter Korsgaard [Mon, 6 May 2019 19:19:02 +0000 (21:19 +0200)]
package/docker-cli: bump version to 18.09.6

Additional post-18.09.5 fixes:

Builder:
- Fixed COPY and ADD with multiple <src> to not invalidate cache if
  DOCKER_BUILDKIT=1.moby/moby#38964

Networking:
- Cleaned up the cluster provider when the agent is closed. docker/libnetwork#2354
- Windows: Now selects a random host port if the user does not specify a
  host port.  docker/libnetwork#2369
- --service-cluster-ip-range is now configurable for UCP install.
  docker/orca#10263

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agopackage/docker-engine: bump version to 18.09.6
Peter Korsgaard [Mon, 6 May 2019 19:19:01 +0000 (21:19 +0200)]
package/docker-engine: bump version to 18.09.6

Additional post-18.09.5 fixes:

Builder:
- Fixed COPY and ADD with multiple <src> to not invalidate cache if
  DOCKER_BUILDKIT=1.moby/moby#38964

Networking:
- Cleaned up the cluster provider when the agent is closed. docker/libnetwork#2354
- Windows: Now selects a random host port if the user does not specify a
  host port.  docker/libnetwork#2369
- --service-cluster-ip-range is now configurable for UCP install.
  docker/orca#10263

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agopackage/libbsd: disable for nds32
Nylon Chen [Mon, 6 May 2019 09:04:10 +0000 (17:04 +0800)]
package/libbsd: disable for nds32

There is no support for nds32 in libbsd.

Fixes:
  http://autobuild.buildroot.net/results/eb79fbd8283f62ca08b85d851e3c817e0354f85c/

Signed-off-by: Nylon Chen <nylon7@andestech.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agopostgresql: disable spinlock support for nds32
Nylon Chen [Mon, 6 May 2019 09:04:09 +0000 (17:04 +0800)]
postgresql: disable spinlock support for nds32

Fixes:
  - http://autobuild.buildroot.net/results/881318dad8217be0cd0eb18ce3c5ab3aff216272
Signed-off-by: Nylon Chen <nylon7@andestech.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agopackage/orc: bump version to 0.4.29
Peter Korsgaard [Mon, 6 May 2019 08:02:13 +0000 (10:02 +0200)]
package/orc: bump version to 0.4.29

Contains a number of fixes. Release notes:

0.4.28: https://lists.freedesktop.org/archives/gstreamer-announce/2017-November/000449.html
0.4.29: https://lists.freedesktop.org/archives/gstreamer-announce/2019-April/000483.html

Also add a hash for the license file.

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agopackage/gst1-shark: bump version to 0.6.0
Peter Seiderer [Tue, 23 Apr 2019 20:23:51 +0000 (22:23 +0200)]
package/gst1-shark: bump version to 0.6.0

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
5 years agopackage/gst1-interpipe: bump version to 9af5b40
Peter Seiderer [Tue, 23 Apr 2019 20:22:43 +0000 (22:22 +0200)]
package/gst1-interpipe: bump version to 9af5b40

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>