Hello community,

here is the log from the commit of package taglib for openSUSE:Factory checked 
in at 2014-05-18 06:50:05
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/taglib (Old)
 and      /work/SRC/openSUSE:Factory/.taglib.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "taglib"

Changes:
--------
--- /work/SRC/openSUSE:Factory/taglib/taglib.changes    2013-10-14 
13:06:54.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.taglib.new/taglib.changes       2014-05-18 
06:50:13.000000000 +0200
@@ -1,0 +2,11 @@
+Fri May 16 10:40:52 CEST 2014 - [email protected]
+
+- BuildRequire cmake >= 2.8
+
+-------------------------------------------------------------------
+Tue Apr 15 14:56:26 UTC 2014 - [email protected]
+
+- Fix build error in 11.4
+  taglib-1.9.1.uint.patch
+
+-------------------------------------------------------------------

New:
----
  taglib-1.9.1.uint.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ taglib.spec ++++++
--- /var/tmp/diff_new_pack.5x167O/_old  2014-05-18 06:50:14.000000000 +0200
+++ /var/tmp/diff_new_pack.5x167O/_new  2014-05-18 06:50:14.000000000 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package taglib
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -29,8 +29,10 @@
 Patch1:         taglib-1.7.2-doxygen.patch
 # Get example executables to build without rpath
 Patch3:         taglib-1.8-strip-rpath.patch
+# Fix build error with 11.4
+Patch4:         taglib-1.9.1.uint.patch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  cmake
+BuildRequires:  cmake >= 2.8
 BuildRequires:  doxygen
 BuildRequires:  fdupes
 BuildRequires:  gcc-c++
@@ -102,6 +104,7 @@
 %setup -q
 %patch1 -p1
 %patch3
+%patch4 -p1
 
 %build
 mkdir build

++++++ taglib-1.9.1.uint.patch ++++++
---
 tests/test_info.cpp |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

Index: taglib-1.9.1/tests/test_info.cpp
===================================================================
--- taglib-1.9.1.orig/tests/test_info.cpp
+++ taglib-1.9.1/tests/test_info.cpp
@@ -34,14 +34,14 @@ public:
   {
     RIFF::Info::Tag tag;
 
-    CPPUNIT_ASSERT_EQUAL((uint)0, tag.track());
+    CPPUNIT_ASSERT_EQUAL((TagLib::uint)0, tag.track());
     tag.setTrack(1234);
-    CPPUNIT_ASSERT_EQUAL((uint)1234, tag.track());
+    CPPUNIT_ASSERT_EQUAL((TagLib::uint)1234, tag.track());
     CPPUNIT_ASSERT_EQUAL(String("1234"), tag.fieldText("IPRT"));
 
-    CPPUNIT_ASSERT_EQUAL((uint)0, tag.year());
+    CPPUNIT_ASSERT_EQUAL((TagLib::uint)0, tag.year());
     tag.setYear(1234);
-    CPPUNIT_ASSERT_EQUAL((uint)1234, tag.year());
+    CPPUNIT_ASSERT_EQUAL((TagLib::uint)1234, tag.year());
     CPPUNIT_ASSERT_EQUAL(String("1234"), tag.fieldText("ICRD"));
   }
 };
-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to