summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* package/proftpd: fix typoes in Config.in help textsThomas Petazzoni2018-12-091-2/+2
| | | | | | | mode_ -> mod_ Reported-by: Jared Bents <jared.bents@rockwellcollins.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* .gitlab-ci.yml: store .config files as artefacts for defconfig testsYann E. MORIN2018-12-092-0/+4
| | | | | | | | | | | Add Buildroot's own .config file, as well as any package's .config file (uclibc, linux, and busybox), for later inspection should a build fails, notably due to changes in the kconfig-package infrastructure. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Ricardo Martincoski <ricardo.martincoski@gmail.com> Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* configs/nexbox_a95x: kernel needs host-opensslYann E. MORIN2018-12-091-0/+1
| | | | | | | | | | | | Since commit 9f5b07fc64 ("configs: nexbox_a95x_defconfig: bump to kernel 4.19.8"), the nexbox_a95x_defconfig needs host-openssl to build the Linux kernel. Fixes: https://gitlab.com/ymorin/buildroot/-/jobs/131924236 Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Peter Korsgaard <peter@korsgaard.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* docs/manual: document <pkg>_KEEP_DEPENDENCIES in rebar-package infraJohan Oudinet2018-12-091-0/+6
| | | | | Signed-off-by: Johan Oudinet <johan.oudinet@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* package/pkg-rebar.mk: change semantic of <PKG>_KEEP_DEPENDENCIESJohan Oudinet2018-12-091-1/+3
| | | | | | | | Set it to NO by default and check if it is equal to NO. This is to be more consistent with other boolean variables in Buildroot. Signed-off-by: Johan Oudinet <johan.oudinet@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* package/pkg-rebar.mk: fix remove-rebar-config-dependenciesJohan Oudinet2018-12-091-1/+2
| | | | | | | | | | Handle the case where there is only one dependency described in rebar.config, so when the line starts by '{deps' and ends by '}.'. Before it was deleting this line but also all next lines until finding a line that ends by '}.'. Signed-off-by: Johan Oudinet <johan.oudinet@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* support/download/dl-wrapper: fix urlencode option never being sent to backendDamien Thébault2018-12-091-1/+1
| | | | | | | | | | | | | | Since commit 38de434123 ("download: fix file:// BR2_PRIMARY_SITE (download cache)"), the urlencode option is no longer passed to the download backend, because we use ${backend} instead of ${backend_urlencode}. We must get the urlencode information from backend_urlencode. Signed-off-by: Damien Thébault <damien.thebault@vitec.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> [Thomas: rework commit log] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* package/python-aiorwlock: new packageJames Hilliard2018-12-095-0/+28
| | | | | | | | Read write lock for asyncio. Signed-off-by: James Hilliard <james.hilliard1@gmail.com> Reviewed-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* package/luajit: add option to enable Lua 5.2 compatibilityFrancois Perrad2018-12-092-0/+11
| | | | | | Signed-off-by: Francois Perrad <francois.perrad@gadz.org> [Thomas: formatting tweaks.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* package/pkgconf: bump to 1.5.3, change upstreamThomas Petazzoni2018-12-094-69/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The pkgconf project now has a website at pkgconf.org, and hosts its tarballs at https://distfiles.dereferenced.org/pkgconf/, so this commit updates the upstream location, and uses the xz-compressed tarball as well. pkgconf is bumped to 1.5.3. What prompted this update is the fact that GStreamer uses the --define-prefix option when calling pkg-config, and this option didn't exist in pkgconf 0.9.2. The patch 0001-Fix-all-variables-sysroot-prefix-problem.patch is dropped, because pkgconf now behaves properly, by prefixing all paths with the sysroot. This has been verified by testing libdir and includedir in zlib.pc, and adding some dummy pkgdatadir, mapdir and sdkdir variables: $ cat staging/usr/lib/pkgconfig/zlib.pc prefix=/usr exec_prefix=${prefix} libdir=${exec_prefix}/lib sharedlibdir=${libdir} includedir=${prefix}/include pkgdatadir=${prefix}/pouet mapdir=${prefix}/this/is/map/dir sdkdir=${prefix}/this/is/sdk/dir [...] $ ./host/bin/pkg-config --variable=libdir zlib ./host/bin/../arm-buildroot-linux-uclibcgnueabi/sysroot/usr/lib $ ./host/bin/pkg-config --variable=includedir zlib ./host/bin/../arm-buildroot-linux-uclibcgnueabi/sysroot/usr/include $ ./host/bin/pkg-config --variable=mapdir zlib ./host/bin/../arm-buildroot-linux-uclibcgnueabi/sysroot/usr/this/is/map/dir $ ./host/bin/pkg-config --variable=sdkdir zlib ./host/bin/../arm-buildroot-linux-uclibcgnueabi/sysroot/usr/this/is/sdk/dir $ ./host/bin/pkg-config --variable=pkgdatadir zlib ./host/bin/../arm-buildroot-linux-uclibcgnueabi/sysroot/usr/pouet So, the 0001-Fix-all-variables-sysroot-prefix-problem patch is no longer necessary. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> Tested-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* package/prosody: bump to version 0.11.1Francois Perrad2018-12-092-5/+5
| | | | | Signed-off-by: Francois Perrad <francois.perrad@gadz.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* package/gcc/7.4.0: remove upstream patchRomain Naour2018-12-091-48/+0
| | | | | | | | | | | | | | | 0001-m68k-coldfire-pr68467.patch is already upstream and backported to gcc 7.4.0 [1]. [1] https://github.com/gcc-mirror/gcc/commit/2d1d94491cc66e240f9ca2845ec64e8ffe851c74 Fixes: https://gitlab.com/ymorin/buildroot/-/jobs/131924271 https://gitlab.com/ymorin/buildroot/-/jobs/131924272 Signed-off-by: Romain Naour <romain.naour@gmail.com> Reported-by: Yann E. MORIN <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* libmbim: Bump to version 1.16.2Petr Vorel2018-12-092-3/+3
| | | | | | | + change website to https Signed-off-by: Petr Vorel <petr.vorel@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/python-aiojobs: new packageJames Hilliard2018-12-095-0/+29
| | | | | | | | Jobs scheduler for managing background task (asyncio). Signed-off-by: James Hilliard <james.hilliard1@gmail.com> Reviewed-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/python-aiohttp-remotes: new packageJames Hilliard2018-12-095-0/+29
| | | | | | | | Control remote side information. Signed-off-by: James Hilliard <james.hilliard1@gmail.com> Reviewed-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/python-aiohttp-jinja2: new packageJames Hilliard2018-12-085-0/+31
| | | | | | | | Jinja2 template renderer for aiohttp.web Signed-off-by: James Hilliard <james.hilliard1@gmail.com> Reviewed-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/python-aiohttp-security: new packageJames Hilliard2018-12-085-0/+29
| | | | | | | | Security for aiohttp.web. Signed-off-by: James Hilliard <james.hilliard1@gmail.com> Reviewed-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/python-aiohttp-sse: new packageJames Hilliard2018-12-085-0/+29
| | | | | | | | Server-sent events support for aiohttp. Signed-off-by: James Hilliard <james.hilliard1@gmail.com> Reviewed-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/python-aiohttp-session: new packageJames Hilliard2018-12-085-0/+29
| | | | | | | | Sessions for aiohttp.web. Signed-off-by: James Hilliard <james.hilliard1@gmail.com> Reviewed-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* stress-ng: fix build without swapcontextFabrice Fontaine2018-12-081-0/+29
| | | | | | | | Fixes: - http://autobuild.buildroot.org/results/f2d3b06afa6e31527a71c03671c8f08eb3f46c36 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* minnowboard-max: defconfigs: bump kernel to 4.19.8Peter Korsgaard2018-12-082-5/+5
| | | | | | Signed-off-by: Peter Korsgaard <peter@korsgaard.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* libmpd: fix build with strndupFabrice Fontaine2018-12-081-0/+24
| | | | | | | | | | | | | | | Retrieve a patch from upstream to include config.h otherwise build will fail when trying to redefine strndup: libmpd-internal.h:210:10: error: expected identifier or '(' before '__extension__' char * strndup (const char *s, size_t n); Indeed, without an include on config.h, HAVE_STRNDUP won't be defined Fixes: - http://autobuild.buildroot.org/results/a174818fa768b029d19b033139f9c5e0aaaed149 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* openzwave: fix restrict error with gcc 8Fabrice Fontaine2018-12-081-0/+39
| | | | | | | | Fixes: - http://autobuild.buildroot.org/results/2a8d2c67bcd1a7c228e9196d3bdb7f608c44c856 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* vte: needs gcc >= 4.8Fabrice Fontaine2018-12-081-2/+4
| | | | | | | | Fixes: - http://autobuild.buildroot.org/results/6dada849a87b68f6f69e3ed760995e86dfa25ad6 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* qt5quickcontrols: fix hash file entryPeter Seiderer2018-12-081-1/+1
| | | | | | | | | | Fix accidental hash entry change previous commit ('qt5: bump latest version to 5.11.3' 85ecae213ae5d37c9ddb7390706c18b93035f63b). Reported-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Seiderer <ps.report@gmx.net> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* qt5: bump latest version to 5.11.3Peter Seiderer2018-12-0834-89/+54
| | | | | | | | | qt5base: remove 0005-Export-qt_open64-from-QtCore.patch (taken from upstream [1]) [1] http://code.qt.io/cgit/qt/qtbase.git/commit/?id=4fc4f7b0ce0e6ee186a7d7fe9b5dd20e94efe432 Signed-off-by: Peter Seiderer <ps.report@gmx.net> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/gcc: remove arm soft patchRomain Naour2018-12-081-45/+0
| | | | | | | | | | | | | | | | | The patch refers to [1] which says "Unfortuantely, arm-gcc defaults to generating code for armv5t." Since we always explicitly pass the target CPU for ARM, the default CPU shouldn't matter. As suggested by Arnout [2], a test based on qemu_arm_versatile_defconfig has been done without this patch and there is no regression. [1] https://sourceware.org/ml/crossgcc/2008-05/msg00009.html [2] http://lists.busybox.net/pipermail/buildroot/2018-May/222104.html Signed-off-by: Romain Naour <romain.naour@gmail.com> Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com> Cc: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/gcc: remove uclibc-conf patchRomain Naour2018-12-081-29/+0
| | | | | | | | | | | | | | | | This patch is present in Buildroot since a long time and has been rebased on several version of gcc without beqing upstreamed. Also it only concern contrib/regression, which is not used at all during the build... As suggested by Arnout [1], a test based on qemu_x86_defconfig has been done without this patch and there is no regression. [1] http://lists.busybox.net/pipermail/buildroot/2018-May/222104.html Signed-off-by: Romain Naour <romain.naour@gmail.com> Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com> Cc: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* configs: nexbox_a95x_defconfig: bump to kernel 4.19.8Peter Korsgaard2018-12-081-2/+2
| | | | Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/gcc: bump to version 6.5.0Romain Naour2018-12-0822-567/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove upstream patches: 0002-fix-building-on-ppc64.patch https://github.com/gcc-mirror/gcc/commit/765527ad3725c5f3e82ab2b8e5031120b409983d 0003-libsanitizer-Use-pre-computed-size.patch https://github.com/gcc-mirror/gcc/commit/61f38c64c01a15560026115a157b7021ec67bd3b 942-Use-ucontext_t-not-struct-ucontext-in-linux-unwind.h.patch https://github.com/gcc-mirror/gcc/commit/b685411208e0aaa79190d54faf945763514706b8 943-sanitizer-linux.patch https://github.com/gcc-mirror/gcc/commit/8937b94d1a643fd9760714642296d034a45254a8 870-xtensa-fix-PR-target-82181.patch https://github.com/gcc-mirror/gcc/commit/dbbb83538168c6648b53f5e164c3a30beda6464f 871-xtensa-fix-PR-target-65416.patch https://github.com/gcc-mirror/gcc/commit/36f42654cbbc1df0e3d0040ba900c61980a8f8db 872-gcc-xtensa-fix-NAND-code-in-xtensa_expand_atomic.patch using patch https://github.com/gcc-mirror/gcc/commit/9f149a1a929c0c6c22f572b1cd651c83ac83774c Signed-off-by: Romain Naour <romain.naour@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/gcc: bump to version 7.4.0Romain Naour2018-12-0814-302/+11
| | | | | | | | | | | | | | | | | | | | | | Remove upstream patches: 0002-fix-building-on-ppc64.patch https://github.com/gcc-mirror/gcc/commit/aa65a43516da1d48011ef621ed5988289711d99b 0003-gcc-xtensa-fix-NAND-code-in-xtensa_expand_atomic.patch https://github.com/gcc-mirror/gcc/commit/8709905244d50b9d81f85d534b21c29eb640078c 0003-xtensa-fix-PR-target-65416.patch https://github.com/gcc-mirror/gcc/commit/5dcbd70ec0a97505d6153fcbc7ef899b5a2ec7fc 0004-libsanitizer-Use-pre-computed-size.patch https://github.com/gcc-mirror/gcc/commit/61f38c64c01a15560026115a157b7021ec67bd3b 0005-gcc-xtensa-don-t-force-PIC-for-uclinux-target.patch https://github.com/gcc-mirror/gcc/commit/6ef0a00dea2564f46a568b8681d8efccb4834cda Signed-off-by: Romain Naour <romain.naour@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* configs/aarch64_efi: Linux needs host-openssl to buildThomas Petazzoni2018-12-081-0/+1
| | | | | | | | | | | | | | | | The Linux kernel builds fails with: scripts/extract-cert.c:21:25: fatal error: openssl/bio.h: No such file or directory #include <openssl/bio.h> Because it needs host-openssl. Fixes: https://gitlab.com/buildroot.org/buildroot/-/jobs/131216892 Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* DEVELOPERS: add entry for aarch64_efi_defconfigThomas Petazzoni2018-12-081-0/+2
| | | | | | | | | Erico Nunes recently contributed this defconfig, we can safely assume he is willing to maintain it. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> Acked-by: Erico Nunes <nunes.erico@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* configs/bananapi_m2_ultra: add kernel headers version optionThomas Petazzoni2018-12-081-0/+1
| | | | | | | | | | | | | | | | | | | | The bananapi_m2_plus defconfig uses a 4.18 kernel, but doesn't specify anything for the kernel headers version, so the Buildroot default gets used, which currently is 4.19. Since 4.19 is newer than 4.18, Buildroot rightfully whines: Incorrect selection of kernel headers: expected 4.19.x, got 4.18.x Let's fix this by telling this defconfig to use the headers from the kernel, and that they are of version 4.18. Fixes: https://gitlab.com/buildroot.org/buildroot/-/jobs/131216938 Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* DEVELOPERS: add entry for the bananapi_m2_ultra_defconfigThomas Petazzoni2018-12-081-0/+2
| | | | | | | | Lothar contributed this board not long ago, so let's assume he is willing to take care of it. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* support/testing: drop docstring in TestPythonPackageBase::test_run()Thomas Petazzoni2018-12-081-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | Having a docstring in the test_run() method clutters the "run-tests -l" output: test_run (tests.package.test_python_crossbar.TestPythonPy3Crossbar) Test a python package. ... ok [...] test_run (tests.package.test_python_pexpect.TestPythonPy2Pexpect) Test a python package. ... ok test_run (tests.package.test_python_pexpect.TestPythonPy3Pexpect) Test a python package. ... ok test_run (tests.package.test_python_twisted.TestPythonPy2Twisted) Test a python package. ... ok test_run (tests.package.test_python_twisted.TestPythonPy3Twisted) Test a python package. ... ok test_run (tests.package.test_python_pynacl.TestPythonPy2Pynacl) Test a python package. ... ok test_run (tests.package.test_python_pynacl.TestPythonPy3Pynacl) Test a python package. ... ok So let's simply drop this docstring that is not particularly useful. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* boot/afboot-stm32: create destination directory during installationThomas Petazzoni2018-12-081-2/+4
| | | | | | | | | | | | | | | | | | | | | | | Following d0f4f95e390bcb1c953efa125f5277a8a235396e ("Makefile: rework main directory creation logic"), BINARIES_DIR is not implicitly created by the main Makefile at the beginning of the build, leaving that up to whatever piece of code needs to install something in $(BINARIES_DIR). The afboot-stm32 package didn't pay attention to this, which this commit fixes. While at it, we move the afboot-stm32 installation into <pkg>_INSTALL_IMAGES_CMDS, because using <pkg>_INSTALL_TARGET_CMDS to install only files to BINARIES_DIR is a bit strange. Fixes: https://gitlab.com/buildroot.org/buildroot/-/jobs/131217111 Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* php: security bump to version 7.2.13Peter Korsgaard2018-12-082-2/+2
| | | | | | | | | | | | | | | Fixes CVE-2018-19518: University of Washington IMAP Toolkit 2007f on UNIX, as used in imap_open() in PHP and other products, launches an rsh command (by means of the imap_rimap function in c-client/imap4r1.c and the tcp_aopen function in osdep/unix/tcp_unix.c) without preventing argument injection, which might allow remote attackers to execute arbitrary OS commands if the IMAP server name is untrusted input (e.g., entered by a user of a web application) and if rsh has been replaced by a program with different argument semantics. For example, if rsh is a link to ssh (as seen on Debian and Ubuntu systems), then the attack can use an IMAP server name containing a "-oProxyCommand" argument. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* pcm-tools: new packageCarlos Santos2018-12-086-0/+120
| | | | | | | | | | | | | | | | Processor Counter Monitor (PCM) is an application programming interface (API) and a set of tools based on the API to monitor performance and energy metrics of Intel(R) Core(TM), Xeon(R), Atom(TM) and Xeon Phi(TM) processors. This package contains a patch on the pmu-query.py script to look for the pcm-core program at the default path. It's not nice to have a Buildroot specific patch but let's use one while we look for a solution that is acceptable upstream. Signed-off-by: Carlos Santos <casantos@datacom.ind.br> [Peter: Needs C++, force X86_MSR on in linux] Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* liboping: fix format-truncation errorFabrice Fontaine2018-12-081-0/+31
| | | | | | | | | | | | | | | | | | | | | | liboping.c: In function 'ping_host_add': liboping.c:207:9: error: '%s' directive output may be truncated writing up to 255 bytes into a region of size 243 [-Werror=format-truncation=] "%s: %s", function, message); ^~ liboping.c:1644:40: ping_set_error (obj, "getaddrinfo", errmsg); ~~~~~~ liboping.c:206:2: note: 'snprintf' output between 14 and 269 bytes into a destination of size 256 snprintf (obj->errmsg, sizeof (obj->errmsg), ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ "%s: %s", function, message); Fixes: - http://autobuild.buildroot.org/results/b12d86388b495a96194e0bcbb5c19a4e35cbc53d Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* squashfs: do not force gzip support if lz4/xz/zstd is selectedPeter Korsgaard2018-12-081-1/+7
| | | | | | | | | | The logic to ensure at least one compression backend is selected was not updated when lz4, xz and zstd were introduced - Fix that. Signed-off-by: Peter Korsgaard <peter@korsgaard.com> Reviewed-by: Peter Seiderer <ps.report@gmx.net> [Peter: add comment as suggested by Peter Seiderer] Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* .gitlab-ci.yml: regenerate after prosody tests additionThomas Petazzoni2018-12-061-2/+2
| | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* support/testing: add prosody testFrancois Perrad2018-12-062-0/+50
| | | | | Signed-off-by: Francois Perrad <francois.perrad@gadz.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* package/prosody: fix runtime dependenciesFrancois Perrad2018-12-061-0/+5
| | | | | | | | | | prosody is not available for Lua 5.3, but only 5.1 & 5.2. prosody needs the module BitOp which is included in LuaJIT note: the actual config is working only LuaJIT Signed-off-by: Francois Perrad <francois.perrad@gadz.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* support/testing: add lua testFrancois Perrad2018-12-062-0/+61
| | | | | | | Signed-off-by: Francois Perrad <francois.perrad@gadz.org> Reviewed-by: Ricardo Martincoski <ricardo.martincoski@gmail.com> Tested-by: Ricardo Martincoski <ricardo.martincoski@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* .gitlab-ci.yml: update with recently added testsThomas Petazzoni2018-12-061-0/+4
| | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* support/testing: add perl-io-socket-ssl testFrancois Perrad2018-12-061-0/+21
| | | | | Signed-off-by: Francois Perrad <francois.perrad@gadz.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* support/testing: add perl-io-socket-multicast testFrancois Perrad2018-12-061-0/+21
| | | | | Signed-off-by: Francois Perrad <francois.perrad@gadz.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* support/testing: add perl-encode-decode testFrancois Perrad2018-12-061-0/+20
| | | | | Signed-off-by: Francois Perrad <francois.perrad@gadz.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* support/testing: add perl-dbd-mysql testFrancois Perrad2018-12-061-0/+21
| | | | | Signed-off-by: Francois Perrad <francois.perrad@gadz.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
OpenPOWER on IntegriCloud