Adrian Bunk
b66d2391b7
flashrom: Upgrade 1.0 -> 1.1
...
Patches applied upstream removed.
Signed-off-by: Adrian Bunk <bunk@stusta.de >
Signed-off-by: Khem Raj <raj.khem@gmail.com >
2019-11-01 17:22:52 -07:00
André Draszik
76dd3dac1f
nodejs: allow use of system c-ares (and make default)
...
Use system c-ares via PACKAGECONFIG by default. So far,
nodejs had been built using its embedded copy of c-ares,
which we generally try to avoid, for the known reasons
(independent updates, cve & license checks, etc).
Notes:
* otherwise nodejs uses its bundled version of c-ares
* the PACKAGECONFIG variable is 'ares' so as to be in
line with other uses of this (wget & curl recipes in
OE core)
Signed-off-by: André Draszik <git@andred.net >
Signed-off-by: Khem Raj <raj.khem@gmail.com >
2019-11-01 17:22:52 -07:00
Luca Boccassi
b70b263add
dbus-broker: build with libaudit if selinux is enabled
...
There is no DISTRO_FEATURE for audit, so most packages enable it
if selinux is enabled.
Signed-off-by: Luca Boccassi <luca.boccassi@microsoft.com >
Signed-off-by: Khem Raj <raj.khem@gmail.com >
2019-11-01 17:22:52 -07:00
Andreas Müller
176ef600c8
unicode-ucd: Set correct SUMMARY and HOMEPAGE
...
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com >
Signed-off-by: Khem Raj <raj.khem@gmail.com >
2019-11-01 17:22:52 -07:00
Zang Ruochen
131a90049e
gmime: upgrade 3.2.3 -> 3.2.4
...
Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com >
Signed-off-by: Khem Raj <raj.khem@gmail.com >
2019-11-01 17:22:51 -07:00
Zang Ruochen
9ffd52764d
poppler: upgrade 0.80.0 -> 0.82.0
...
Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com >
Signed-off-by: Khem Raj <raj.khem@gmail.com >
2019-11-01 17:22:51 -07:00
Andreas Müller
a8ed30979f
unicode-ucd: initial add 12.1.0
...
It is a build dependency for ibus
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com >
Signed-off-by: Khem Raj <raj.khem@gmail.com >
2019-11-01 07:48:55 -07:00
Carlos Rafael Giani
b29797ba4b
opencv: Enable pkg-config .pc file generation
...
In OpenCV 4, .pc file generation is disabled by default. Yet, other
software such as GStreamer and FFmpeg rely on the .pc files during build
time configuration. Explicitely enable .pc file generation to make sure
pkg-config can be used for getting information about OpenCV.
Signed-off-by: Carlos Rafael Giani <crg7475@mailbox.org >
Signed-off-by: Khem Raj <raj.khem@gmail.com >
2019-11-01 07:48:55 -07:00
Trevor Gamblin
e51cd9132a
rsyslog: upgrade from v8.1908.0 to v8.1910.0
...
Upgrade rsyslog to latest version for various
fixes including the following CVEs:
CVE: CVE-2019-17040
CVE: CVE-2019-17041
Backported patches for those fixes were removed since
they are contained in v8.1910.0.
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com >
Signed-off-by: Khem Raj <raj.khem@gmail.com >
2019-10-28 15:26:42 -07:00
Luca Boccassi
71af733347
dbus-broker: add patch to fix build with musl libc
...
Forwarded upstream: https://github.com/bus1/dbus-broker/pull/214
Signed-off-by: Khem Raj <raj.khem@gmail.com >
2019-10-28 15:26:42 -07:00
Luca Boccassi
9ac1df048a
dbus-broker: build with SELinux if it's enabled via DISTRO_FEATURES
...
Signed-off-by: Luca Boccassi <luca.boccassi@microsoft.com >
Signed-off-by: Khem Raj <raj.khem@gmail.com >
2019-10-28 15:26:42 -07:00
Luca Boccassi
c12bca1e7a
dbus-broker: backport patches from master
...
These patches fix issues found in Fedora 30, which switched from
dbus-daemon to dbus-broker.
These backports align meta-oe to Fedora 30.
Signed-off-by: Luca Boccassi <luca.boccassi@microsoft.com >
Signed-off-by: Khem Raj <raj.khem@gmail.com >
2019-10-28 15:26:42 -07:00
Luca Boccassi
65cf98b5a4
dbus-broker: 19 -> 21
...
Add /lib/systemd/catalog to the package, as snippets for the journal are
now shipped.
Signed-off-by: Luca Boccassi <luca.boccassi@microsoft.com >
Signed-off-by: Khem Raj <raj.khem@gmail.com >
2019-10-28 15:26:42 -07:00
Zang Ruochen
bce8070ae1
xmlsec1: upgrade 1.2.28 -> 1.2.29
...
Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com >
Signed-off-by: Khem Raj <raj.khem@gmail.com >
2019-10-28 15:26:42 -07:00
Andreas Müller
ccb810f34a
itstool: rework native shebang and add class to make native itstool work
...
itstool was reworked in [1] to not use host's python. This patch introduced the
'-S' option for coreutils's env [2]. Unfortunately that option is relatively
young [3] and elder build-host don't support it [4].
The only way to get around this is:
* remove '-S' and -s' from native shebang
* add a class itstool.bbclass. This class depends itstool-native and creates a
valid python3 runtime environment. Most notable in the environment is
export PYTHONNOUSERSITE = "1"
which does same as '-s' option: force python to avoid adding (host) user sites.
[1] http://cgit.openembedded.org/meta-openembedded/commit/meta-oe/recipes-support/itstool/itstool/0001-Don-t-use-build-time-hardcoded-python-binary-path.patch?id=e5ac325b7974a346b218d1f43b92d06f5b0dd078
[2] http://cgit.openembedded.org/meta-openembedded/tree/meta-oe/recipes-support/itstool/itstool/0001-Don-t-use-build-time-hardcoded-python-binary-path.patch
[3] https://github.com/coreutils/coreutils/commit/668306ed86c8c79b0af0db8b9c882654ebb66db2#diff-83d9d52b1f12ac589739ab1334ae4f30
[4] https://errors.yoctoproject.org/Errors/Details/274743/
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com >
Signed-off-by: Khem Raj <raj.khem@gmail.com >
2019-10-27 23:10:00 -07:00
Adrian Bunk
704c0bafd9
gpsd: Stop depending on chrpath-native
...
chrpath is no longer used since 3.15.
Signed-off-by: Adrian Bunk <bunk@stusta.de >
Signed-off-by: Khem Raj <raj.khem@gmail.com >
2019-10-27 23:10:00 -07:00
Adrian Bunk
dc26e0395c
gpsd: Backport a memory leak fix
...
Signed-off-by: Adrian Bunk <bunk@stusta.de >
Signed-off-by: Khem Raj <raj.khem@gmail.com >
2019-10-27 23:10:00 -07:00
Tanu Kaskinen
18506b797b
pavucontrol: polish the recipe
...
Removed an unused patch file:
0002-build-sys-Add-m4-file-for-AX_CXX_COMPILE_STDCXX_11.patch
I believe gtk+3-native was added to DEPENDS to get glib-gettextize,
which is actually provided by glib-2.0-native.
Pavucontrol is not a part of GNOME, it just uses GTK, so it seems
slightly wrong to inherit gnomebase. The only thing we need from
gnomebase is the autotools inherit, which we can do directly. The
gnomebase class automatically set the SECTION to "x11/gnome", but I
think "x11/multimedia" is better.
Added HOMEPAGE.
Fixed LICENSE. Pavucontrol allows choosing later GPL versions as well.
Signed-off-by: Tanu Kaskinen <tanuk@iki.fi >
Signed-off-by: Khem Raj <raj.khem@gmail.com >
2019-10-26 23:10:06 -07:00
Khem Raj
accb14ce5d
open-vm-tools: Fix build by removing deprecated G_INLINE_FUNC
...
Signed-off-by: Khem Raj <raj.khem@gmail.com >
2019-10-26 02:41:33 -07:00
Paolo Valente
b123e01e3e
s-suite: push SRCREV to version 3.6
...
Signed-off-by: Paolo Valente <paolo.valente@linaro.org >
Signed-off-by: Khem Raj <raj.khem@gmail.com >
2019-10-26 02:41:33 -07:00
Andreas Müller
e9763b9f73
libgusb: initial add 0.3.0+
...
* It is a dependency for upcoming colord. That is used by GNOME and KDE [1] so
move it to meta-oe
* 0.3.0 failed build and gobject-introspection was not configurable -> use
latest master sources
[1] https://www.freedesktop.org/software/colord/intro.html
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com >
Signed-off-by: Khem Raj <raj.khem@gmail.com >
2019-10-26 02:41:33 -07:00
Andreas Müller
3245b8d264
libsigc++-3: initial add 3.0.0
...
It can be installed parallel with libsigc++-2-0
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com >
Signed-off-by: Khem Raj <raj.khem@gmail.com >
2019-10-26 02:41:33 -07:00
Andreas Müller
64a18e7e05
glibmm: upgrade 2.60.0 -> 2.62.0
...
This version corresponds to glib-2.0 2.62.1 in oe-core master
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com >
Signed-off-by: Khem Raj <raj.khem@gmail.com >
2019-10-26 02:41:33 -07:00
Andreas Müller
ae9f2ba86d
geany-plugins: upgrade 1.34 -> 1.36
...
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com >
Signed-off-by: Khem Raj <raj.khem@gmail.com >
2019-10-25 10:42:44 -07:00
Andreas Müller
88200e48d9
geany: upgrade 1.34.1 -> 1.36
...
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com >
Signed-off-by: Khem Raj <raj.khem@gmail.com >
2019-10-25 10:42:44 -07:00
Andreas Müller
c6817467a8
gtkmm3: upgrade 3.24.1 -> 3.24.2
...
This is a bugfix release - most notable memory leaks.
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com >
Signed-off-by: Khem Raj <raj.khem@gmail.com >
2019-10-25 10:42:44 -07:00
Khem Raj
d06f1eeb34
libiio: Inherit distutils3-base for packaging python files
...
Signed-off-by: Khem Raj <raj.khem@gmail.com >
2019-10-25 10:34:36 -07:00
David Roman
95d95dcb10
nlohmann-json: upgrade 3.3.0 -> 3.7.0
2019-10-25 10:29:52 -07:00
Zheng Ruoqin
7907ff0882
multipath-tools: upgrade 0.8.2 -> 0.8.3
...
Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com >
Signed-off-by: Khem Raj <raj.khem@gmail.com >
2019-10-25 10:29:51 -07:00
Zheng Ruoqin
cf08682df4
hwdata: upgrade 327 -> 328
...
Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com >
Signed-off-by: Khem Raj <raj.khem@gmail.com >
2019-10-25 10:29:51 -07:00
Christophe PRIOUZEAU
a0f9c4bc47
testfloat: Clarify BSD license variant
...
The License of testfloat is BSD-3-Clause.
Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com >
Signed-off-by: Khem Raj <raj.khem@gmail.com >
2019-10-25 10:29:51 -07:00
Christophe PRIOUZEAU
ea31743baa
passwdqc: Clarify BSD license variant
...
The License of passwdqc is BSD-1-Clause.
Signed-off-by: Khem Raj <raj.khem@gmail.com >
2019-10-25 10:29:51 -07:00
Christophe PRIOUZEAU
e796da8f1a
libvpx: Clarify BSD license variant
...
The License of libvpx is BSD-3-Clause.
Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com >
Signed-off-by: Khem Raj <raj.khem@gmail.com >
2019-10-25 10:29:51 -07:00
Christophe PRIOUZEAU
074c117cc0
wavpack: Clarify BSD license variant
...
The License of wavpack is BSD-3-Clause.
Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com >
Signed-off-by: Khem Raj <raj.khem@gmail.com >
2019-10-25 10:29:51 -07:00
Christophe PRIOUZEAU
2edc085dab
opus-tools: Clarify BSD license variant
...
The License of opus-tools is BSD-2-Clause.
Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com >
Signed-off-by: Khem Raj <raj.khem@gmail.com >
2019-10-25 10:29:51 -07:00
Christophe PRIOUZEAU
23af38bf58
libopus: Clarify BSD license variant
...
The License of libopus is BSD-3-Clause.
Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com >
Signed-off-by: Khem Raj <raj.khem@gmail.com >
2019-10-25 10:29:51 -07:00
Christophe PRIOUZEAU
1fbe612faa
scsirastools: Clarify BSD license variant
...
The License of scsirastools is BSD-3-Clause.
Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com >
Signed-off-by: Khem Raj <raj.khem@gmail.com >
2019-10-25 10:29:51 -07:00
Christophe PRIOUZEAU
4d7689a133
redis: Clarify BSD license variant
...
The License of redis is BSD-3-Clause.
Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com >
Signed-off-by: Khem Raj <raj.khem@gmail.com >
2019-10-25 10:29:51 -07:00
Christophe PRIOUZEAU
af15c04017
openwsman: Clarify BSD license variant
...
The License of openwsman is BSD-3-Clause.
Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com >
Signed-off-by: Khem Raj <raj.khem@gmail.com >
2019-10-25 10:29:51 -07:00
Christophe PRIOUZEAU
4faa3ef854
pmdk: Clarify BSD license variant
...
The License of pmdk is BSD-3-Clause.
Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com >
Signed-off-by: Khem Raj <raj.khem@gmail.com >
2019-10-25 10:29:51 -07:00
Christophe PRIOUZEAU
64a27ecc0d
liblogging: Clarify BSD license variant
...
The License of liblogging is BSD-2-Clause.
Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com >
Signed-off-by: Khem Raj <raj.khem@gmail.com >
2019-10-25 10:29:51 -07:00
Christophe PRIOUZEAU
bc8f116a85
hwloc: Clarify BSD license variant
...
The License of hwloc is BSD-3-Clause.
Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com >
Signed-off-by: Khem Raj <raj.khem@gmail.com >
2019-10-25 10:29:51 -07:00
Christophe PRIOUZEAU
64e2ba55d5
cmpi binding: Clarify BSD license variant
...
The License of cmpi binding is BSD-3-Clause.
Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com >
Signed-off-by: Khem Raj <raj.khem@gmail.com >
2019-10-25 10:29:51 -07:00
Christophe PRIOUZEAU
e023880905
yasm: Clarify BSD license variant
...
The License of yasm is MIT.
Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com >
Signed-off-by: Khem Raj <raj.khem@gmail.com >
2019-10-25 10:29:51 -07:00
Christophe PRIOUZEAU
392c33d6b7
mcpp: Clarify BSD license variant
...
The License of mcpp is BSD-2-Clause.
Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com >
Signed-off-by: Khem Raj <raj.khem@gmail.com >
2019-10-25 10:29:51 -07:00
Christophe PRIOUZEAU
4e3c6d9f57
cscope: Clarify BSD license variant
...
The License of cscope is BSD-3-Clause.
Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com >
Signed-off-by: Khem Raj <raj.khem@gmail.com >
2019-10-25 10:29:51 -07:00
Christophe PRIOUZEAU
f29988781f
postgresql: Clarify BSD license variant
...
The License of postgresql is BSD-0-Clause.
Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com >
Signed-off-by: Khem Raj <raj.khem@gmail.com >
2019-10-25 10:29:51 -07:00
Christophe PRIOUZEAU
91ebe6f2db
rfkill: Clarify BSD license variant
...
The License of rfkill is BSD-0-Clause.
Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com >
Signed-off-by: Khem Raj <raj.khem@gmail.com >
2019-10-25 10:29:51 -07:00
Christophe PRIOUZEAU
6489f71597
iperf3: Clarify BSD license variant
...
The License of iperf3 is BSD-3-Clause.
Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com >
Signed-off-by: Khem Raj <raj.khem@gmail.com >
2019-10-25 10:29:50 -07:00
Christophe PRIOUZEAU
d198a6a421
libnet: Clarify BSD license variant
...
The License of libnet is BSD-2-Clause.
Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com >
Signed-off-by: Khem Raj <raj.khem@gmail.com >
2019-10-25 10:29:50 -07:00