Arnout Vandecappelle (Essensium/Mind)
16d3d70590
package/rustc: install cargo config as toolchain post-install hook
...
The cargo config file is much like the cmake and meson configuration
files, something that tells the cargo build system how the
cross-toolchain is configured.
It is currently installed by the cargo package, but this package is
about to be removed as cargo is now built as part of rust
itself. Therefore, install the cargo config file as a toolchain
post-install hook, just like we do for cmake and meson.
However, we don't have a pkg-cargo infrastructure (yet) so we can't
put it there. Therefore, put it in the rustc package - any cargo
package will need rustc.
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be >
Tested-by: David Pierret <david.pierret@smile.fr >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2020-07-27 13:30:59 +02:00
Giulio Benetti
00b7abf7eb
package/libnss: bump version to 3.55
...
Bump version to 3.55. Unfortunately local patch is still pending
upstream and not applied and I've just asked why:
https://bugzilla.mozilla.org/show_bug.cgi?id=1642174
This version requires NSPR 4.27.
Release Notes:
https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/NSS_3.55_release_notes
Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com >
[yann.morin.1998@free.fr: two spaces in hash file]
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2020-07-27 13:22:39 +02:00
Giulio Benetti
0746410aea
package/libnspr: bump version to 4.27
...
Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com >
[yann.morin.1998@free.fr: two spaces in hash file]
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2020-07-27 13:21:55 +02:00
Francois Perrad
4f82296536
package/docker-engine: needs more runtime dependencies
...
fix error:
failed to start daemon: Devices cgroup isn't mounted
Signed-off-by: Francois Perrad <francois.perrad@gadz.org >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2020-07-27 10:13:44 +02:00
Christian Stewart
1640b0c1f9
package/mbpfan: new package
...
Adding mbpfan, a fan control daemon for MacBook laptops.
Signed-off-by: Christian Stewart <christian@paral.in >
[Peter: add hash file, drop Debian init script, drop systemd symlinks, add
DEVELOPERS entry]
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2020-07-27 10:13:06 +02:00
Bernd Kuhls
dc657c8041
package/vlc: fix missing headers when compiling with Qt 5.15
...
Fixes
http://autobuild.buildroot.net/results/832/832226c43549befda7e8c86a52354e7d6adc0a98/
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
2020-07-27 10:00:46 +02:00
Peter Korsgaard
9652e2cbe5
package/tpm2-tools: bump version to 4.1.2
...
Bugfix release with a single fix:
- Fix missing handle maps for ESY3 handle breaks. See #1994
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2020-07-27 09:21:09 +02:00
Peter Korsgaard
56ff08cea0
package/tpm2-abrmd: bump version to 2.3.2
...
Fixes various initialization / systemd issues. From the changelog:
- Provide meaningful exit codes on initialization failures.
- Prevent systemd from starting the daemon before udev changes ownership of
the TPM device node.
- Prevent systemd from starting the daemon if there is no TPM device node.
- Prevent systemd from restarting the daemon if it fails.
- Add SELinux policy to allow daemon to resolve names.
- Add SELinux policy boolean (disabled by default) to allow daemon to
connect to all unreserved ports.
Also adjust .hash file white space to match new agreements.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2020-07-27 09:20:54 +02:00
Adam Duskett
cb6d52a5e5
package/libwebsockets: add fsmount support
...
Signed-off-by: Adam Duskett <Aduskett@gmail.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
2020-07-27 09:03:53 +02:00
Adam Duskett
4ee1a4a5ab
package/libwebsockets: add libglib2 support
...
Signed-off-by: Adam Duskett <Aduskett@gmail.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
2020-07-27 09:02:28 +02:00
Adam Duskett
a547e765c3
package/libwebsockets: bump version to 4.0.20
...
Other changes:
- Remove upstream patch.
- Change license type to MIT.
- Update license shasum due to the above change.
- Upstrem agained optional support for libglib2 and fsmount, we
disable those so far
Signed-off-by: Adam Duskett <Aduskett@gmail.com >
[yann.morin.1998@free.fr: forcibly disable new features]
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2020-07-27 09:01:29 +02:00
Adam Duskett
9b0d79ea5e
package/libwebsockets: add support for extensions
...
libwebsockets currently depends on zlib, however, as of commit
13ba5bbc633ea962d46d9f2bfb2e87c9f7e83b62 (from 2013!) zlib is not actually a
requirement if extensions are not enabled.
By default, libwebsockets sets the "LWS_WITHOUT_EXTENSIONS" option to "ON,"
which removes the need for zlib as a dependency. Because of this default
setting, there are two options:
1) Remove the dependency on zlib, create a new option under Config.in to allow
a user to enable extensions, add zlib as a dependency, and set
LWS_WITHOUT_EXTENSIONS to "OFF" if that option is selected.
2) Keep the dependency and explicitly set LWS_WITHOUT_EXTENSIONS to "OFF."
Below are the size differences in bytes:
- Without zlib and extensions: 44636
- With zlib and without extensions: 44720
- With zlib and with extensions: 44732
Considering the size difference between all 3 is an incredible 96 bytes, and
the difference between what we have now, and enabling extensions is an
insurmountable 12 bytes, it is safe to keep the dependency on zlib and always
enable extensions.
Signed-off-by: Adam Duskett <Aduskett@gmail.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
2020-07-27 08:54:26 +02:00
Fabrice Fontaine
e825ad6f92
package/powerpc-utils: bump to version 1.3.7
...
Update indentation in hash file (two spaces)
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
2020-07-27 08:51:29 +02:00
Fabrice Fontaine
24f96c818e
package/librtas: bump to version 2.0.2
...
Update indentation in hash file (two spaces)
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
2020-07-27 08:51:23 +02:00
Fabrice Fontaine
b435912e54
package/snmppp: fix SNMPv3 with gcc <= 5
...
Fixes:
- http://autobuild.buildroot.org/results/bfe3faefc007f2e746c9f0af9b7d0926bb72dc9e
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com >
Reviewed-by: Luca Ceresoli <luca@lucaceresoli.net >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
2020-07-27 08:43:26 +02:00
Bernd Kuhls
3c2e8b2b29
package/freeswitch: fix build error
...
Freeswitch has been tested agains tan older version of libcheck, 0.12.0
or earlier, while Buildroot has 0.15.1. With 0.13.0, the API of libcheck
has changed, and Freeswitch does not account for this.
Fixes
http://autobuild.buildroot.net/results/5db/5dbce5860f57c1457962aa295857689f49a60bc6/
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de >
Tested-by: Heiko Thiery <heiko.thiery@gmail.com >
[yann.morin.1998@free.fr: expand commit log with the root cause]
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2020-07-27 08:29:44 +02:00
Fabrice Fontaine
e38202efe9
package/chocolate-doom: bump to version 3.0.1
...
Update indentation in hash file (two spaces)
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2020-07-26 21:51:20 +02:00
Bernd Kuhls
fec0936461
package/freeswitch-mod-bcg729: bump version to 1.0.5
...
Reformatted hashes.
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2020-07-26 21:50:26 +02:00
Bernd Kuhls
9370ce4530
package/libhdhomerun: bump version to 20200521
...
Reformatted hashes.
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2020-07-26 21:49:51 +02:00
Bernd Kuhls
0c27568282
package/libopenh264: bump version to 2.1.1
...
Release notes:
https://github.com/cisco/openh264/blob/openh264v2.1.1/RELEASES
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2020-07-26 21:49:42 +02:00
Bernd Kuhls
88aa55953c
package/dovecot-pigeonhole: bump version to 0.5.10
...
Release notes:
https://raw.githubusercontent.com/dovecot/pigeonhole/release-0.5.10/NEWS
Reformatted hashes.
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2020-07-26 21:49:31 +02:00
Bartosz Bilas
7485f46d09
boot/barebox: bump version to 2020.07.0
...
Signed-off-by: Bartosz Bilas <b.bilas@grinn-global.com >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2020-07-26 21:47:47 +02:00
Bernd Kuhls
a5bbe8983b
package/check: bump version to 0.15.1
...
Release notes: https://github.com/libcheck/check/blob/0.15.1/NEWS
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2020-07-26 21:47:39 +02:00
Francois Perrad
620cb0e8bd
package/moarvm: bump to 2020.07
...
Signed-off-by: Francois Perrad <francois.perrad@gadz.org >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2020-07-26 21:47:22 +02:00
Gilles Talis
9a5a467eb0
package/xapian: bump to version 1.4.16
...
Updated indentation in hash file (two spaces)
Signed-off-by: Gilles Talis <gilles.talis@gmail.com >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2020-07-26 21:47:15 +02:00
Gilles Talis
718b25b655
package/ncdu: bump to version 1.15.1
...
Updated indentation in hash file (two spaces)
Signed-off-by: Gilles Talis <gilles.talis@gmail.com >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2020-07-26 21:47:07 +02:00
Gilles Talis
dd05db0e40
package/libolm: bump to version 3.1.5
...
Updated hash file indentation (two spaces)
Signed-off-by: Gilles Talis <gilles.talis@gmail.com >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2020-07-26 21:46:58 +02:00
Peter Korsgaard
dbabc54eaf
docs/website: update for 2020.02.4
...
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2020-07-26 10:44:53 +02:00
Peter Korsgaard
39d71a8c32
Update for 2020.02.4
...
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
(cherry picked from commit dee53013da )
[Peter: drop Makefile changes]
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2020-07-26 10:42:51 +02:00
Peter Korsgaard
4138c2e98d
docs/website: update for 2020.05.1
...
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2020-07-26 10:41:42 +02:00
Peter Korsgaard
c80e5c9b2a
Update for 2020.05.1
...
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
(cherry picked from commit 667adccb92 )
[Peter: drop Makefile changes]
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2020-07-26 10:38:47 +02:00
Adam Duskett
ad953b0149
package/libwebsockets: remove dependency on mmu
...
Six years ago, commit b6b5bb518d added the MMU
dependency for the libwebsockets package. However, according to the git
history of the CMakeLists.txt file, libwebsockets has supported the vfork
function for at least the last five years.
After testing with the qemu_arm_versatile_nommu_defconfig and the
br-arm-cortex-m4-full.config file, no errors occurred when building
libwebsockets without MMU support.
Remove the dependency; it is no longer necessary. Update the reverse
dependencies as needed.
Signed-off-by: Adam Duskett <Aduskett@gmail.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2020-07-26 09:10:18 +02:00
Fabrice Fontaine
e90729b5b1
package/enchant: bump to version 2.2.8
...
- Update site to get latest version
- Update hash of COPYING.LIB (update in FSF address with
adcb08292d )
- Update indentation in hash file (two spaces)
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2020-07-25 23:48:00 +02:00
Fabrice Fontaine
4211ca8f70
package/qlibc: bump to version 2.4.5
...
Update indentation in hash file (two spaces)
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2020-07-25 23:38:29 +02:00
Francois Perrad
e5f82f94ed
package/perl-mail-dkim: bump to version 1.20200708
...
- new scheme for version
- LICENSE file added
Signed-off-by: Francois Perrad <francois.perrad@gadz.org >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2020-07-25 23:34:33 +02:00
Francois Perrad
5cbbfccbf7
package/perl-net-dns: bump to version 1.25
...
Signed-off-by: Francois Perrad <francois.perrad@gadz.org >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2020-07-25 23:34:33 +02:00
Francois Perrad
b144705fe4
package/perl-mojolicious: bump to version 8.57
...
Signed-off-by: Francois Perrad <francois.perrad@gadz.org >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2020-07-25 23:34:30 +02:00
Francois Perrad
5903772879
package/perl-lwp-protocol-https: bump to version 6.09
...
now, LICENSE has its own file
Signed-off-by: Francois Perrad <francois.perrad@gadz.org >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2020-07-25 23:31:29 +02:00
Francois Perrad
226daebfa0
package/perl-libwww-perl: bump to version 6.46
...
Signed-off-by: Francois Perrad <francois.perrad@gadz.org >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2020-07-25 23:31:24 +02:00
Francois Perrad
f97e7a7308
package/perl-http-message: bump to version 6.25
...
Signed-off-by: Francois Perrad <francois.perrad@gadz.org >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2020-07-25 23:31:21 +02:00
Francois Perrad
91a4248c26
package/perl-http-entity-parser: bump to version 0.23
...
Signed-off-by: Francois Perrad <francois.perrad@gadz.org >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2020-07-25 23:31:15 +02:00
Francois Perrad
7b066ffb9d
package/perl-gd: bump to version 2.72
...
Signed-off-by: Francois Perrad <francois.perrad@gadz.org >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2020-07-25 23:31:04 +02:00
Francois Perrad
eedb4a55c5
package/perl-file-util: bump to version 4.201720
...
Signed-off-by: Francois Perrad <francois.perrad@gadz.org >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2020-07-25 23:30:59 +02:00
Francois Perrad
7472f7790c
package/perl-file-slurp: bump to version 9999.32
...
Signed-off-by: Francois Perrad <francois.perrad@gadz.org >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2020-07-25 23:30:55 +02:00
Fabrice Fontaine
3ebc22aef0
package/minizip: use pkg-config to find zstd
...
Fix build with zstd in version 2.10.0
Fixes:
- http://autobuild.buildroot.org/results/0fe0ca0a7d39f863614f2aecd9eefc20cd64daf4
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2020-07-25 23:30:49 +02:00
Romain Naour
35de2fdcf7
gitlab-ci: convert only/except to rules
...
only/except keywords will be deprecated by upcoming gitlab release,
upstream recommend to use rules keyword instead [1][2][3][4][5].
This patch convert .gitlab-ci.yml to use rules, no functional
changes intended.
After this patch, we should still have the following behaviour
while pushing commit, tag, branches:
- to trigger only the check-* jobs:
$ git push gitlab HEAD:<name>
- to trigger all defconfigs and all check-* jobs:
$ git push gitlab HEAD:<name>-defconfigs
- to trigger all runtime tests and all check-* jobs:
$ git push gitlab HEAD:<name>-runtime-tests
- to trigger one defconfig job:
$ git push gitlab HEAD:<name>-<defconfig name>
- to trigger one runtime job:
$ git push gitlab HEAD:<name>-<test case name>
[1] 7eaaa597e2
[2] https://about.gitlab.com/releases/2020/06/22/gitlab-13-1-released/#templates-to-simplify-initial-rules-keyword-configuration
[3] https://about.gitlab.com/releases/2020/05/22/gitlab-13-0-released/#auto-devops-and-secure-configuration-templates-are-changing-to-%60rules%60-instead-of-%60only/except%60
[4] https://gitlab.com/gitlab-org/gitlab/issues/27449
[5] https://gitlab.com/groups/gitlab-org/-/epics/2783
[6] https://buildroot.org/downloads/manual/manual.html#_using_the_run_tests_framework
Signed-off-by: Romain Naour <romain.naour@gmail.com >
Cc: Ricardo Martincoski <ricardo.martincoski@gmail.com >
Cc: Arnout Vandecappelle <arnout@mind.be >
Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
2020-07-25 23:15:14 +02:00
Angelo Compagnucci
db49315a61
DEVELOPERS: add Angelo Compagnucci to several packages
...
This patch adds some packages I contributed to my entry.
Signed-off-by: Angelo Compagnucci <angelo@amarulasolutions.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2020-07-25 23:14:23 +02:00
Angelo Compagnucci
c009545716
linux: bump CIP RT kernel to version 4.19.132-cip30-rt12
...
This patch bumps Linux CIP RT to version 4.19.132-cip30-rt12
Signed-off-by: Angelo Compagnucci <angelo@amarulasolutions.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2020-07-25 23:14:17 +02:00
Angelo Compagnucci
50d243cda9
linux: bump CIP kernel to version 4.19.132-cip30
...
This patch bumps Linux CIP to version 4.19.132-cip30
Signed-off-by: Angelo Compagnucci <angelo@amarulasolutions.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2020-07-25 23:14:13 +02:00
Vincent Stehlé
9566521b59
configs/bananapi_m2_zero: new defconfig
...
The Banana Pi M2 Zero [1] is a board from Sinovoip, based on the
Allwinner H2+ SoC.
It is similar to the other Banana Pi M2* boards, from which this
configuration is inspired.
[1]: http://www.banana-pi.org/m2z.html
Signed-off-by: Vincent Stehlé <vincent.stehle@laposte.net >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2020-07-25 23:12:34 +02:00