Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package gnome-commander for openSUSE:Factory checked in at 2024-02-28 19:51:12 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/gnome-commander (Old) and /work/SRC/openSUSE:Factory/.gnome-commander.new.1770 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gnome-commander" Wed Feb 28 19:51:12 2024 rev:15 rq:1153011 version:1.16.1 Changes: -------- --- /work/SRC/openSUSE:Factory/gnome-commander/gnome-commander.changes 2023-07-11 15:57:37.801285405 +0200 +++ /work/SRC/openSUSE:Factory/.gnome-commander.new.1770/gnome-commander.changes 2024-02-28 19:51:13.298713313 +0100 @@ -1,0 +2,6 @@ +Wed Feb 28 18:27:52 UTC 2024 - Dominique Leuenberger <dims...@opensuse.org> + +- Add gnome-commander-taglib-2.0.patch: Fix build against taglib + 2.0. + +------------------------------------------------------------------- New: ---- gnome-commander-taglib-2.0.patch BETA DEBUG BEGIN: New: - Add gnome-commander-taglib-2.0.patch: Fix build against taglib 2.0. BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gnome-commander.spec ++++++ --- /var/tmp/diff_new_pack.58X1hq/_old 2024-02-28 19:51:13.818732089 +0100 +++ /var/tmp/diff_new_pack.58X1hq/_new 2024-02-28 19:51:13.818732089 +0100 @@ -1,7 +1,7 @@ # # spec file for package gnome-commander # -# Copyright (c) 2023 SUSE LLC +# Copyright (c) 2024 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -24,6 +24,8 @@ Group: Productivity/File utilities URL: http://gcmd.github.io/ Source: https://download.gnome.org/sources/gnome-commander/1.16/%{name}-%{version}.tar.xz +# PATCH-FIX-UPSTREAM gnome-commander-taglib-2.0.patch -- Fix build against taglib 2.0 +Patch0: gnome-commander-taglib-2.0.patch %if 0%{?suse_version} < 1550 BuildRequires: gcc11 ++++++ gnome-commander-taglib-2.0.patch ++++++ diff --git a/src/tags/gnome-cmd-tags-taglib.cc b/src/tags/gnome-cmd-tags-taglib.cc index 9e65836e..1abde3ba 100644 --- a/src/tags/gnome-cmd-tags-taglib.cc +++ b/src/tags/gnome-cmd-tags-taglib.cc @@ -150,8 +150,8 @@ bool getAudioProperties(GnomeCmdFileMetadata &metadata, const TagLib::AudioPrope if (flacProperties) { metadata.add(TAG_AUDIO_CODEC,"FLAC"); - if (flacProperties->sampleWidth()) - cout << "Audio.FLAC.SampleWidth " << flacProperties->sampleWidth()<< endl; + if (flacProperties->bitsPerSample()) + cout << "Audio.FLAC.SampleWidth " << flacProperties->bitsPerSample()<< endl; return true; }