Hello community,

here is the log from the commit of package glyr for openSUSE:Factory checked in 
at 2015-02-16 22:12:17
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/glyr (Old)
 and      /work/SRC/openSUSE:Factory/.glyr.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "glyr"

Changes:
--------
--- /work/SRC/openSUSE:Factory/glyr/glyr.changes        2015-01-12 
09:50:10.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.glyr.new/glyr.changes   2015-02-16 
22:12:18.000000000 +0100
@@ -1,0 +2,8 @@
+Sat Feb 14 08:46:49 UTC 2015 - [email protected]
+
+- Update to 1.0.8.
+  * Fix of lyrix.at.
+- Update glyr-version.patch.
+- Use %cmake and %cmake_install macros.
+
+-------------------------------------------------------------------

Old:
----
  1.0.7.tar.gz

New:
----
  1.0.8.tar.gz

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

Other differences:
------------------
++++++ glyr.spec ++++++
--- /var/tmp/diff_new_pack.xbe4Eb/_old  2015-02-16 22:12:19.000000000 +0100
+++ /var/tmp/diff_new_pack.xbe4Eb/_new  2015-02-16 22:12:19.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package glyr
 #
-# 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
@@ -19,7 +19,7 @@
 %define major   1
 
 Name:           glyr
-Version:        1.0.7
+Version:        1.0.8
 Release:        0
 Summary:        Searcheninge for Musicrelated Metadata
 License:        GPL-3.0+
@@ -144,20 +144,11 @@
 %patch3 -p1
 
 %build
-mkdir build
-cd build
-export CFLAGS="%{optflags} -D_GNU_SOURCE"
-export CXXFLAGS="%{optflags} -D_GNU_SOURCE"
-cmake .. \
-%if "%_lib" == "lib64"
-    -DLIB_SUFFIX="64" \
-%endif
-    -DCMAKE_INSTALL_PREFIX=%{_prefix}
+%cmake
 make %{?_smp_mflags} VERBOSE=1
 
 %install
-pushd build
-%make_install
+%cmake_install
 
 %post -n libglyr%{major} -p /sbin/ldconfig
 

++++++ 1.0.7.tar.gz -> 1.0.8.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/glyr-1.0.7/lib/intern/lyrics/lyrix_at.c 
new/glyr-1.0.8/lib/intern/lyrics/lyrix_at.c
--- old/glyr-1.0.7/lib/intern/lyrics/lyrix_at.c 2014-12-19 14:09:31.000000000 
+0100
+++ new/glyr-1.0.8/lib/intern/lyrics/lyrix_at.c 2015-01-19 00:47:10.000000000 
+0100
@@ -20,7 +20,7 @@
 #include "../../core.h"
 #include "../../stringlib.h"
 
-#define AT_URL 
"http://lyrix.at/lyrics-search/s-${artist},,${title},,any,1321,0.html";
+#define AT_URL 
"https://www.lyrix.at/lyrics-search/s-${artist},,${title},,any,1321,0.html";
 
 const char * lyrics_lyrixat_url (GlyrQuery * settings)
 {
@@ -31,7 +31,7 @@
 
 #define SEARCH_START_TAG "<!-- start of result item //-->"
 #define LYRIC_BEGIN "<div class='songtext' id='stextDIV'>"
-#define URL_TAG_BEGIN "<a href='/de"
+#define URL_TAG_BEGIN "<a href='/t/"
 #define URL_TAG_ENDIN "'>"
 #define TITLE_END "<"
 #define MAX_TRIES 5
@@ -95,7 +95,7 @@
                             gchar * url_part = copy_value (url_tag+strlen 
(URL_TAG_BEGIN),title_tag);
                             if (url_part != NULL)
                             {
-                                gchar * url = g_strdup_printf 
("http://lyrix.at/de%s",url_part);
+                                gchar * url = g_strdup_printf 
("https://www.lyrix.at/t/%s",url_part);
                                 parse_lyrics_page (url,&result_list,capo);
                                 g_free (url);
                                 g_free (url_part);

++++++ glyr-version.patch ++++++
--- /var/tmp/diff_new_pack.xbe4Eb/_old  2015-02-16 22:12:19.000000000 +0100
+++ /var/tmp/diff_new_pack.xbe4Eb/_new  2015-02-16 22:12:19.000000000 +0100
@@ -1,31 +1,31 @@
-Index: glyr-1.0.7/CMakeLists.txt
+Index: glyr-1.0.8/CMakeLists.txt
 ===================================================================
---- glyr-1.0.7.orig/CMakeLists.txt
-+++ glyr-1.0.7/CMakeLists.txt
+--- glyr-1.0.8.orig/CMakeLists.txt
++++ glyr-1.0.8/CMakeLists.txt
 @@ -38,7 +38,7 @@ ENDIF()
  # ------------------------------------------------
  SET(GLYR_VERSION_MAJOR "1")
  SET(GLYR_VERSION_MINOR "0")
 -SET(GLYR_VERSION_MICRO "6")
-+SET(GLYR_VERSION_MICRO "7")
++SET(GLYR_VERSION_MICRO "8")
  SET(GLYR_VERSION_NAME  "Raving Raven")
  # ------------------------------------------------
  
-Index: glyr-1.0.7/lib/config.h
+Index: glyr-1.0.8/lib/config.h
 ===================================================================
---- glyr-1.0.7.orig/lib/config.h
-+++ glyr-1.0.7/lib/config.h
+--- glyr-1.0.8.orig/lib/config.h
++++ glyr-1.0.8/lib/config.h
 @@ -12,11 +12,11 @@
  
  #define GLYR_VERSION_MAJOR "1"
  #define GLYR_VERSION_MINOR "0"
 -#define GLYR_VERSION_MICRO "6"
-+#define GLYR_VERSION_MICRO "7"
++#define GLYR_VERSION_MICRO "8"
  
  #define GLYR_VERSION_MAJOR_INT 1
  #define GLYR_VERSION_MINOR_INT 0
 -#define GLYR_VERSION_MICRO_INT 6
-+#define GLYR_VERSION_MICRO_INT 7
++#define GLYR_VERSION_MICRO_INT 8
  
  /**
   * GLYR_CHECK_VERSION:

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to