Commit Graph

16085 Commits

Author SHA1 Message Date
Alistair Francis
87a44d82f2 python3-obd: Consolidate into a single file
Signed-off-by: Alistair Francis <alistair@alistair23.me>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-03-08 16:38:30 -07:00
Gianfranco Costamagna
d148bc4940 mosquitto: do not enable srv by default
Rationale can be found in the Debian packaging (debian/changelog):
Revert change enabling SRV functionality, it is disabled by default
upstream and of little benefit to any end user, but adds reasonable
complexity to the code.

Signed-off-by: Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
Signed-off-by: Gianfranco Costamagna <locutusofborg@debian.org>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-03-08 16:38:30 -07:00
Gianfranco Costamagna
9f6d45379e mosquitto: refresh patches and sync with Debian packaging
Also add patch from debian to mqtt_protocol.h header file

Signed-off-by: Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
Signed-off-by: Gianfranco Costamagna <locutusofborg@debian.org>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-03-08 16:38:30 -07:00
Khem Raj
7e6305da8e mraa: Fix build on x86 32bit
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-03-08 16:38:30 -07:00
Khem Raj
d62b225023 nss,nspr: Add recipes
oe-core has punted them, but they are still needed by many packages e.g.
mozjs

Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-03-08 08:15:34 -07:00
Khem Raj
e15b04fa10 libqb: Build native version as well
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-03-08 08:15:34 -07:00
Khem Raj
5c051f8402 corosync: Update to 3.0.3
- Add dependency on kronosnet
- Remove obsolete options and packageconfigs
- Drop upstreamed patch

Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-03-08 08:15:34 -07:00
Khem Raj
a367e54deb kronosnet: Add recipe
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-03-08 08:15:34 -07:00
Adrian
3be47e7424 networkmanager: Upgrade 1.18.4 -> 1.22.8
- rebased patches
- added two more small patches
- Option --enable-polkit-agent is not available with current NM, removed
- Option --with-libnm-glib is not available with current NM, removed
- New package NM-cloud-setup for new experimental cloud setup feature
- NM tries to re-license from GPL to LGPL, added LGPL to LICENSES
- Removed empty packages libnmutil libnmglib libnmglib-vpn

Signed-off-by: Adrian Freihofer <adrian.freihofer@siemens.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-03-08 08:13:34 -07:00
Jeremy Puhlman
cd6b342f18 net-snmp: fix reproducibilty issues in net-snmp-config
Both STAGING_HOST_DIR and -fmacro-prefix-map path to WORKDIR were
encoded in the config.

Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-03-06 23:31:26 -08:00
Jeremy Puhlman
49e60520cc net-snmp: multilib fixes
net-snmp/net-snmp-config.h:
- encodes type sizes
- encodes pathing into the libdir
net-snmp-config:
- encodes build configuration data and lib pathing.

Signed-off-by: Jeremy A. Puhlman <jpuhlman@mvista.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-03-06 17:37:14 -08:00
Martin Jansa
088ca60356 daemontools: remove native BBCLASSEXTEND
* it was used only to provide chkshsgr which is now replaced with no-op call
  since
  commit 50d526d06a
  Author: Khem Raj <raj.khem@gmail.com>
  Date:   Tue Jan 28 11:28:52 2020 -0800

    daemontools: Disable the chkshsgr tests

    Running the chkhsgr test during cross compile fails

    ./chkshsgr || ( cat warn-shsgr; exit 1 )
    Oops. Your getgroups() returned 0, and setgroups() failed; this means
    that I can't reliably do my shsgr test. Please either ``make'' as root
    or ``make'' while you're in one or more supplementary groups.

    All OE based targets have working getgroups()/setgroups()
    implementation, so its a safe assumption and therefore make the test
    to be a dummy

* the native chkshsgr from daemontools-native was actually being
  called only because of this chunk of cross-compile.patch:
  -       ./chkshsgr || ( cat warn-shsgr; exit 1 )
  +       chkshsgr || ( cat warn-shsgr; exit 1 )
  but all chkshsgr does is:
    short x[4];
    x[0] = x[1] = 0;
    if (getgroups(1,x) == 0) if (setgroups(1,x) == -1) _exit(1);
    _exit(0);
  which running on host system, doesn't say anything useful about the
  cross compile target, so it's easier to just remove the call in
  cross-compile.patch and simplify all this nonsense

* I came across this because daemontools-native was failing for me
  in "bitbake world" with zeus, which might be the same case as what
  Khem was seeing - just the final commit message doesn't reflect that

