[oe] [meta-multimedia][PATCH] sox: Enable -D_FILE_OFFSET_BITS=64 and depend on libtool

2022-09-12 Thread Khem Raj
We use 'dyn' for plugins and the logic depends on libltdl support
therefore add the missing depenendency

Fixes
| configure: error: not using libltdl; cannot load alsa dynamically
| See `config.log' for more details

Signed-off-by: Khem Raj 
---
 meta-multimedia/recipes-multimedia/sox/sox_14.4.2.bb | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/meta-multimedia/recipes-multimedia/sox/sox_14.4.2.bb 
b/meta-multimedia/recipes-multimedia/sox/sox_14.4.2.bb
index 0791c85f74..ace8743f3a 100644
--- a/meta-multimedia/recipes-multimedia/sox/sox_14.4.2.bb
+++ b/meta-multimedia/recipes-multimedia/sox/sox_14.4.2.bb
@@ -4,7 +4,7 @@ and can apply different effects and filters to the audio data."
 HOMEPAGE = "http://sox.sourceforge.net;
 SECTION = "audio"
 
-DEPENDS = "libpng ffmpeg libsndfile1"
+DEPENDS = "libpng ffmpeg libsndfile1 libtool"
 
 PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'alsa pulseaudio', 
d)} \
magic \
@@ -36,4 +36,7 @@ SRC_URI[sha256sum] = 
"b45f598643ffbd8e363ff24d61166ccec4836fea6d381b8df53e3b
 
 inherit autotools pkgconfig
 
+# Enable largefile support
+CFLAGS += "-D_FILE_OFFSET_BITS=64"
+
 EXCLUDE_FROM_WORLD = "${@bb.utils.contains("LICENSE_FLAGS_ACCEPTED", 
"commercial", "0", "1", d)}"
-- 
2.37.3


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#98754): 
https://lists.openembedded.org/g/openembedded-devel/message/98754
Mute This Topic: https://lists.openembedded.org/mt/93645402/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[oe] [PATCH] octave: upgrade 7.1.0 -> 7.2.0

2022-09-12 Thread Andreas Müller
* Fixes build with glibc 2.36 [1]
* Changelog found at [2]

[1] https://savannah.gnu.org/bugs/?62750
[2] https://octave.org/news/release/2022/07/28/octave-7.2.0-released.html

Signed-off-by: Andreas Müller 
---
 .../octave/{octave_7.1.0.bb => octave_7.2.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-oe/recipes-devtools/octave/{octave_7.1.0.bb => octave_7.2.0.bb} 
(93%)

diff --git a/meta-oe/recipes-devtools/octave/octave_7.1.0.bb 
b/meta-oe/recipes-devtools/octave/octave_7.2.0.bb
similarity index 93%
rename from meta-oe/recipes-devtools/octave/octave_7.1.0.bb
rename to meta-oe/recipes-devtools/octave/octave_7.2.0.bb
index c9982a7bb..eb96a624f 100644
--- a/meta-oe/recipes-devtools/octave/octave_7.1.0.bb
+++ b/meta-oe/recipes-devtools/octave/octave_7.2.0.bb
@@ -32,7 +32,7 @@ SRC_URI = " \
 ${GNU_MIRROR}/octave/${BPN}-${PV}.tar.gz \
 file://fix-blas-library-integer-size.patch \
 "
-SRC_URI[sha256sum] = 
"d4a9d81f3f67b4a6e07cb7a80dcb10ad5e9176fcc30762c70a81580a64b8b0b6"
+SRC_URI[sha256sum] = 
"b12cb652587d31c5c382b39ed73463c22a5259ecb2fa6b323a27da409222dacc"
 
 # Note: Qt5Help is required for gui -> qttools(-native) must be build with
 # clang in PACKAGECONFIG
-- 
2.35.3


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#98753): 
https://lists.openembedded.org/g/openembedded-devel/message/98753
Mute This Topic: https://lists.openembedded.org/mt/93642992/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[oe] [meta-oe][PATCH] fwupd: Fix tostring() call to not have xml_declaration param

2022-09-12 Thread Khem Raj
Signed-off-by: Khem Raj 
---
 ...nsupported-xml_declaration-parameter.patch | 33 +++
 meta-oe/recipes-bsp/fwupd/fwupd_1.8.4.bb  |  1 +
 2 files changed, 34 insertions(+)
 create mode 100644 
meta-oe/recipes-bsp/fwupd/fwupd/0001-fwupd-Drop-unsupported-xml_declaration-parameter.patch

diff --git 
a/meta-oe/recipes-bsp/fwupd/fwupd/0001-fwupd-Drop-unsupported-xml_declaration-parameter.patch
 
b/meta-oe/recipes-bsp/fwupd/fwupd/0001-fwupd-Drop-unsupported-xml_declaration-parameter.patch
new file mode 100644
index 00..8fd0234695
--- /dev/null
+++ 
b/meta-oe/recipes-bsp/fwupd/fwupd/0001-fwupd-Drop-unsupported-xml_declaration-parameter.patch
@@ -0,0 +1,33 @@
+From 88a97229350010d73cee0ff38da0dbbe0a449dd2 Mon Sep 17 00:00:00 2001
+From: Khem Raj 
+Date: Mon, 12 Sep 2022 11:20:59 -0700
+Subject: [PATCH] fwupd: Drop unsupported xml_declaration parameter
+
+This is not needed on Python3.7
+
+Fixes
+wupd-1.8.4/contrib/generate-gresource-xml.py", line 26, in 
+f.write(ET.tostring(root, "utf-8", xml_declaration=True))
+TypeError: tostring() got an unexpected keyword argument 'xml_declaration'
+
+Upstream-Status: Submitted [https://github.com/fwupd/fwupd/pull/5025]
+Signed-off-by: Khem Raj 
+---
+ contrib/generate-gresource-xml.py | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/contrib/generate-gresource-xml.py 
b/contrib/generate-gresource-xml.py
+index 235a7700..4429f988 100755
+--- a/contrib/generate-gresource-xml.py
 b/contrib/generate-gresource-xml.py
+@@ -23,6 +23,6 @@ for fn in sorted(sys.argv[2:]):
+ n_file.set("preprocess", "xml-stripblanks")
+ n_file.set("alias", os.path.basename(fn))
+ with open(sys.argv[1], "wb") as f:
+-f.write(ET.tostring(root, "utf-8", xml_declaration=True))
++f.write(ET.tostring(root, "utf-8"))
+ 
+ sys.exit(0)
+-- 
+2.37.3
+
diff --git a/meta-oe/recipes-bsp/fwupd/fwupd_1.8.4.bb 
b/meta-oe/recipes-bsp/fwupd/fwupd_1.8.4.bb
index 4258652744..3b5aa3483b 100644
--- a/meta-oe/recipes-bsp/fwupd/fwupd_1.8.4.bb
+++ b/meta-oe/recipes-bsp/fwupd/fwupd_1.8.4.bb
@@ -5,6 +5,7 @@ LIC_FILES_CHKSUM = 
"file://COPYING;md5=4fbd65380cdd255951079008b364516c"
 DEPENDS = "glib-2.0 libxmlb json-glib sqlite3 libjcat gcab vala-native"
 
 SRC_URI = 
"https://github.com/${BPN}/${BPN}/releases/download/${PV}/${BP}.tar.xz \
+   file://0001-fwupd-Drop-unsupported-xml_declaration-parameter.patch \
file://run-ptest"
 SRC_URI[sha256sum] = 
"adfa07434cdc29ec41c40fef460e8d970963fe0c7e849dec7f3932adb161f886"
 
-- 
2.37.3


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#98752): 
https://lists.openembedded.org/g/openembedded-devel/message/98752
Mute This Topic: https://lists.openembedded.org/mt/93639254/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [oe] [meta-oe][PATCH] sysbench: upgrade to 1.0.20

2022-09-12 Thread venkatakoteswararao talluri
Hello Khem Raj,
Can you please help to provide feedback on this?


Thanks,
Venkata Talluri

On Mon, Sep 12, 2022 at 12:20 PM venkatakoteswararao talluri via
lists.openembedded.org 
wrote:

> I've followed below link and updated sysbench_1.0.20.bb file on QCS610
>
> https://www.mail-archive.com/openembedded-devel@lists.openembedded.org/msg77365.html
>
> On Mon, Sep 12, 2022 at 12:19 PM venkatakoteswararao talluri <
> venkattalluri5...@gmail.com> wrote:
>
>> Hi All,
>>
>> I'm trying to build sysbench_1.0.20.bb on QCS610 codebase but I'm
>> getting following error so can you please help me to solve this issue.
>> Image:qti-multimedia-image
>> Target:qcs610-odk-64
>>
>> Error log:
>>
>> NOTE: Resolving any missing task queue dependencies
>> ERROR: Nothing RPROVIDES 'luajit' (but
>> /var/lib/jenkins/workspace/QCS610_OpenQ_Linux_1.x_Internal_/qcs610-le-1-0_ap_standard_oem/apps_proc/poky/meta-qti-bsp/recipes-products/images/
>> qti-multimedia-image.bb RDEPENDS on or otherwise requires it)
>> luajit was skipped: incompatible with host aarch64-oe-linux (not in
>> COMPATIBLE_HOST)
>> NOTE: Runtime target 'luajit' is unbuildable, removing...
>> Missing or unbuildable dependency chain was: ['luajit']
>> ERROR: Required build target 'qti-multimedia-image' has no buildable
>> providers.
>> Missing or unbuildable dependency chain was: ['qti-multimedia-image',
>> 'luajit']
>>
>>
>> Please find the attached sysbench_1.0.20.bb file.
>>
>>
>> Thanks,
>>
>> Venkata Talluri
>>
>
> --
> Venkata Talluri
> 
>
>

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#98751): 
https://lists.openembedded.org/g/openembedded-devel/message/98751
Mute This Topic: https://lists.openembedded.org/mt/93627594/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [oe] [meta-oe][PATCH] sysbench: upgrade to 1.0.20

2022-09-12 Thread venkatakoteswararao talluri
I've followed below link and updated sysbench_1.0.20.bb file on QCS610
https://www.mail-archive.com/openembedded-devel@lists.openembedded.org/msg77365.html

On Mon, Sep 12, 2022 at 12:19 PM venkatakoteswararao talluri <
venkattalluri5...@gmail.com> wrote:

> Hi All,
>
> I'm trying to build sysbench_1.0.20.bb on QCS610 codebase but I'm getting
> following error so can you please help me to solve this issue.
> Image:qti-multimedia-image
> Target:qcs610-odk-64
>
> Error log:
>
> NOTE: Resolving any missing task queue dependencies
> ERROR: Nothing RPROVIDES 'luajit' (but
> /var/lib/jenkins/workspace/QCS610_OpenQ_Linux_1.x_Internal_/qcs610-le-1-0_ap_standard_oem/apps_proc/poky/meta-qti-bsp/recipes-products/images/
> qti-multimedia-image.bb RDEPENDS on or otherwise requires it)
> luajit was skipped: incompatible with host aarch64-oe-linux (not in
> COMPATIBLE_HOST)
> NOTE: Runtime target 'luajit' is unbuildable, removing...
> Missing or unbuildable dependency chain was: ['luajit']
> ERROR: Required build target 'qti-multimedia-image' has no buildable
> providers.
> Missing or unbuildable dependency chain was: ['qti-multimedia-image',
> 'luajit']
>
>
> Please find the attached sysbench_1.0.20.bb file.
>
>
> Thanks,
>
> Venkata Talluri
>

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#98750): 
https://lists.openembedded.org/g/openembedded-devel/message/98750
Mute This Topic: https://lists.openembedded.org/mt/93627594/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [oe] [meta-oe][PATCH] sysbench: upgrade to 1.0.20

2022-09-12 Thread venkatakoteswararao talluri
Hi All,

I'm trying to build sysbench_1.0.20.bb on QCS610 codebase but I'm getting
following error so can you please help me to solve this issue.
Image:qti-multimedia-image
Target:qcs610-odk-64

Error log:

NOTE: Resolving any missing task queue dependencies
ERROR: Nothing RPROVIDES 'luajit' (but
/var/lib/jenkins/workspace/QCS610_OpenQ_Linux_1.x_Internal_/qcs610-le-1-0_ap_standard_oem/apps_proc/poky/meta-qti-bsp/recipes-products/images/
qti-multimedia-image.bb RDEPENDS on or otherwise requires it)
luajit was skipped: incompatible with host aarch64-oe-linux (not in
COMPATIBLE_HOST)
NOTE: Runtime target 'luajit' is unbuildable, removing...
Missing or unbuildable dependency chain was: ['luajit']
ERROR: Required build target 'qti-multimedia-image' has no buildable
providers.
Missing or unbuildable dependency chain was: ['qti-multimedia-image',
'luajit']


Please find the attached sysbench_1.0.20.bb file.


Thanks,

Venkata Talluri


sysbench_1.0.20.bb
Description: Binary data

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#98749): 
https://lists.openembedded.org/g/openembedded-devel/message/98749
Mute This Topic: https://lists.openembedded.org/mt/93627594/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[oe] [meta-oe][PATCHv2] lvm2: use bfd even with ld-is-gold in DISTRO_FEATURES

2022-09-12 Thread Martin Jansa
Signed-off-by: Martin Jansa 
---
 meta-oe/recipes-support/lvm2/lvm2.inc | 4 
 1 file changed, 4 insertions(+)

diff --git a/meta-oe/recipes-support/lvm2/lvm2.inc 
b/meta-oe/recipes-support/lvm2/lvm2.inc
index 34e57ec7a5..277e76f0d2 100644
--- a/meta-oe/recipes-support/lvm2/lvm2.inc
+++ b/meta-oe/recipes-support/lvm2/lvm2.inc
@@ -57,3 +57,7 @@ EXTRA_OECONF = "--with-user= \
 --with-thin-repair=${sbindir}/thin_repair \
 --with-thin-restore=${sbindir}/thin_restore \
 "
+
+# gold doesn't like multiple dm_bitset_parse_list definitions in 
libdm/.exported_symbols.DM_1_02_138 and libdm/.exported_symbols.DM_1_02_129
+# after it was uncommented in the later in 2.03.12 with 
https://github.com/lvmteam/lvm2/commit/60eb608d66c2056a78e81f27db3da14139d9faab
+LDFLAGS:append = "${@bb.utils.contains('DISTRO_FEATURES', 'ld-is-gold', " 
-fuse-ld=bfd", '', d)}"
-- 
2.37.3


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#98748): 
https://lists.openembedded.org/g/openembedded-devel/message/98748
Mute This Topic: https://lists.openembedded.org/mt/93627339/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-