Hello community,

here is the log from the commit of package libdatrie for openSUSE:Factory 
checked in at 2015-09-09 20:19:57
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libdatrie (Old)
 and      /work/SRC/openSUSE:Factory/.libdatrie.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libdatrie"

Changes:
--------
--- /work/SRC/openSUSE:Factory/libdatrie/libdatrie.changes      2015-02-06 
22:36:05.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.libdatrie.new/libdatrie.changes 2015-09-09 
20:19:59.000000000 +0200
@@ -1,0 +2,20 @@
+Tue Aug 18 14:48:57 UTC 2015 - [email protected]
+
+- update to version 0.2.9
+  * Fix infinite loop on empty trie iteration.
+  * Document about alphabet size.
+  * Disable timestamp in Doxygen-generated doc.
+  * etc. see ChangeLog
+- remove libdatrie-doxygen-found-is-enough.patch in favour of
+  libdatrie-doxygen-version-check.patch
+
+-------------------------------------------------------------------
+Tue Aug 18 11:28:57 UTC 2015 - [email protected]
+
+- Add libdatrie-doxygen-found-is-enough.patch: when we find
+  doxygen, we assume it is new enough. The configure script uses
+  'expr 1.8.4 \< $DOXYGEN_VER', which returns false for 1.8.10.
+- For safeguard, we specify the minimal required version of
+  doxygen (1.8.4) in the buildrequirements.
+
+-------------------------------------------------------------------

Old:
----
  libdatrie-0.2.8.tar.xz

New:
----
  libdatrie-0.2.9.tar.xz
  libdatrie-doxygen-version-check.patch

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

Other differences:
------------------
++++++ libdatrie.spec ++++++
--- /var/tmp/diff_new_pack.lsYn7y/_old  2015-09-09 20:20:00.000000000 +0200
+++ /var/tmp/diff_new_pack.lsYn7y/_new  2015-09-09 20:20:00.000000000 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libdatrie
 #
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,15 +17,19 @@
 
 
 Name:           libdatrie
-Version:        0.2.8
+Version:        0.2.9
 Release:        0
 Summary:        Double-Array Trie Library
 License:        LGPL-2.1
 Group:          System/Libraries
 Url:            http://linux.thai.net/~thep/datrie/datrie.html
-Source:         
ftp://linux.thai.net/pub/ThaiLinux/software/libthai/%{name}-%{version}.tar.xz
+Source:         
http://linux.thai.net/pub/thailinux/software/libthai/%{name}-%{version}.tar.xz
 Source99:       baselibs.conf
+# sent upstream ([email protected])
+Patch0:         libdatrie-doxygen-version-check.patch
+BuildRequires:  autoconf-archive
 BuildRequires:  doxygen
+BuildRequires:  libtool
 BuildRequires:  pkg-config
 BuildRequires:  xz
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
@@ -55,8 +59,10 @@
 
 %prep
 %setup -q
+%patch0 -p1
 
 %build
+autoreconf -fiv
 %configure \
         --disable-static --with-pic \
         --with-html-docdir=%{_docdir}/libdatrie/html
@@ -79,8 +85,8 @@
 
 %files devel
 %defattr(-,root,root)
-%{_bindir}/trietool-0.2
-%doc %{_mandir}/man*/trietool-0.2.*
+%{_bindir}/trietool*
+%doc %{_mandir}/man*/trietool*.1.gz
 %{_includedir}/datrie/
 %{_libdir}/libdatrie.so
 %{_libdir}/pkgconfig/datrie-0.2.pc

++++++ libdatrie-0.2.8.tar.xz -> libdatrie-0.2.9.tar.xz ++++++
++++ 6053 lines of diff (skipped)

++++++ libdatrie-doxygen-version-check.patch ++++++
--- libdatrie-0.2.8/configure.ac        2014-01-10 05:20:37.000000000 +0100
+++ libdatrie-0.2.8/configure.ac        2015-08-18 16:42:15.274113614 +0200
@@ -112,12 +112,9 @@ if test "x$enable_doxygen_doc" = "xyes";
   else
     AC_MSG_CHECKING([doxygen >= $DOXYGEN_REQ_VER])
     DOXYGEN_VER=$($DOXYGEN --version)
-    if expr $DOXYGEN_VER \< $DOXYGEN_REQ_VER > /dev/null; then
-      AC_MSG_RESULT([$DOXYGEN_VER, no, documentation disabled])
-      enable_doxygen_doc="no"
-    else
-      AC_MSG_RESULT([$DOXYGEN_VER, yes])
-    fi
+    AX_COMPARE_VERSION([$DOXYGEN_VER],[ge],[DOXYGEN_REQ_VER], 
+                       [AC_MSG_RESULT([$DOXYGEN_VER, yes])], 
+                       [AC_MSG_RESULT([$DOXYGEN_VER, no, documentation 
disabled]); enable_doxygen_doc="no"])
   fi
 fi


Reply via email to