* daemontools-native fails to build without the above commit in
  zeus as well, when building inside docker container where my
  build user is in fewer groups (just 1) so the
  getgroups(1,x) call doesn't fail, but on more average OS the
  user will be in more than 4 groups and
  getgroups(1,x) would fail with errno 22 EINVAL
    - so setgroups isn't even called to return 1 error when chkshsgr is called
  http://man7.org/linux/man-pages/man2/setgroups.2.html
    If the calling process is a member of more than size
    supplementary groups, then an error results.
  if I increase the size of x enough for x to hold all groups, then setgroups
  will fail with errno 1 EPERM, which is the same error as shown
  under docker container where getgroups doesn't fail, because
  in both cases I'm using unprivileged user for builds

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-03-06 17:23:54 -08:00
Pierre-Jean Texier
01e4b86ca1 python3-django: fix UPSTREAM_CHECK_REGEX
Fixes:

INFO: Skip package python3-django (status = UNKNOWN_BROKEN, current version = 2.2.7, next version = 1.15)

After this commit:

INFO: python3-django, 2.2.7, 3.0.4, None, N/A

Signed-off-by: Pierre-Jean Texier <pjtexier@koncepto.io>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-03-06 17:23:54 -08:00
Pierre-Jean Texier
4d85c3a512 pkcs11-helper: add UPSTREAM_CHECK_GITTAGREGEX
Fixes:

INFO: pkcs11-helper, 1.26, 11, None, c7a0cfa08ddc75d963a835d3588170af0e5f1115

After this commit:

INFO: Skip package pkcs11-helper (status = MATCH, current version = 1.26, next version = 1.26)

Signed-off-by: Pierre-Jean Texier <pjtexier@koncepto.io>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-03-06 17:23:54 -08:00
Pierre-Jean Texier
19f08efb42 abseil-cpp: set PV in the recipe
Fixes:

INFO: Skip package abseil-cpp (status = UNKNOWN_BROKEN, current version = git, next version = 20200225.1)

Signed-off-by: Pierre-Jean Texier <pjtexier@koncepto.io>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-03-06 17:23:54 -08:00
Pierre-Jean Texier
1725078571 babeld: add UPSTREAM_CHECK_GITTAGREGEX
Fixes:

INFO: babeld, 1.9.1, 20110804, None, 794863e90f81ee38b9dddd72dfabcba634b2fc07

After this commit:

INFO: Skip package babeld (status = MATCH, current version = 1.9.1, next version = 1.9.1)

Signed-off-by: Pierre-Jean Texier <pjtexier@koncepto.io>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-03-06 17:23:54 -08:00
Pierre-Jean Texier
ee15c67c58 exfat-utils: fix upstream version check
Fixes:

INFO: Skip package exfat-utils (status = UNKNOWN_BROKEN, current version = 1.3.0, next version = N/A)

After this commit:

INFO: Skip package exfat-utils (status = MATCH, current version = 1.3.0, next version = 1.3.0)

Signed-off-by: Pierre-Jean Texier <pjtexier@koncepto.io>
2020-03-06 17:23:54 -08:00
Changqing Li
311f98fd03 python3-pygobject: remove this recipe
python3-pygobject already in oe-core, previously,
we have python-pygobject in meta-oe, but recently, in order
to drop python2, we transfer python-pygobject to
python3-pygobject, so duplicated with oe-core, meantime,
this will cause test_signature failure when do yocto-check-layer
for layer meta-oe.

Signed-off-by: Changqing Li <changqing.li@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-03-06 17:23:54 -08:00
Jeremy Puhlman
fd2e895c9c proftpd: make prxs a mulitlib script
Script encodes compiler settings and compiler name.

my $compiler = q(x86_64-poky-linux-gcc  -m64 -march=nehalem -mtune=generic -mfpmath=sse -msse4.2 );

Signed-off-by: Jeremy A. Puhlman <jpuhlman@mvista.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-03-06 17:23:54 -08:00
Jeremy Puhlman
8bfb1ff1a6 proftpd: remove macro-prefix-map from prxs
macro-prefix-map points to build WORKDIR which will
cause reproducibilty failures.

Signed-off-by: Jeremy A. Puhlman <jpuhlman@mvista.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-03-06 17:23:54 -08:00
Jeremy Puhlman
a0e6cd3b6e libdnet: make dnet-config a multilib_script
Script encodes library paths.

Signed-off-by: Jeremy A. Puhlman <jpuhlman@mvista.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-03-06 09:37:44 -08:00
Jeremy Puhlman
d67a35bcb1 quagga: make version.h a multilib header
version.h contains the configure options passed during the build
which differs between multilibs

