Hello community,

here is the log from the commit of package glyr for openSUSE:Factory checked in 
at 2013-12-09 16:54:22
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
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        2013-03-04 
17:27:37.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.glyr.new/glyr.changes   2013-12-09 
16:54:23.000000000 +0100
@@ -1,0 +2,31 @@
+Sat Dec  7 20:09:45 UTC 2013 - [email protected]
+
+- Drop glyr-fix_lyricswiki.patch (fixed upstream -- very quickly;
+  no version change).
+
+-------------------------------------------------------------------
+Sat Dec  7 19:15:47 UTC 2013 - [email protected]
+
+- Add glyr-fix_lyricswiki.patch: fix lyrics parsing
+  (gh#sahib/glyr#40).
+
+-------------------------------------------------------------------
+Sat Dec  7 09:35:25 UTC 2013 - [email protected]
+
+- Update to 1.0.2.
+  * Fixed albumlist; Fixed partly broken lastfm.
+  * Fixed tracklist.
+  * Base implementation for the Vagalume lyrics provider.
+  * lyrics-vagalume: Fixed tabs, small memleak, added memset.
+  * Fixed cover:musicbrainz provider.
+  * Fix empty lyrics from magistrix.
+  * Updated htbackdrops uri.
+  * Removed lyrics:metrolyrics provider (broken for eternity).
+  * lyrics-vagalume: Ignore approximate results.
+  * Fixed lyricswiki provider.
+- BuildRequires: pkgconfig(glib-2.0) >= 2.32.
+- Update "glyr-date-n-time" and "glyr-optflags" patches.
+- Correct source URL.
+- Add more docs to the devel package.
+
+-------------------------------------------------------------------

Old:
----
  glyr-0.9.9-optflags.patch
  glyr-1.0.0-date-n-time.patch
  glyr-1.0.0.tar.bz2

New:
----
  1.0.2.tar.gz
  glyr-date-n-time.patch
  glyr-optflags.patch

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

Other differences:
------------------
++++++ glyr.spec ++++++
--- /var/tmp/diff_new_pack.GmbN6f/_old  2013-12-09 16:54:24.000000000 +0100
+++ /var/tmp/diff_new_pack.GmbN6f/_new  2013-12-09 16:54:24.000000000 +0100
@@ -19,21 +19,22 @@
 %define major   1
 
 Name:           glyr
-Version:        1.0.0
+Version:        1.0.2
 Release:        0
 Summary:        Searcheninge for Musicrelated Metadata
 License:        GPL-3.0+
 Group:          Productivity/Networking/Web/Utilities
 Url:            https://github.com/sahib/glyr
-Source0:        
https://github.com/downloads/sahib/%{name}/%{name}-%{version}.tar.bz2
-# PATCH-FIX-OPENSUSE glyr-1.0.0-date-n-time.patch [email protected] -- 
remove __DATE and __TIME__ that causes the package to rebuild when not needed
-Patch0:         glyr-1.0.0-date-n-time.patch
-# PATCH-FIX-OPENSUSE glyr-0.9.9-optflags.patch [email protected] -- use 
default openSUSE optimization flags.
-Patch1:         glyr-0.9.9-optflags.patch
+Source0:        https://github.com/sahib/%{name}/archive/%{version}.tar.gz
+Source100:      baselibs.conf
+# PATCH-FIX-OPENSUSE glyr-date-n-time.patch [email protected] -- remove 
__DATE and __TIME__ that causes the package to rebuild when not needed
+Patch0:         glyr-date-n-time.patch
+# PATCH-FIX-OPENSUSE glyr-optflags.patch [email protected] -- use default 
openSUSE optimization flags.
+Patch1:         glyr-optflags.patch
 # PATCH-FIX-OPENSUSE glyr-pkgconfig.patch [email protected] -- do not 
inject bogus dependencies into other packages.
 Patch2:         glyr-pkgconfig.patch
 BuildRequires:  cmake
-BuildRequires:  pkgconfig(glib-2.0)
+BuildRequires:  pkgconfig(glib-2.0) >= 2.32
 BuildRequires:  pkgconfig(libcurl)
 BuildRequires:  pkgconfig(sqlite3)
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
@@ -132,10 +133,11 @@
 * similar songs
 
 %prep
-%setup -qn %{name}
+%setup -q
 %patch0
-%patch1
+%patch1 -p1
 %patch2
+
 %build
 mkdir build
 cd build
@@ -168,6 +170,7 @@
 
 %files -n libglyr-devel
 %defattr(-,root,root,-)
+%doc AUTHORS CHANGELOG COPYING README.textile state_of_providers.txt
 %doc src/examples
 %{_includedir}/%{name}
 %{_libdir}/*.so

++++++ glyr-date-n-time.patch ++++++
Description: Remove __DATE and __TIME__ that causes the package to rebuild when 
not needed.
Author: Kyrill Detinov <[email protected]>
Index: lib/glyr.c
===================================================================
--- lib/glyr.c.orig
+++ lib/glyr.c
@@ -246,7 +246,7 @@ GlyrMemCache * glyr_cache_copy (GlyrMemC
 __attribute__ ( (visibility ("default") ) )
 const char * glyr_version (void)
 {
-    return "Version 
"GLYR_VERSION_MAJOR"."GLYR_VERSION_MINOR"."GLYR_VERSION_MICRO" 
("GLYR_VERSION_NAME") of ["__DATE__"] compiled at ["__TIME__"]";
+    return "Version 
"GLYR_VERSION_MAJOR"."GLYR_VERSION_MINOR"."GLYR_VERSION_MICRO" 
("GLYR_VERSION_NAME") compiled for openSUSE";
 }
 
 /////////////////////////////////
++++++ glyr-optflags.patch ++++++
Index: glyr-1.0.2/CMakeLists.txt
===================================================================
--- glyr-1.0.2.orig/CMakeLists.txt
+++ glyr-1.0.2/CMakeLists.txt
@@ -62,8 +62,8 @@ IF(CMAKE_COMPILER_IS_GNUCC)
 ENDIF()
 
 SET(COMMON_FLAGS "${GCC_ONLY_FLAGS} -Wall -Wextra -Wstrict-prototypes -W 
-Wno-unused-parameter -Wno-strict-prototypes -fvisibility=hidden")
-SET(CMAKE_C_FLAGS_RELEASE "${COMMON_FLAGS} ${CMAKE_C_FLAGS} -Os 
${GCC_ONLY_OPT}")
-SET(CMAKE_C_FLAGS_DEBUG   "${COMMON_FLAGS} ${CMAKE_C_FLAGS} -g3")
+#SET(CMAKE_C_FLAGS_RELEASE "${COMMON_FLAGS} ${CMAKE_C_FLAGS} -Os 
${GCC_ONLY_OPT}")
+#SET(CMAKE_C_FLAGS_DEBUG   "${COMMON_FLAGS} ${CMAKE_C_FLAGS} -g3")
 SET(CMAKE_C_FLAGS "${COMMON_FLAGS} ${CMAKE_C_FLAGS}")
 # ------------------------------------------------
 
-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to