Peter Korsgaard
6d87acc19f
package/python-tinyrpc: not available for python 2.x
...
Fixes:
http://autobuild.buildroot.net/results/eef0969bac04800cec51fa27f1e1ecd3a4c8211e/
tinyrpc 1.x is not compatible with python 2.x, leading to errors during the
pycompile step:
error: File "/usr/lib/python2.7/site-packages/tinyrpc/client.py", line 37
self, protocol: RPCProtocol, transport: ClientTransport
^
SyntaxError: invalid syntax
As also documented in the README:
The current version will support Python3 only. Have a look at the 0.9.x
version if you need Python2 support
https://github.com/mbr/tinyrpc/blob/1.0.4/README.rst
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
Reviewed-by: Asaf Kahlon <asafka7@gmail.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
2020-09-30 21:09:24 +02:00
Thomas De Schampheleire
2e8bf36dc4
package/zstd: avoid compilation during host-zstd install step
...
The host-zstd-build step was not actually compiling the library:
make[1]: Entering directory '/buildroot/output/build/host-zstd-1.4.5/lib'
make[1]: Nothing to be done for 'default'.
make[1]: Leaving directory '/buildroot/output/build/host-zstd-1.4.5/lib'
and the actual compilation was part of the install step.
This is not how other Buildroot packages work.
Make sure to specify which library targets we want instead. The total amount
of compiled files does not change with this patch.
Signed-off-by: Thomas De Schampheleire <thomas.de_schampheleire@nokia.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
2020-09-28 22:04:15 +02:00
Fabrice Fontaine
80513c6bac
support/gnuconfig: fix previous version bump
...
Commit a2830f0dad (support/gnuconfig: bump version) carried
spurious, uncommited local changes to config.sub, that were not
part of upstream commit d7a4dee7cc25e332b990d0a6d9f0ddd42cb33cf5.
Fix that by actually using the code as it is upstream.
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com >
[yann.morin.1998@free.fr:
- squash the revert and the new bump into this commit
- ammend commit log accordingly
]
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2020-09-27 18:30:05 +02:00
Fabrice Fontaine
a2830f0dad
support/gnuconfig: bump version
...
Build with uclinux-uclibc toolchains are broken since commit
cf8162ce51 so bump version to get
https://git.savannah.gnu.org/cgit/config.git/commit/?id=d7a4dee7cc25e332b990d0a6d9f0ddd42cb33cf5
Fixes:
- http://autobuild.buildroot.org/results/f8528d568de0dad751129900ae38ae292d7567b9
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
2020-09-27 13:49:32 +02:00
Norbert Lange
78da84eca9
package/pkg-meson.mk: fix generation of pkg_config_static prop
...
fixes following in the generated cross-complation.conf file:
pkg_config_static = '$(if $(BR2_STATIC_LIBS),true,false)'
Signed-off-by: Norbert Lange <nolange79@gmail.com >
Reviewed-by: Peter Seiderer <ps.report@gmx.net >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
2020-09-27 09:19:14 +02:00
Charles Hardin
4bc4dbd630
fs/common.mk: move BR2_ROOTFS_POST_FAKEROOT_SCRIPT after pre cmd hooks
...
The fakeroot script does not appear to be used in any of the checked
in defconfig targets, but it seems that most often the post
fakeroot script should be done after all the packages rules have
been applied instead of before.
Given that a change in systemd moved the SYSTEMD_PRESET_ALL hook to
a ROOTFS_PRE_CMD_HOOKS, there was no way to use a FAKEROOT script
to disable a service or fixup a systemd configuration. The systemd
move makes sense, and this just tries to preserve the same ability
to fixup a rootfs after all the cmd hooks are processed.
Refer to commit 65b63785a6 for
the change that instigated this reordering.
Signed-off-by: Charles Hardin <ckhardin@gmail.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
2020-09-27 09:15:03 +02:00
Maxim Kochetkov
44b2b68ebe
package/gdb: fix gdb 9.2 build with gcc 10 on ppc
...
Signed-off-by: Maxim Kochetkov <fido_max@inbox.ru >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
2020-09-27 09:06:48 +02:00
Thomas Petazzoni
4626bafe5c
package/gstreamer1/gst1-plugins-ugly: add missing comma in license variable
...
When one GPL-licensed plugin was enabled, the license of
gst1-plugins-ugly would be "LGPL-2.1+ GPL-2.0", but licenses should be
comma separated, not space separated. So let's fix that to get the
expected value of "LGPL-2.1+, GPL-2.0".
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2020-09-26 15:54:39 +02:00
Peter Seiderer
6ce47bbaaf
package/gstreamer1/gst1-plugins-ugly: bump version to 1.18.0
...
- change home page url to https
- meson options: doc=disabled
Signed-off-by: Peter Seiderer <ps.report@gmx.net >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2020-09-26 15:54:36 +02:00
Fabrice Fontaine
7b9493bb13
package/librsvg: bump to version 2.50.0
...
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2020-09-26 15:44:55 +02:00
Fabrice Fontaine
a2f69b8cc4
package/openswan: fix build with gcc 10
...
Fixes:
- http://autobuild.buildroot.org/results/650fc0046fd063c70e17ce5ebd9592195657434d
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2020-09-26 15:44:45 +02:00
Francois Perrad
86a6eb872c
package/lua: bump to version 5.3.6
...
Signed-off-by: Francois Perrad <francois.perrad@gadz.org >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2020-09-26 15:42:51 +02:00
Peter Korsgaard
2be774303d
package/python-semver: bump version to 2.10.2
...
Bugfix release, fixing an issue with version fields containing '0'. For
details, see the changelog:
https://python-semver.readthedocs.io/en/2.10.2/changelog.html#version-2-10-2
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2020-09-26 15:42:12 +02:00
Peter Korsgaard
d8cb637442
package/wireguard-linux-compat: bump version to 1.0.20200908
...
Fixes a race condition. For details, see the announcement:
https://lists.zx2c4.com/pipermail/wireguard/2020-September/005817.html
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2020-09-26 15:42:08 +02:00
Peter Korsgaard
5acc34464d
package/wireguard-tools: bump to 1.0.20200827 release
...
For details, see the announcement:
https://lists.zx2c4.com/pipermail/wireguard/2020-August/005790.html
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2020-09-26 15:42:03 +02:00
Fabrice Fontaine
c963152681
package/gstreamer1/gst1-devtools: select BR2_PACKAGE_GSTREAMER1_CHECK
...
validate option needs gstreamer-check-1.0
Fixes:
- http://autobuild.buildroot.org/results/297ebea95b487f4c542e1217620e8c3d921260f3
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2020-09-26 15:40:44 +02:00
Fabrice Fontaine
aa828ecafd
package/ser2net: fix build on musl
...
Build on musl fails since version 4.2.2 and
1703ddf523
Fixes:
- http://autobuild.buildroot.org/results/4c0b238186cb2fb2d81807ce006945594f92b2cd
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2020-09-26 15:39:59 +02:00
Francois Perrad
06140ef93d
package/luarocks: bump to version 3.4.0
...
Signed-off-by: Francois Perrad <francois.perrad@gadz.org >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2020-09-26 15:31:19 +02:00
Fabrice Fontaine
d0f0d368ac
package/netsniff-ng: fix build with gcc 10
...
Fixes:
- http://autobuild.buildroot.org/results/811b9eada9558bafde4e4ed824b36239c72e0501
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2020-09-26 15:31:14 +02:00
Fabrice Fontaine
6ecad89a45
package/read-edid: fix build with gcc 10
...
Fixes:
- http://autobuild.buildroot.org/results/28bde8049b6610273bceae26eca407c819a37dcd
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2020-09-26 15:30:34 +02:00
Fabrice Fontaine
460bfb9e05
package/socketcand: fix build with gcc 10
...
Also update socketcand.hash as the patch is updating socketcand.c
Fixes:
- http://autobuild.buildroot.org/results/a72f3e34c161a012e8091db331d02bbf2da6ad94
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2020-09-26 15:27:16 +02:00
Peter Korsgaard
dc68be6944
package/python-texttable: bump version to 1.6.3
...
Bugfix release, fixing an issue with integer/float handling:
https://github.com/foutaise/texttable/issues/70
Adjust the .hash spacing and update the license hash for a copyright year
change:
13ff0b57d3
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2020-09-26 15:25:16 +02:00
Alexander Egorenkov
5c97500f09
package/s390-tools: new package
...
Collection of tools for the IBM s390x and Z architectures.
Signed-off-by: Alexander Egorenkov <egorenar@linux.ibm.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
2020-09-24 23:01:44 +02:00
Alexander Egorenkov
9eaab4e2c5
package/go: add support for IBM s390x and Z arch
...
Signed-off-by: Alexander Egorenkov <egorenar@linux.ibm.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
2020-09-24 22:57:57 +02:00
Alexander Egorenkov
a02eabb750
package/makedumpfile: add support for IBM s390x and Z arch
...
Signed-off-by: Alexander Egorenkov <egorenar@linux.ibm.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
2020-09-24 22:57:56 +02:00
Alexander Egorenkov
7fbc3f8dd8
package/kexec: add support for IBM s390x and Z arch
...
Signed-off-by: Alexander Egorenkov <egorenar@linux.ibm.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
2020-09-24 22:57:55 +02:00
Alexander Egorenkov
4832d6e459
package/liburcu: add support for IBM s390x and Z arch
...
Signed-off-by: Alexander Egorenkov <egorenar@linux.ibm.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
2020-09-24 22:57:54 +02:00
Alexander Egorenkov
efc6e1e290
package/cmake: add support for IBM s390x and Z arch
...
Signed-off-by: Alexander Egorenkov <egorenar@linux.ibm.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
2020-09-24 22:56:23 +02:00
Alexander Egorenkov
faf4e982fd
package/systemd: add support for IBM s390x and Z arch
...
Signed-off-by: Alexander Egorenkov <egorenar@linux.ibm.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
2020-09-24 22:56:09 +02:00
Alexander Egorenkov
2768db7027
board/qemu: add IBM s390x and Z arch support
...
Signed-off-by: Alexander Egorenkov <egorenar@linux.ibm.com >
[yann.morin.1998@free.fr:
- don't force network range
- don't forward TCP port
- drop post-build script to add tty1
]
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2020-09-24 22:55:37 +02:00
Alexander Egorenkov
5d6e60994e
package/qemu: add IBM s390x and Z arch support
...
Signed-off-by: Alexander Egorenkov <egorenar@linux.ibm.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
2020-09-24 22:05:34 +02:00
Alexander Egorenkov
e641b78033
linux: add bzImage support for IBM s390x and Z arch
...
Signed-off-by: Alexander Egorenkov <egorenar@linux.ibm.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
2020-09-24 22:05:09 +02:00
Alexander Egorenkov
29353bbef7
toolchain: add support for the internal IBM s390x and Z toolchain
...
Signed-off-by: Alexander Egorenkov <egorenar@linux.ibm.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
2020-09-24 22:03:54 +02:00
Alexander Egorenkov
b9a31ea354
arch: add the basic IBM s390x and Z arch support
...
Signed-off-by: Alexander Egorenkov <egorenar@linux.ibm.com >
[yann.morin.1998@free.fr: drop supperfluous depends on s390x in choice]
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2020-09-24 22:02:03 +02:00
Thomas Petazzoni
f6caa9f55b
DEVELOPERS: gst1-validate is now gst1-devtools
...
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2020-09-24 10:26:55 +02:00
Alejandro González
d78fa60a9d
package/cryptodev-linux: bump to version fabe598
...
This version fixes building with 5.9 kernels.
Signed-off-by: Alejandro González <alejandro.gonzalez.correo@gmail.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2020-09-24 09:30:59 +02:00
Bilal Wasim
71c255f594
configs/chromebook_elm: new defconfig
...
This commit adds supports for building buildroot kernel + rootfs
for MT8173 Elm board, also known as Chromebook Elm
(https://www.acer.com/ac/en/US/content/series/acerchromebookr13 ).
Though Chrome-OS is officially supproted on this board, the
mainline kernel works as well (benchmarks + conformance), and so
the 5.9 kernel is used. As the 5.9 kernel isn't yet released, we
use the 5.9-rc5 for now, which will be up-revd to 5.9 once its
released.
Using the mainline kernel means that we have to apply certain patches
to get the HDMI screen working. These patches are lying in the
"drm-misc-next" list and will make it to the kernel after 5.9. At that
time, we will remove the patches and point Buildroot to use the latest
kernel (hopefully, 5.10).
This commit also adds an ITS file (for creating FIT images), an ARGS
file (for providing kernel args) and a "sign.sh" script to generate
signed kernel images. Though the "sign.sh" is very similar to the
coresponding file under board/chromebook/snow, it cannot be shared
between both boards, as the script requires access to the board
specific its / args file.
Additionally a readme & defconfig is added to help the user get started.
Signed-off-by: Bilal Wasim <bilalwasim676@gmail.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2020-09-24 09:17:17 +02:00
Arnout Vandecappelle (Essensium/Mind)
0e4be46771
Config.in.legacy: fix spelling of 'config'
...
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be >
2020-09-23 23:04:43 +02:00
Joseph Kogut
cd87db1d65
package/python-sentry-sdk: update homepage URL
...
Signed-off-by: Joseph Kogut <joseph.kogut@gmail.com >
Reviewed-by: Titouan Christophe <titouan.christophe@railnova.eu >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2020-09-23 22:57:07 +02:00
Joseph Kogut
3b799881eb
package/python-sentry-sdk: fix select ordering
...
Signed-off-by: Joseph Kogut <joseph.kogut@gmail.com >
Reviewed-by: Titouan Christophe <titouan.christophe@railnova.eu >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2020-09-23 22:57:02 +02:00
Joseph Kogut
fc27e7e1fc
package/python-sentry-sdk: bump version to 0.17.3
...
Signed-off-by: Joseph Kogut <joseph.kogut@gmail.com >
Reviewed-by: Titouan Christophe <titouan.christophe@railnova.eu >
Tested-by: Titouan Christophe <titouan.christophe@railnova.eu >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2020-09-23 22:56:55 +02:00
Peter Seiderer
552347484f
package/gst1-rtsp-server: bump version to 1.18.0
...
- change home page url to https
- remove 0001-meson-build-gir-even-when-cross-compiling-if-introspection.patch
(upstream [1])
- meson options: doc=disabled
[1] 95ce953e34 .patch
Signed-off-by: Peter Seiderer <ps.report@gmx.net >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2020-09-23 22:25:22 +02:00
Peter Seiderer
3f98c491e8
package/gst1-vaapi: bump version to 1.18.0 and convert to meson
...
Signed-off-by: Peter Seiderer <ps.report@gmx.net >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2020-09-23 22:25:16 +02:00
Peter Seiderer
60b4e7a533
package/gst1-devtools: new package (was gst1-validate)
...
Signed-off-by: Peter Seiderer <ps.report@gmx.net >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2020-09-23 22:24:25 +02:00
Peter Seiderer
f8a02bbad0
package/gst1-plugins-bad: bump version to 1.18.0
...
- change home page url to https
- remove 0001-meson-build-gir-even-when-cross-compiling-if-introspection.patch
(upstream [1])
- remove 002-meson-allow-the-user-to-disable-opencv.patch
(upstream [2])
- add option for new plugins dvbsubenc, rist, rtmp2, rtp, switchbin
and v4l2codecs
- removed yadif plugin (functionality moved to gst1-plugins-good
deinterlace [3])
- meson options: avtp=disabled, d3d11=disabled, mediafoundation=disabled,
microdns=disabled, svthevcenc=disabled, transcode=disabled, wasapi2=disabled
zxing=disabled, magicleap=disabled, extra-checks=disabled, doc=disabled
[1] 97a4d0cd7d .patch
[2] 833a65cc3c .patch
[3] c7095abd31 .patch
Signed-off-by: Peter Seiderer <ps.report@gmx.net >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2020-09-23 22:22:53 +02:00
Peter Seiderer
686321390a
package/gst1-plugins-good: bump version to 1.18.0
...
- change home page url to https
- disable new plugin rpicamsrc (compile failure with current buildroot)
- meson options: add gobject-cast-checks=disabled, glib-asserts=disabled,
glib-checks=disabled, asm=disabled (needs host-nasm), doc=disabled
Signed-off-by: Peter Seiderer <ps.report@gmx.net >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2020-09-23 22:21:18 +02:00
Peter Seiderer
41f0fff587
package/gst1-plugins-base: bump version to 1.18.0
...
- change home page url to https
- remove 0001-meson-static-linkig-of-tools-needs-gmodule_dep.patch
(upstream [1])
- remove 0002-meson-build-gir-even-when-cross-compiling-if-introspection.patch
(upstream [2])
- meson options: remove gtk_doc, add doc=disabled
- add option for new plugin gio-typefinder
[1] 51253830f3 .patch
[2] 30672ba7d1 .patch
Signed-off-by: Peter Seiderer <ps.report@gmx.net >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2020-09-23 22:20:41 +02:00
Peter Seiderer
f21ffbc65e
package/gstreamer1: bump version to 1.18.0
...
- change home page url to https
- remove 0001-meson-build-gir-even-when-cross-compiling-if-introspection.patch
(upstream [1])
- meson options: add extra-checks=disabled, gst_parse=true, doc=disabled
(and re-order tools and gobjec-cast-checks according to meson_options.txt order)
[1] 35db4a2433 .patch
Signed-off-by: Peter Seiderer <ps.report@gmx.net >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2020-09-23 22:20:23 +02:00
David GOUARIN
e78063379b
packages/rsyslog: add optional support for RELP
...
Signed-off-by: David GOUARIN <dgouarin@gmail.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2020-09-23 22:08:37 +02:00
David GOUARIN
356a521f2a
packages/librelp: new package
...
Reliable Logging Protocol library.
Signed-off-by: David GOUARIN <dgouarin@gmail.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2020-09-23 22:08:37 +02:00