Signed-off-by: Jeremy A. Puhlman <jpuhlman@mvista.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-03-06 09:37:44 -08:00
Jeremy Puhlman
1d4356c6ef quagga: fix reproducibily issue.
version.h contains the options passed to configure, which includes
the path to the recipe-sysroot on the build host.

Signed-off-by: Jeremy A. Puhlman <jpuhlman@mvista.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-03-06 09:37:43 -08:00
Propanu
d9fd04ba32 mraa_git.bb: update to v2.1.0
Update SRCREV to latest v2.1.0 and SRC_URI to reflect new Eclipse Foundation project location.

Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-03-06 09:37:43 -08:00
Joris Offouga
76073b901f monit: new package
Signed-off-by: Joris Offouga <offougajoris@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-03-05 13:22:15 -08:00
Changqing Li
c39747bc66 xfsdump: fix do patch error
update patch to fix do_patch error

Signed-off-by: Changqing Li <changqing.li@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-03-05 13:22:15 -08:00
Pierre-Jean Texier
4211ff4855 cloc: fix upstream version check
Fixes:

INFO: Skip package cloc (status = UNKNOWN_BROKEN, current version = 1.84, next version = N/A)

After this commit:

INFO: Skip package cloc (status = MATCH, current version = 1.84, next version = 1.84)

Signed-off-by: Pierre-Jean Texier <pjtexier@koncepto.io>
2020-03-05 07:11:50 -08:00
Pierre-Jean Texier
171f3df9e1 icewm: fix upstream version check
Fixes:

INFO: Skip package icewm (status = UNKNOWN_BROKEN, current version = 1.5.5, next version = N/A)

After this commit:

INFO: icewm, 1.5.5, 1.6.4, None, N/A

Signed-off-by: Pierre-Jean Texier <pjtexier@koncepto.io>
2020-03-05 07:11:50 -08:00
Pierre-Jean Texier
f0aaedbe01 libstatgrab: fix upstream version check
Fixes:

INFO: Skip package libstatgrab (status = UNKNOWN_BROKEN, current version = 0.92, next version = N/A)

After this commit:

INFO: Skip package libstatgrab (status = MATCH, current version = 0.92, next version = 0.92)

Signed-off-by: Pierre-Jean Texier <pjtexier@koncepto.io>
2020-03-05 07:11:50 -08:00
Pierre-Jean Texier
b7eaa85ee3 uim: fix upstream version check
Fixes:

INFO: Skip package uim (status = UNKNOWN_BROKEN, current version = 1.8.8, next version = N/A)

After this commit:

INFO: Skip package uim (status = MATCH, current version = 1.8.8, next version = 1.8.8)

Signed-off-by: Pierre-Jean Texier <pjtexier@koncepto.io>
2020-03-05 07:11:50 -08:00
Pierre-Jean Texier
07196b6a8c pugixml: fix upstream version check
Fixes:

INFO: Skip package pugixml (status = UNKNOWN_BROKEN, current version = 1.10, next version = N/A)

After this commit:

INFO: Skip package pugixml (status = MATCH, current version = 1.10, next version = 1.10)

Signed-off-by: Pierre-Jean Texier <pjtexier@koncepto.io>
2020-03-05 07:11:50 -08:00
Pierre-Jean Texier
c4fa664720 jq: fix upstream version check
Fixes:

INFO: Skip package jq (status = UNKNOWN_BROKEN, current version = 1.6, next version = N/A)

After this commit:

INFO: Skip package jq (status = MATCH, current version = 1.6, next version = 1.6)

Signed-off-by: Pierre-Jean Texier <pjtexier@koncepto.io>
2020-03-05 07:11:50 -08:00
Pierre-Jean Texier
18b434594c dbus-broker: fix upstream version check
Fixes:

INFO: Skip package dbus-broker (status = UNKNOWN_BROKEN, current version = 21, next version = N/A)

After this commit:

INFO: dbus-broker, 21, 22, None, N/A

Signed-off-by: Pierre-Jean Texier <pjtexier@koncepto.io>
2020-03-05 07:11:50 -08:00
Pierre-Jean Texier
5eeaa3edef irssi: fix upstream version check
Fixes:

INFO: Skip package irssi (status = UNKNOWN_BROKEN, current version = 1.1.2, next version = N/A)

After this commit:

INFO: irssi, 1.1.2, 1.2.2, None, N/

Signed-off-by: Pierre-Jean Texier <pjtexier@koncepto.io>
2020-03-05 07:11:50 -08:00
Pierre-Jean Texier
06d2b6a33b czmq: fix upstream version check
Fixes:

INFO: Skip package czmq (status = UNKNOWN_BROKEN, current version = 4.2.0, next version = N/A)

After this commit:

