summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGyorgy Sarvari <skandigraun@gmail.com>2026-02-08 21:03:43 +0100
committerKhem Raj <raj.khem@gmail.com>2026-02-08 20:41:53 -0800
commitbdf3e0387e650327b49168345264ff65a834cbee (patch)
treee0febf366b337b82e94bafa1078baf077bb91d92
parente94e5ec1ee8ce997051bbff7ab425bdb85d2f8e7 (diff)
downloadmeta-openembedded-bdf3e0387e650327b49168345264ff65a834cbee.tar.gz
gnome-commander: upgrade 1.16.1 -> 1.16.2
Drop patch that's included in this release. Changes: - Fix double g_error_free call in remote_close_callback - Fix build with taglib 2.0 - Set project gnu++11 c++ language version explicitely Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-gnome/recipes-gnome/gnome-commander/gnome-commander/0001-Build-fix-needed-with-taglib-2.0.patch37
-rw-r--r--meta-gnome/recipes-gnome/gnome-commander/gnome-commander_1.16.2.bb (renamed from meta-gnome/recipes-gnome/gnome-commander/gnome-commander_1.16.1.bb)3
2 files changed, 1 insertions, 39 deletions
diff --git a/meta-gnome/recipes-gnome/gnome-commander/gnome-commander/0001-Build-fix-needed-with-taglib-2.0.patch b/meta-gnome/recipes-gnome/gnome-commander/gnome-commander/0001-Build-fix-needed-with-taglib-2.0.patch
deleted file mode 100644
index 8f6920c2cc..0000000000
--- a/meta-gnome/recipes-gnome/gnome-commander/gnome-commander/0001-Build-fix-needed-with-taglib-2.0.patch
+++ /dev/null
@@ -1,37 +0,0 @@
1From dc3aa0ff5a41114b17816f1f36f6bb5631c6ab5c Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Thu, 7 Mar 2024 17:17:29 -0800
4Subject: [PATCH] Build fix needed with taglib 2.0
5
6Fixes
7| ../gnome-commander-1.16.1/src/tags/gnome-cmd-tags-taglib.cc:153:29: error: no member named 'sampleWidth' in 'TagLib::FLAC::Properties'
8| 153 | if (flacProperties->sampleWidth())
9| | ~~~~~~~~~~~~~~ ^
10| ../gnome-commander-1.16.1/src/tags/gnome-cmd-tags-taglib.cc:154:67: error: no member named 'sampleWidth' in 'TagLib::FLAC::Properties'
11| 154 | cout << "Audio.FLAC.SampleWidth " << flacProperties->sampleWidth()<< endl;
12| | ~~~~~~~~~~~~~~ ^
13
14Upstream-Status: Pending
15Signed-off-by: Khem Raj <raj.khem@gmail.com>
16---
17 src/tags/gnome-cmd-tags-taglib.cc | 4 ++--
18 1 file changed, 2 insertions(+), 2 deletions(-)
19
20diff --git a/src/tags/gnome-cmd-tags-taglib.cc b/src/tags/gnome-cmd-tags-taglib.cc
21index 9e65836..573f5eb 100644
22--- a/src/tags/gnome-cmd-tags-taglib.cc
23+++ b/src/tags/gnome-cmd-tags-taglib.cc
24@@ -150,8 +150,8 @@ bool getAudioProperties(GnomeCmdFileMetadata &metadata, const TagLib::AudioPrope
25 if (flacProperties)
26 {
27 metadata.add(TAG_AUDIO_CODEC,"FLAC");
28- if (flacProperties->sampleWidth())
29- cout << "Audio.FLAC.SampleWidth " << flacProperties->sampleWidth()<< endl;
30+ if (flacProperties->bitsPerSample())
31+ cout << "Audio.FLAC.BitsPerSample " << flacProperties->bitsPerSample()<< endl;
32
33 return true;
34 }
35--
362.44.0
37
diff --git a/meta-gnome/recipes-gnome/gnome-commander/gnome-commander_1.16.1.bb b/meta-gnome/recipes-gnome/gnome-commander/gnome-commander_1.16.2.bb
index d96371de3c..012f50d85e 100644
--- a/meta-gnome/recipes-gnome/gnome-commander/gnome-commander_1.16.1.bb
+++ b/meta-gnome/recipes-gnome/gnome-commander/gnome-commander_1.16.2.bb
@@ -16,8 +16,7 @@ ANY_OF_DISTRO_FEATURES = "${GTK2DISTROFEATURES}"
16GIR_MESON_ENABLE_FLAG = 'enabled' 16GIR_MESON_ENABLE_FLAG = 'enabled'
17GIR_MESON_DISABLE_FLAG = 'disabled' 17GIR_MESON_DISABLE_FLAG = 'disabled'
18 18
19SRC_URI += "file://0001-Build-fix-needed-with-taglib-2.0.patch" 19SRC_URI[archive.sha256sum] = "7cf5d56c77a95d828f25407294312abaae20dc6b556ceafd9424dbfe209e5ed3"
20SRC_URI[archive.sha256sum] = "3f1d00c4a650fe7902167648286b32c9ca4ef86e31a5d8ccca0139f12d10d0b3"
21 20
22PACKAGECONFIG ??= "exiv2 taglib libgsf poppler" 21PACKAGECONFIG ??= "exiv2 taglib libgsf poppler"
23PACKAGECONFIG[exiv2] = "-Dexiv2=enabled,-Dexiv2=disabled,exiv2" 22PACKAGECONFIG[exiv2] = "-Dexiv2=enabled,-Dexiv2=disabled,exiv2"