Bernd Kuhls [Sun, 20 Oct 2019 11:15:25 +0000 (13:15 +0200)]
package/cups-filters: bump version to 1.25.11
Removed patch applied upstream:
https://github.com/OpenPrinting/cups-filters/commit/
1fa09312860cdee342a0afc9423c9d3c411bbbae
Drop CUPS_FILTERS_MAKE_LN_SRF_EXECUTABLE which is no longer needed now
that the ln-srf script is part of the tarball and not added through a
patch.
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Bernd Kuhls [Sun, 20 Oct 2019 10:16:00 +0000 (12:16 +0200)]
package/expat: bump version to 2.2.9
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Bernd Kuhls [Sun, 20 Oct 2019 10:11:45 +0000 (12:11 +0200)]
package/elfutils: bump version to 0.177
Removed patched applied upstream, rebased remaining patches.
Added md5 hash provided by upstream.
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Bernd Kuhls [Sun, 20 Oct 2019 09:53:48 +0000 (11:53 +0200)]
package/dialog: bump version to 1.3-
20190808
Added license hash, switched _SITE to https.
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Bernd Kuhls [Sun, 20 Oct 2019 09:46:13 +0000 (11:46 +0200)]
package/dav1d: bump version to 0.5.0
Fixes:
http://autobuild.buildroot.net/results/c2e/
c2e5b1d8c59d9ca37f06efc67c0928f7df1096ce/
due to upstream commit
https://code.videolan.org/videolan/dav1d/commit/
e65abadff6872d319ece76c8617604c628c3126e
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Bernd Kuhls [Sun, 20 Oct 2019 09:33:33 +0000 (11:33 +0200)]
package/libdvdnav: bump version to 6.0.1
Changelog:
https://code.videolan.org/videolan/libdvdnav/blob/master/ChangeLog
Removed patch after upstream added a different detection code for OS/2:
https://code.videolan.org/videolan/libdvdnav/commit/
ed3d4c31e16d976b8b95822570d7ea1f921e26ac
Build-tested using
support/config-fragments/autobuild/br-nios2-glibc.config
Added all hashes provided by upstream.
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Bernd Kuhls [Sun, 20 Oct 2019 09:33:32 +0000 (11:33 +0200)]
package/libdvdread: bump version to 6.0.2
Changelog:
https://code.videolan.org/videolan/libdvdread/blob/master/NEWS
Added all hashes provided by upstream.
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Joseph Kogut [Wed, 24 Jul 2019 17:35:36 +0000 (10:35 -0700)]
package/lld: new host package
lld can be used by external packages or by setting BR2_TARGET_LDFLAGS
(though a dependency is missing to make the latter really work). Future
patches will improve the integration in the build.
Signed-off-by: Joseph Kogut <joseph.kogut@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Fabio Estevam [Sat, 19 Oct 2019 21:05:25 +0000 (18:05 -0300)]
configs/imx6-sabresd_qt5: Remove the swrast option
i.MX6 has GPU in hardware, so we really don't need to
fallback to software rendering.
Remove the unneeded BR2_PACKAGE_MESA3D_GALLIUM_DRIVER_SWRAST
option.
Suggested-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Signed-off-by: Fabio Estevam <festevam@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Sam Voss [Sat, 19 Oct 2019 22:04:52 +0000 (17:04 -0500)]
package/util-linux: Add autoreconf for wipefs
Patch for adding the `--enable-wipefs` configuration option requires an
reconfiguration of autotools which is causing autobuilder failures.
Signed-off-by: Sam Voss <sam.voss@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Thomas Preston [Tue, 1 Oct 2019 12:41:31 +0000 (13:41 +0100)]
pkgconf: Add pkgconf system lib and include path
Buildroot does not reconfigure pkgconf system library and system include
dirs to STAGING_DIR. This means that pkgconf prints the sysroot system
library and system include dirs instead of letting the compiler handle
the logical sysroot. This breaks the -isystem compiler flag, as it
increases the priority of the system library and system include
directories. For example:
$ output/host/bin/pkg-config --cflags glib-2.0
-Ioutput/host/bin/../x86_64-buildroot-linux-gnu/sysroot/usr/include/glib-2.0
-Ioutput/host/bin/../x86_64-buildroot-linux-gnu/sysroot/usr/lib/glib-2.0/include
-Ioutput/host/bin/../x86_64-buildroot-linux-gnu/sysroot/usr/include
A header in `.../sysroot/usr/include` will be included before a header
in any directory specified with -isystem flags. Specifically, this
breaks the Chromium build system, which expects a C++ math.h in a
bundled LLVM C++ library, and gets a GNU C math.h instead.
Fix this by telling pkgconf about the sysroot's system library and
system include directories, so that it doesn't accidentally print them.
Signed-off-by: Thomas Preston <thomas.preston@codethink.co.uk>
[Arnout: change order of variables]
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Thomas Preston [Tue, 1 Oct 2019 12:41:30 +0000 (13:41 +0100)]
pkgconf: Split pkgconf command into multi-line
The pkgconf command is a long and confusing line, which is about to get
longer. Split it up into logical stages so that it is easier to
visualise changes.
Signed-off-by: Thomas Preston <thomas.preston@codethink.co.uk>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Aussedat Louis [Thu, 17 Oct 2019 20:39:47 +0000 (22:39 +0200)]
board: Add FriendlyARM Nanopi NEO Plus2 support
board with below features:
- U-Boot 2019.01
- Linux 5.0
- Default packages from buildroot
Signed-off-by: Aussedat Louis <aussedat.louis@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Fabio Estevam [Sat, 19 Oct 2019 19:30:59 +0000 (16:30 -0300)]
configs/imx6-sabresd_qt5: Select the KMSRO gallium driver
After migrating to Mesa 19.2 the imx-drm_dri.so is no longer installed
unless the kmsro gallium driver is selected, so explicitly select
BR2_PACKAGE_MESA3D_GALLIUM_DRIVER_KMSRO to fix the problem.
Suggested-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Fabio Estevam <festevam@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Carlos Santos [Sat, 19 Oct 2019 01:15:55 +0000 (22:15 -0300)]
package/libseccomp: circumvent uClibc-ng bug on x86_64
On uClibc up to at least v1.0.32, syscall() for x86_64 is defined in
libc/sysdeps/linux/x86_64/syscall.S as
syscall:
movq %rdi, %rax /* Syscall number -> rax. */
movq %rsi, %rdi /* shift arg1 - arg5. */
movq %rdx, %rsi
movq %rcx, %rdx
movq %r8, %r10
movq %r9, %r8
movq 8(%rsp),%r9 /* arg6 is on the stack. */
syscall /* Do the system call. */
cmpq $-4095, %rax /* Check %rax for error. */
jae __syscall_error /* Branch forward if it failed. */
ret /* Return to caller. */
And __syscall_error is defined in
libc/sysdeps/linux/x86_64/__syscall_error.c as
int __syscall_error(void) attribute_hidden;
int __syscall_error(void)
{
register int err_no __asm__ ("%rcx");
__asm__ ("mov %rax, %rcx\n\t"
"neg %rcx");
__set_errno(err_no);
return -1;
}
Notice that __syscall_error returns -1 as a 32-bit int in %rax, a 64-bit
register i.e. 0x00000000ffffffff (decimal
4294967295). When this value
is compared to -1 in _sys_chk_seccomp_flag_kernel() the result is false,
leading the function to always return 0.
Prevent the error by coercing the return value of syscall() to int in a
temporary variable before comparing it to -1. We could use just an (int)
cast but the variable makes the code more readable and the machine code
generated by the compiler is the same in both cases.
All other syscall() invocations were inspected and they either already
coerce the result to int or do not compare it to -1.
The same problem probably occurs on other 64-bit systems but so far only
x86_64 was tested.
A bug report is being submitted to uClibc.
Upstream status: https://github.com/seccomp/libseccomp/pull/175
Signed-off-by: Carlos Santos <unixmania@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
James Hilliard [Thu, 17 Oct 2019 16:21:27 +0000 (10:21 -0600)]
package/pkg-python: fix python 3.8.0 package builds
We need to update the sysconfigdata path for python 3.8.0 per upstream
commit
7efc526e5cfb929a79c192ac2dcf7eb78d3a4401 which indicates the "m"
flag has been removed from sys.abiflags.
Fixes this build error when building target packages:
ValueError: Empty module name
Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Sam Voss [Fri, 18 Oct 2019 03:30:46 +0000 (22:30 -0500)]
package/util-linux: Add option for enabling wipefs
Add option to enable wipefs as a standalone app, so that it may be
enabled when the flag --disable-all-packages is set.
Signed-off-by: Sam Voss <sam.voss@gmail.com>
Tested-by: Carlos Santos <unixmania@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Joel Stanley [Fri, 18 Oct 2019 12:11:35 +0000 (22:41 +1030)]
pdbg: Bump version to v2.4
Signed-off-by: Joel Stanley <joel@jms.id.au>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Bernd Kuhls [Sat, 19 Oct 2019 07:48:26 +0000 (09:48 +0200)]
package/x11r7/xlib_libXfont2: fix libbsd detection
Previous patch defined HAVE_LIBBSD even if strlcat function was present
in libc leading to build errors due to inclusion of bsd/string.h:
https://gitlab.freedesktop.org/xorg/lib/libxfont/blob/master/src/util/replace.h#L50
AC_SEARCH_LIBS is defined as
"Search for a library defining function if it's not already available."
https://www.gnu.org/software/autoconf/manual/autoconf-2.67/html_node/Libraries.html
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Bernd Kuhls [Sat, 19 Oct 2019 08:03:24 +0000 (10:03 +0200)]
package/meson: import lzma only when needed
Fixes
http://autobuild.buildroot.net/results/49d/
49d89e419edc34ec77129d748ac573f89dfddbae/
and many, many, many more.
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
[Arnout: extend patch commit message]
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Bernd Kuhls [Sat, 19 Oct 2019 08:18:13 +0000 (10:18 +0200)]
package/tvheadend: bump version
Removed patch applied upstream:
https://github.com/tvheadend/tvheadend/commit/
d1fc95a8ad4320054b5f1aa0d4398d193eba246e
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Bernd Kuhls [Sat, 19 Oct 2019 08:18:12 +0000 (10:18 +0200)]
package/dtv-scan-tables: bump version
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Asaf Kahlon [Sat, 19 Oct 2019 18:21:27 +0000 (21:21 +0300)]
package/python-pytablewriter: bump to version 0.46.1
* Fix indentation in hash file.
* Update dependency list.
* The package can now be compiled for both Python 2 and Python 3,
since it doesn't depend on pytablereader anymore (which used pathpy).
Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Asaf Kahlon [Sat, 19 Oct 2019 18:21:26 +0000 (21:21 +0300)]
package/python-pytablereader: bump to version 0.26.1
* Update dependency list.
* License change: same content, line endings are now CRLF.
Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
[Arnout: keep alphabetical order of selects]
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Asaf Kahlon [Sat, 19 Oct 2019 18:21:25 +0000 (21:21 +0300)]
package/python-msgfy: new package
Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Asaf Kahlon [Sat, 19 Oct 2019 18:21:24 +0000 (21:21 +0300)]
package/python-jinja2: bump to version 2.10.3
* Fix indentation in hash file.
* LICENSE was renamed to LICENSE.rst.
In addition, some phrasing and formatting were slightly changed
(commit
65da441ee72ffd270e7ce4e4ab60a8826567078b on upstream).
Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Asaf Kahlon [Sat, 19 Oct 2019 14:59:35 +0000 (17:59 +0300)]
package/python-flask-babel: bump to version 0.12.0
Also add hash for license file.
Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Asaf Kahlon [Sat, 19 Oct 2019 14:59:36 +0000 (17:59 +0300)]
package/python-flask-cors: bump to version 3.0.8
Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Asaf Kahlon [Sat, 19 Oct 2019 14:59:37 +0000 (17:59 +0300)]
package/python-pathpy: bump to version 12.0.1
* Add license file (and hash).
* Support for Python 2 has dropped.
* Update recursive reverse dependencies to only support Python 3.
Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Asaf Kahlon [Fri, 18 Oct 2019 18:26:05 +0000 (21:26 +0300)]
package/python-portend: bump to version 2.5
Also add license file (and hash).
Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Asaf Kahlon [Fri, 18 Oct 2019 18:26:04 +0000 (21:26 +0300)]
package/python-pip: bump to version 19.3.1
And fix indentation in the hash file.
Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Asaf Kahlon [Fri, 18 Oct 2019 18:26:02 +0000 (21:26 +0300)]
package/python-logbook: bump to version 1.5.3
Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Asaf Kahlon [Fri, 18 Oct 2019 18:26:01 +0000 (21:26 +0300)]
package/python-ipython: bump to version 7.8.0
And fix indentation in the hash file.
Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Asaf Kahlon [Fri, 18 Oct 2019 18:26:00 +0000 (21:26 +0300)]
package/python-ipaddress: bump to version 1.0.23
Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Asaf Kahlon [Fri, 18 Oct 2019 18:26:28 +0000 (21:26 +0300)]
package/python-simplesqlite: bump to version 0.45.2
* Update dependency list.
* Add hash for license file.
Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Asaf Kahlon [Fri, 18 Oct 2019 18:26:25 +0000 (21:26 +0300)]
package/python-urwid: bump to version 2.0.1
Also add hash for license file.
Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Asaf Kahlon [Fri, 18 Oct 2019 18:26:27 +0000 (21:26 +0300)]
package/spdlog: bump to version 1.4.2
Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Asaf Kahlon [Fri, 18 Oct 2019 18:25:59 +0000 (21:25 +0300)]
package/python-attrs: bump to version 19.3.0
Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Asaf Kahlon [Fri, 18 Oct 2019 18:26:22 +0000 (21:26 +0300)]
package/python-twisted: bump to version 19.7.0
License update: copyright year bump and addition of a developer
to the contributors list.
Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Asaf Kahlon [Fri, 18 Oct 2019 18:26:23 +0000 (21:26 +0300)]
package/python-txtorcon: bump to version 19.1.0
And fix alignment on hash file.
Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Asaf Kahlon [Fri, 18 Oct 2019 18:26:26 +0000 (21:26 +0300)]
package/python-webpy: bump to version 0.40
* Update dependency list.
* Take tarball from PyPI instead of Github.
* webpy now supports both Python 2 and Python 3.
* License change: On commit
97466ad0392738be2f5cc3bd4c1289872a8a0f44,
WSGI server moved the cherrypy library so web/wsgiserver/LICENSE.txt
has removed and LICENSE.txt doesn't mention WSGI anymore.
Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Asaf Kahlon [Fri, 18 Oct 2019 18:26:20 +0000 (21:26 +0300)]
package/python-thrift: bump to version 0.11.0
* Update dependency list.
* Add hash for license file.
* The package now supports both Python 2 and Python 3.
Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Asaf Kahlon [Fri, 18 Oct 2019 18:26:24 +0000 (21:26 +0300)]
package/python-u-msgpack: bump to version 2.5.2
Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Asaf Kahlon [Fri, 18 Oct 2019 18:26:17 +0000 (21:26 +0300)]
package/python-tabledata: bump to version 0.9.1
* Update dependency list.
* Remove post-extract hook, since setup.cfg doesn't create wheel anymore.
* Update license hash: same content, line-endings are now UNIX.
Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Asaf Kahlon [Fri, 18 Oct 2019 18:26:19 +0000 (21:26 +0300)]
package/python-texttable: bump to version 1.6.2
* Switch _SETUP_TYPE to setuptools instead of distutils.
* License has changed to MIT (updated LICENSE, PKG-INFO, setup.py,
sources files, etc.)
Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Asaf Kahlon [Fri, 18 Oct 2019 18:26:21 +0000 (21:26 +0300)]
package/python-treq: bump to version 18.6.0
Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Asaf Kahlon [Fri, 18 Oct 2019 18:26:18 +0000 (21:26 +0300)]
package/python-tempora: bump to version 1.14.1
Also add license file and hash.
Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Asaf Kahlon [Fri, 18 Oct 2019 18:26:14 +0000 (21:26 +0300)]
package/python-socketio: bump to version 4.3.1
Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Asaf Kahlon [Fri, 18 Oct 2019 18:26:16 +0000 (21:26 +0300)]
package/python-sqliteschema: new package
Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Asaf Kahlon [Fri, 18 Oct 2019 18:26:15 +0000 (21:26 +0300)]
package/python-sqlalchemy: bump to version 1.3.10
Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Asaf Kahlon [Fri, 18 Oct 2019 18:26:12 +0000 (21:26 +0300)]
package/python-service-identity: bump to version 18.1.0
* Update dependency list.
* Add hash for license file.
Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Asaf Kahlon [Fri, 18 Oct 2019 18:26:13 +0000 (21:26 +0300)]
package/python-setuptools-scm: bump to version 3.3.3
Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Asaf Kahlon [Fri, 18 Oct 2019 18:26:11 +0000 (21:26 +0300)]
package/python-sentry-sdk: bump to version 0.13.0
Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Asaf Kahlon [Fri, 18 Oct 2019 18:26:10 +0000 (21:26 +0300)]
package/python-secretstorage: bump to version 3.1.1
License change: copyright year bump.
Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Asaf Kahlon [Fri, 18 Oct 2019 18:26:09 +0000 (21:26 +0300)]
package/python-redis: bump to version 3.3.11
Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Asaf Kahlon [Fri, 18 Oct 2019 18:26:08 +0000 (21:26 +0300)]
package/python-pyzmq: bump to version 18.1.0
Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Asaf Kahlon [Fri, 18 Oct 2019 18:26:07 +0000 (21:26 +0300)]
package/python-pyyaml: bump to version 5.1.2
Also add hash for license file.
Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Asaf Kahlon [Fri, 18 Oct 2019 18:26:06 +0000 (21:26 +0300)]
package/python-pyasn1-modules: bump to version 0.2.7
Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Asaf Kahlon [Fri, 18 Oct 2019 18:25:58 +0000 (21:25 +0300)]
package/libuv: bump to version 1.33.0
Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Mauro Condarelli [Fri, 18 Oct 2019 12:50:15 +0000 (14:50 +0200)]
package/mc: bump version to 4.8.23
Signed-off-by: Mauro Condarelli <mc5686@mclink.it>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Bernd Kuhls [Thu, 17 Oct 2019 18:04:43 +0000 (20:04 +0200)]
package/x11r7/xorgproto: bump version to 2019.2
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Bernd Kuhls [Thu, 17 Oct 2019 17:21:19 +0000 (19:21 +0200)]
package/tvheadend: bump version
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Bernd Kuhls [Thu, 17 Oct 2019 17:01:13 +0000 (19:01 +0200)]
package/waylandpp: bump version to 0.2.7
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Bernd Kuhls [Thu, 17 Oct 2019 16:55:56 +0000 (18:55 +0200)]
package/samba4: bump version to 4.10.9
Release notes:
https://www.samba.org/samba/history/samba-4.10.9.html
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Fabrice Fontaine [Thu, 17 Oct 2019 17:01:15 +0000 (19:01 +0200)]
package/glorytun: remove patch
Patch is already in version
Fixes:
- http://autobuild.buildroot.org/results/
e4056bea4d2ef97d89753dce6441e56959b3f470
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Fabrice Fontaine [Thu, 17 Oct 2019 16:52:07 +0000 (18:52 +0200)]
package/micropython: drop patch
Drop patch and set GIT_DIR as suggested by upstream during review of an
upstreamable solution, see
https://github.com/micropython/micropython/pull/5002
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Reviewed-by: Chris Packham <judge.packham@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Carlos Santos [Thu, 17 Oct 2019 21:03:28 +0000 (18:03 -0300)]
package/libseccomp: bump to version 2.4.1
Fixes a BPF generation bug where the optimizer mistakenly identified
duplicate BPF code blocks.
Signed-off-by: Carlos Santos <unixmania@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Bernd Kuhls [Fri, 18 Oct 2019 03:59:54 +0000 (05:59 +0200)]
{linux, linux-headers}: bump 4.{4, 9, 14, 19}.x / 5.3.x series
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Bernd Kuhls [Fri, 18 Oct 2019 03:59:53 +0000 (05:59 +0200)]
package/linux-headers: drop support for 5.2.x headers
The 5.2.x series is now EOL so remove the option and add legacy
handling for it.
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Romain Naour [Sat, 12 Oct 2019 23:12:54 +0000 (01:12 +0200)]
package/minetest-game: bump to version 5.1.0
Update license file hash for mods/sfinv/license.txt
(new crafting arrow texture), mods/tnt/license.txt
(new TNT sounds) and mods/xpanes/license.txt
(steel bar door and steel bar trapdoor).
Add new license files: env_sounds, fireflies and
spawn.
See:
https://dev.minetest.net/Changelog#5.0.1_.E2.86.92_5.1.0
Signed-off-by: Romain Naour <romain.naour@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Romain Naour [Sat, 12 Oct 2019 23:12:53 +0000 (01:12 +0200)]
package/minetest: bump to version 5.1.0
See:
https://dev.minetest.net/Changelog#5.0.1_.E2.86.92_5.1.0
Signed-off-by: Romain Naour <romain.naour@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Fabrice Fontaine [Sat, 12 Oct 2019 15:50:53 +0000 (17:50 +0200)]
package/stella: bump to version 6.0.2
Update hash of Copyright due to bump in year:
https://github.com/stella-emu/stella/commit/
d8831d3b7e1ec8c5d24a75b6e858eeed03c3132b
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Bernd Kuhls [Thu, 17 Oct 2019 06:05:41 +0000 (08:05 +0200)]
package/x11r7/xdriver_xf86-video-ati: bump version to 19.1.0
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Bernd Kuhls [Thu, 17 Oct 2019 05:47:26 +0000 (07:47 +0200)]
package/libdrm: bump version to 2.4.100
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Adrien Gallouët [Thu, 17 Oct 2019 03:30:46 +0000 (03:30 +0000)]
package/glorytun: bump to version 0.2.2
Signed-off-by: Adrien Gallouët <adrien@gallouet.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Alistair Francis [Wed, 16 Oct 2019 22:55:25 +0000 (15:55 -0700)]
boot/opensbi: bump to 0.5
Bump OpenSBI to the latest version. We need a patch for RV32 to avoid
hard/soft float build failures.
Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
James Hilliard [Wed, 16 Oct 2019 22:38:34 +0000 (16:38 -0600)]
package/python3: bump to version 3.8.0
Rebased patches on 3.8.0
Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Jörg Krause [Wed, 16 Oct 2019 22:31:22 +0000 (00:31 +0200)]
package/upmpdcli: bump to version 1.4.5
Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Jörg Krause [Wed, 16 Oct 2019 22:19:10 +0000 (00:19 +0200)]
package/mpd: bump to version 0.21.16
Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Jörg Krause [Wed, 16 Oct 2019 21:56:30 +0000 (23:56 +0200)]
package/caps: fix license string
The correct license string is `GPL-3.0+` not `GPLv3`.
Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Martin Bark [Mon, 14 Oct 2019 11:26:55 +0000 (13:26 +0200)]
package/caps: new package
CAPS is a collection of audio plugins comprising virtual guitar
amplification and a small range of basic classic effects, signal
processors and generators of often elementary and occasionally
exotic nature.
The plugins aim to satisfy the highest demands in sound quality
with maximal computational efficiency and zero latency.
Note, that the original patch [1] dates back in 2014.
[1] https://patchwork.ozlabs.org/patch/376822/
CC: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Martin Bark <martin@barkynet.com>
Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks>
[Thomas:
- drop patch 0001, use improved logic in .mk file instead
- add dependency on !BR2_STATIC_LIBS]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Bernd Kuhls [Sun, 13 Oct 2019 19:54:43 +0000 (21:54 +0200)]
package/x11r7/xlib_libXfont2: fix usage of libbsd
Upstream added optional support for libbsd:
"Add strlcat & strlcpy fallbacks if not provided by libc nor libbsd"
https://cgit.freedesktop.org/xorg/lib/libXfont/commit/?id=
d4c941ea8b1dc07a14efce656bff58d31a14c985
and forgot to define HAVE_LIBBSD.
Also add libbsd as optional dependency because the build error occured
only when libbsd was built before building xlib_libXfont2.
Fixes:
http://autobuild.buildroot.net/results/165/
165f9f948419fc69fbf6b9281d759b37bb7d40c6/
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Adam Duskett [Wed, 16 Oct 2019 19:08:59 +0000 (12:08 -0700)]
package/python-django: bump to version 2.2.6
Signed-off-by: Adam Duskett <Aduskett@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
James Hilliard [Sun, 13 Oct 2019 17:31:49 +0000 (11:31 -0600)]
package/cmake bump to version 3.9.6
This is the latest cmake that doesn't require a c++11 toolchain.
The hash of the license file is changed due to the addition of one
more contributor in upstream commit
a3388900f88e2e576d17f635bbf3a7ed257804a3.
Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Bernd Kuhls [Sun, 13 Oct 2019 19:05:39 +0000 (21:05 +0200)]
package/glmark2: rework selection of flavours
https://git.buildroot.net/buildroot/commit/?id=
cf66a67112cd706d2e71665e45e8f6453fd53963
was not enough to fix building glmark2 because it was possible to
configure buildroot in a way that no flavour would be active:
http://lists.busybox.net/pipermail/buildroot/2019-October/261943.html
http://lists.busybox.net/pipermail/buildroot/2019-October/261944.html
The broken defconfig was fixed
https://git.buildroot.net/buildroot/commit/?id=
ca6f9504dd3825fe4fbd0b4a4b3eea4261032d03
but we need to fix the selection of flavours to ensure that at least
on flavour is available:
http://lists.busybox.net/pipermail/buildroot/2019-October/262022.html
Suggested-by: Arnout Vandecappelle <arnout@mind.be>
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Bernd Kuhls [Mon, 14 Oct 2019 02:20:42 +0000 (04:20 +0200)]
package/proj: needs wchar
Propagate dependency also to libgeotiff
Fixes:
http://autobuild.buildroot.net/results/f8e/
f8e261dd64346caeff568a23621b3dd15ac3967c/
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Fabrice Fontaine [Tue, 15 Oct 2019 19:56:46 +0000 (21:56 +0200)]
package/exempi: needs wchar
Fixes:
- http://autobuild.buildroot.org/results/
283fddd3e5c1bd3e0ea843bd582491e68a47f1e9
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Fabrice Fontaine [Tue, 15 Oct 2019 19:39:01 +0000 (21:39 +0200)]
package/libpqxx: needs gcc >= 4.9
libpqxx uses brace-initialisation since version 6.3.0 and
https://github.com/jtv/libpqxx/commit/
c93a4626f4d1311a9566f5d8d69052acf2082df9
Fixes:
- http://autobuild.buildroot.org/results/
3416a2eaa6b69014f733d38a17c161b024301534
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
James Hilliard [Mon, 14 Oct 2019 16:52:27 +0000 (10:52 -0600)]
package/gnu-efi: bump to version 3.0.10
Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
James Hilliard [Mon, 14 Oct 2019 09:05:36 +0000 (03:05 -0600)]
package/meson: bump to version 0.52.0
Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Fabrice Fontaine [Wed, 16 Oct 2019 16:55:12 +0000 (18:55 +0200)]
package/gstreamer1/gst1-plugins-good: fix xlib dependencies
xlib_libXfixes and xlib_libXdamage must be added to dependencies
Fixes:
- http://autobuild.buildroot.org/results/
efc1052807f94b1013cc8c13bdd790a01ed7255d
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Fabrice Fontaine [Wed, 16 Oct 2019 16:58:19 +0000 (18:58 +0200)]
package/gstreamer1/gst1-plugins-good: add TARGET_NLS_DEPENDENCIES
gst1-plugins-good uses TARGET_NLS_LIBS without depending on
TARGET_NLS_DEPENDENCIES, fix this mistake
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Pierre-Jean Texier [Tue, 15 Oct 2019 18:05:55 +0000 (20:05 +0200)]
package/python-soupsieve: fix Config.in indentation
Fixes:
$: ./utils/check-package package/python-soupsieve/*
package/python-soupsieve/Config.in:4: continuation line should be indented using tabs
27 lines processed
1 warnings generated
Signed-off-by: Pierre-Jean Texier <pjtexier@koncepto.io>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Pierre-Jean Texier [Tue, 15 Oct 2019 18:05:18 +0000 (20:05 +0200)]
package/python-jaraco-functools: fix Config.in indentation
Fixes:
$: ./utils/check-package package/python-jaraco-functools/*
package/python-jaraco-functools/Config.in:5: continuation line should be indented using tabs
30 lines processed
1 warnings generated
Signed-off-by: Pierre-Jean Texier <pjtexier@koncepto.io>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Pierre-Jean Texier [Tue, 15 Oct 2019 18:04:46 +0000 (20:04 +0200)]
package/python-cheroot: fix Config.in indentation
Fixes:
$: ./utils/check-package package/python-cheroot/*
package/python-cheroot/Config.in:7: continuation line should be indented using tabs
32 lines processed
1 warnings generated
Signed-off-by: Pierre-Jean Texier <pjtexier@koncepto.io>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Waldemar Brodkorb [Tue, 15 Oct 2019 17:02:18 +0000 (19:02 +0200)]
package/uclibc: bump to version 1.0.32
Remove all patches, since they were already applied upstream.
Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Alexey Brodkin [Tue, 15 Oct 2019 15:41:04 +0000 (18:41 +0300)]
package/qemu: bump to hot-fix release 3.1.1.1
Fixes a couple of important things and among other things the build of
pvrdma code:
----------------------->8---------------------
In function 'create_qp':
hw/rdma/vmw/pvrdma_cmd.c:517:16: error: 'rc' undeclared
----------------------->8---------------------
Bumped into this build problem while building vanilla
qemu_arm_versatile_defconfig.
Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
Cc: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Cc: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Cc: Peter Korsgaard <peter@korsgaard.com>
Cc: Alexander Dahl <post@lespocky.de>
Cc: Adam Duskett <Aduskett@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Peter Korsgaard [Tue, 15 Oct 2019 13:13:46 +0000 (15:13 +0200)]
DEVELOPERS: add Peter Korsgaard for wireguard
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Peter Korsgaard [Tue, 15 Oct 2019 13:13:45 +0000 (15:13 +0200)]
package/wireguard: bump version to 0.0.
20191012
For details of the changes, see the announcement:
https://lists.zx2c4.com/pipermail/wireguard/2019-October/004594.html
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Ricardo Martincoski [Wed, 16 Oct 2019 01:09:50 +0000 (22:09 -0300)]
support/testing: test_syslog_ng: improve commands
There is no need for double grep, so choose a better regexp. Use &&
instead of ; between commands so the sequence of commands fail faster.
Break the last sequence of commands in 2 calls run() so the proper
return code can be tested for each.
Signed-off-by: Ricardo Martincoski <ricardo.martincoski@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>