INFO: Skip package czmq (status = MATCH, current version = 4.2.0, next version = 4.2.0)

Signed-off-by: Pierre-Jean Texier <pjtexier@koncepto.io>
2020-03-05 07:11:50 -08:00
Pierre-Jean Texier
4a13dc6a9d zeromq: fix upstream version check
Fixes:

INFO: Skip package zeromq (status = UNKNOWN_BROKEN, current version = 4.3.2, next version = N/A)

After this commit:

INFO: Skip package zeromq (status = MATCH, current version = 4.3.2, next version = 4.3.2)

Signed-off-by: Pierre-Jean Texier <pjtexier@koncepto.io>
2020-03-05 07:11:50 -08:00
Pierre-Jean Texier
780bcdc0f5 uriparser: fix upstream version check
Fixes:

INFO: Skip package uriparser (status = UNKNOWN_BROKEN, current version = 0.9.3, next version = N/A)

After this commit:

INFO: Skip package uriparser (status = MATCH, current version = 0.9.3, next version = 0.9.3)

Signed-off-by: Pierre-Jean Texier <pjtexier@koncepto.io>
2020-03-05 07:11:50 -08:00
Khem Raj
0a3b6af977 tcsh: Update SRC_URI
the ftp site seems to be intermittent

Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-03-05 07:09:22 -08:00
Pierre-Jean Texier
e5c5df9bcd libtinyxml2: upgrade 7.1.0 -> 8.0.0
Signed-off-by: Pierre-Jean Texier <pjtexier@koncepto.io>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-03-04 23:51:57 -08:00
Haiqing Bai
d16876d777 gd: fix CVE-2017-6363
Backport the CVE patch from the upstream to fix the heap-based buffer
over-read in tiffWriter.

Signed-off-by: Haiqing Bai <Haiqing.Bai@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-03-04 18:54:52 -08:00
Pierre-Jean Texier
1559cf5810 python3-socketio: upgrade 4.3.1 -> 4.4.0
See full changelog https://github.com/miguelgrinberg/python-socketio/blob/master/CHANGES.md

Signed-off-by: Pierre-Jean Texier <pjtexier@koncepto.io>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-03-04 18:54:48 -08:00
Pierre-Jean Texier
cab232ac59 python3-pycurl: upgrade 7.43.0.3 -> 7.43.0.5
License-Update: copyright years updated

-Copyright (C) 2013-2019 by Oleg Pudeyev <oleg at bsdpower.com>
+Copyright (C) 2013-2020 by Oleg Pudeyev <oleg at bsdpower.com>

Signed-off-by: Pierre-Jean Texier <pjtexier@koncepto.io>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-03-04 18:54:32 -08:00
Pierre-Jean Texier
2886e8779d python3-evdev: upgrade 1.2.0 -> 1.3.0
Remove patch applied upstream.

See full changelog https://python-evdev.readthedocs.io/en/latest/changelog.html

Signed-off-by: Pierre-Jean Texier <pjtexier@koncepto.io>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-03-04 18:54:27 -08:00
Pierre-Jean Texier
0fa20f8652 python3-gmqtt: upgrade 0.4.4 -> 0.6.2
See full changelog https://github.com/wialon/gmqtt/releases

Signed-off-by: Pierre-Jean Texier <pjtexier@koncepto.io>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-03-04 18:54:20 -08:00
Khem Raj
90683147fa x265: Disable assembly on x86
Fixes
ERROR: QA Issue: x265: ELF binary /usr/lib/libx265.so.179 has relocations in .text [textrel]

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Cc: Scott Branden <scott.branden@broadcom.com>
2020-03-04 11:23:44 -08:00
Khem Raj
366b427fef openh264: Upgrade to 2.0.0
- Fix host-user-contaminated QA issues
- make clean is broken so mark it so
- Enable PIC in asm which fixes textrels issue
- Fix build on mips

Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-03-04 11:23:44 -08:00
Khem Raj
3515db0285 minidlna: Retarget gettext patch to gettex version 0.20
This fixes
*** error: gettext infrastructure mismatch: using a Makefile.in.in from gettext version 0.19 but the autoconf macros are from gettext version 0.20

Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-03-04 11:23:44 -08:00
Khem Raj
a4004635b2 vlc: Depend on gst-1.0 plugins-bad instead of 0.10
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-03-04 11:23:44 -08:00
Khem Raj
89a156df27 packagegroup-meta-multimedia: Purge gst 0.10 related rdeps
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-03-04 11:23:44 -08:00
Zheng Ruoqin
5ad5cf3127 tcsh: upgrade 6.21.00 -> 6.22.02
Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-03-04 08:15:20 -08:00