commit libmygpo-qt for openSUSE:Factory

2018-04-06 Thread root
Hello community,

here is the log from the commit of package libmygpo-qt for openSUSE:Factory 
checked in at 2018-04-06 17:41:56

Comparing /work/SRC/openSUSE:Factory/libmygpo-qt (Old)
 and  /work/SRC/openSUSE:Factory/.libmygpo-qt.new (New)


Package is "libmygpo-qt"

Fri Apr  6 17:41:56 2018 rev:15 rq:593219 version:1.1.0

Changes:

--- /work/SRC/openSUSE:Factory/libmygpo-qt/libmygpo-qt.changes  2018-02-28 
20:00:13.305413203 +0100
+++ /work/SRC/openSUSE:Factory/.libmygpo-qt.new/libmygpo-qt.changes 
2018-04-06 17:42:09.743495806 +0200
@@ -1,0 +2,8 @@
+Tue Apr  3 09:08:30 UTC 2018 - wba...@tmo.at
+
+- Update to 1.1.0:
+  * Deprecated Qt4 support
+  * Improvements in Qt5 support
+  * Fix in URL parsing, preventing Double Encoding of URLs
+
+---

Old:

  libmygpo-qt.1.0.9.tar.gz

New:

  libmygpo-qt.1.1.0.tar.gz



Other differences:
--
++ libmygpo-qt.spec ++
--- /var/tmp/diff_new_pack.69Xi9A/_old  2018-04-06 17:42:10.799457665 +0200
+++ /var/tmp/diff_new_pack.69Xi9A/_new  2018-04-06 17:42:10.799457665 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libmygpo-qt
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 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
@@ -17,7 +17,7 @@
 
 
 Name:   libmygpo-qt
-Version:1.0.9
+Version:1.1.0
 Release:0
 Summary:Qt Library that wraps the gpodder.net Web API
 License:LGPL-2.1+
@@ -69,7 +69,7 @@
 %setup -q -n %{name}.%{version}
 
 %build
-  %cmake_kde4 -d build -- -DLIB_INSTALL_DIR_SUFFIX="$_kde_libsuffix"
+  %cmake_kde4 -d build -- -DLIB_INSTALL_DIR_SUFFIX="$_kde_libsuffix" 
-DBUILD_WITH_QT4=ON
   %make_jobs
 
 %install

++ libmygpo-qt.1.0.9.tar.gz -> libmygpo-qt.1.1.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libmygpo-qt.1.0.9/CMakeLists.txt 
new/libmygpo-qt.1.1.0/CMakeLists.txt
--- old/libmygpo-qt.1.0.9/CMakeLists.txt2016-09-16 13:02:54.0 
+0200
+++ new/libmygpo-qt.1.1.0/CMakeLists.txt2018-04-01 13:13:01.0 
+0200
@@ -1,16 +1,15 @@
-cmake_minimum_required( VERSION 2.6 FATAL_ERROR )
+cmake_minimum_required( VERSION 2.8.9 FATAL_ERROR )
 
 project( libmygpo-qt )
 
 set( CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} 
${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules)
 set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DQT_NO_CAST_FROM_ASCII 
-DQT_NO_CAST_TO_ASCII" )
 
-option(BUILD_WITH_QT4 "Build libmygpo-qt with Qt4 no matter if Qt5 was found" 
ON)
+option(BUILD_WITH_QT4 "Build libmygpo-qt with Qt4 no matter if Qt5 was found" 
OFF)
 
 if( NOT BUILD_WITH_QT4 )
 find_package(Qt5Core QUIET)
 if( Qt5Core_DIR )
-message(STATUS "Found Qt5! Be aware that Qt5-support is still 
experimental and not officially supported!")
 set(MYGPO_QT_VERSION_SUFFIX 5)
 
 macro(qt_wrap_cpp)
@@ -26,6 +25,7 @@
 
 if( NOT Qt5Core_DIR )
 message(STATUS "Could not find Qt5, searching for Qt4 instead...")
+message(STATUS "Qt4 Support is deprecated, building with Qt4 is no longer 
officially supported")
 if( MYGPO_BUILD_TESTS )
 find_package( Qt4 COMPONENTS QtCore QtNetwork QtTest REQUIRED )
 else( MYGPO_BUILD_TESTS )
@@ -53,8 +53,8 @@
 # set(QT_USE_IMPORTED_TARGETS TRUE)
 
 set( MYGPO_QT_VERSION_MAJOR "1" )
-set( MYGPO_QT_VERSION_MINOR "0" )
-set( MYGPO_QT_VERSION_PATCH "9" )
+set( MYGPO_QT_VERSION_MINOR "1" )
+set( MYGPO_QT_VERSION_PATCH "0" )
 set( MYGPO_QT_VERSION 
"${MYGPO_QT_VERSION_MAJOR}.${MYGPO_QT_VERSION_MINOR}.${MYGPO_QT_VERSION_PATCH}" 
)
 
 set( MYGPO_QT_SONAME "${MYGPO_QT_VERSION_MAJOR}")
@@ -99,7 +99,7 @@
 set(LIB_INSTALL_DIR lib${LIB_SUFFIX} )
 set(LIB_DIR_PKGCONF "${CMAKE_INSTALL_PREFIX}/lib${LIB_SUFFIX}")
 set(INCLUDE_INSTALL_DIR 
"${CMAKE_INSTALL_PREFIX}/include/mygpo-qt${MYGPO_QT_VERSION_SUFFIX}" CACHE PATH 
"The directory the headers are installed in")
-set(CMAKECONFIG_INSTALL_DIR ${LIB_INSTALL_DIR}/cmake/mygpo-qt )
+set(CMAKECONFIG_INSTALL_DIR 
${LIB_INSTALL_DIR}/cmake/mygpo-qt${MYGPO_QT_VERSION_SUFFIX})
 
 if( APPLE )
 set( CPACK_GENERATOR "DragNDrop" )
@@ -114,7 +114,7 @@
 find_package(Doxygen)
 if(DOXYGEN_FOUND)
 configure_file(${CMAKE_CURRENT_SOURCE_DIR}/Doxyfile.in 
${CMAKE_CURRENT_BINARY_DIR}/Doxyfile @ONLY)
-add_custom_target(doc ${DOXYGEN_EXECUTABLE} 
${CMAKE_CURRENT_BINARY_DIR}/Doxyfile WORKING_DIRECTORY 
${CMAKE_CURRENT_BINARY_DIR} 
+add_custom_target(doc ${DOXYGEN_EXECUTABLE} 
${CMAKE_CURRENT_BINARY_DIR}/Doxyfile WORKING_DIRECTORY 
${CMAKE_CURRENT_BINARY_DIR}
 

commit libmygpo-qt for openSUSE:Factory

2018-02-28 Thread root
Hello community,

here is the log from the commit of package libmygpo-qt for openSUSE:Factory 
checked in at 2018-02-28 20:00:07

Comparing /work/SRC/openSUSE:Factory/libmygpo-qt (Old)
 and  /work/SRC/openSUSE:Factory/.libmygpo-qt.new (New)


Package is "libmygpo-qt"

Wed Feb 28 20:00:07 2018 rev:14 rq:580241 version:1.0.9

Changes:

--- /work/SRC/openSUSE:Factory/libmygpo-qt/libmygpo-qt.changes  2013-04-22 
14:08:58.0 +0200
+++ /work/SRC/openSUSE:Factory/.libmygpo-qt.new/libmygpo-qt.changes 
2018-02-28 20:00:13.305413203 +0100
@@ -1,0 +2,14 @@
+Mon Feb 26 09:09:44 UTC 2018 - wba...@tmo.at
+
+- Update to 1.0.9:
+  * Different header installation directories for the qt4 & qt5
+version
+  * Bugfix: Top level include_install_dir is now respected
+  * Support for QJson 0.7
+  * Default to https instead of http
+  * Bugfix: Allow setting the server URL
+  Changes in 1.0.8:
+  * Support for building the library with Qt5
+  * Support for the "Get All Subscriptions" API endpoint
+
+---

Old:

  libmygpo-qt.1.0.7.tar.gz

New:

  libmygpo-qt.1.0.9.tar.gz



Other differences:
--
++ libmygpo-qt.spec ++
--- /var/tmp/diff_new_pack.mTOkOt/_old  2018-02-28 20:00:14.933354298 +0100
+++ /var/tmp/diff_new_pack.mTOkOt/_new  2018-02-28 20:00:14.941354009 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   libmygpo-qt
-Version:1.0.7
+Version:1.0.9
 Release:0
 Summary:Qt Library that wraps the gpodder.net Web API
 License:LGPL-2.1+

++ libmygpo-qt.1.0.7.tar.gz -> libmygpo-qt.1.0.9.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libmygpo-qt.1.0.7/CMakeLists.txt 
new/libmygpo-qt.1.0.9/CMakeLists.txt
--- old/libmygpo-qt.1.0.7/CMakeLists.txt2013-01-19 12:48:52.0 
+0100
+++ new/libmygpo-qt.1.0.9/CMakeLists.txt2016-09-16 13:02:54.0 
+0200
@@ -5,20 +5,56 @@
 set( CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} 
${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules)
 set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DQT_NO_CAST_FROM_ASCII 
-DQT_NO_CAST_TO_ASCII" )
 
-# Don't use absolute path in Mygpo-qtTargets-$buildType.cmake
-# (This will have no effect with CMake < 2.8)
-set(QT_USE_IMPORTED_TARGETS TRUE)
+option(BUILD_WITH_QT4 "Build libmygpo-qt with Qt4 no matter if Qt5 was found" 
ON)
 
-find_package( Qt4 COMPONENTS QtCore QtNetwork QtTest REQUIRED )
-set( QT_DONT_USE_QTGUI TRUE )
+if( NOT BUILD_WITH_QT4 )
+find_package(Qt5Core QUIET)
+if( Qt5Core_DIR )
+message(STATUS "Found Qt5! Be aware that Qt5-support is still 
experimental and not officially supported!")
+set(MYGPO_QT_VERSION_SUFFIX 5)
+
+macro(qt_wrap_cpp)
+qt5_wrap_cpp(${ARGN})
+endmacro()
+endif()
+
+# pkg-config names of QtCore and QtNetwork are Qt5Core and Qt5Network for
+# Qt5
+set(MYGPO_QT_MAJOR_VERSION "5")
+set(MYGPO_QT4_QJSON_DEP "")
+endif()
+
+if( NOT Qt5Core_DIR )
+message(STATUS "Could not find Qt5, searching for Qt4 instead...")
+if( MYGPO_BUILD_TESTS )
+find_package( Qt4 COMPONENTS QtCore QtNetwork QtTest REQUIRED )
+else( MYGPO_BUILD_TESTS )
+find_package( Qt4 COMPONENTS QtCore QtNetwork REQUIRED )
+endif()
+set( QT_DONT_USE_QTGUI TRUE )
+include( ${QT_USE_FILE} )
 
-find_package(QJSON REQUIRED)
+macro(qt5_use_modules)
+endmacro()
 
-include( ${QT_USE_FILE} )
+macro(qt_wrap_cpp)
+qt4_wrap_cpp(${ARGN})
+endmacro()
+
+set(MYGPO_QT_MAJOR_VERSION "")
+set(MYGPO_QT4_QJSON_DEP "Requires.private: QJson")
+
+# QJson is only required for Qt4
+find_package(QJSON REQUIRED)
+endif()
+
+# Don't use absolute path in Mygpo-qtTargets-$buildType.cmake
+# (This will have no effect with CMake < 2.8)
+# set(QT_USE_IMPORTED_TARGETS TRUE)
 
 set( MYGPO_QT_VERSION_MAJOR "1" )
 set( MYGPO_QT_VERSION_MINOR "0" )
-set( MYGPO_QT_VERSION_PATCH "7" )
+set( MYGPO_QT_VERSION_PATCH "9" )
 set( MYGPO_QT_VERSION 
"${MYGPO_QT_VERSION_MAJOR}.${MYGPO_QT_VERSION_MINOR}.${MYGPO_QT_VERSION_PATCH}" 
)
 
 set( MYGPO_QT_SONAME "${MYGPO_QT_VERSION_MAJOR}")
@@ -62,7 +98,7 @@
 set(LIB_SUFFIX "" CACHE STRING "The directories where to install libraries to")
 set(LIB_INSTALL_DIR lib${LIB_SUFFIX} )
 set(LIB_DIR_PKGCONF "${CMAKE_INSTALL_PREFIX}/lib${LIB_SUFFIX}")
-set(INCLUDE_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/include/mygpo-qt" CACHE PATH 
"The directory the headers are installed in")
+set(INCLUDE_INSTALL_DIR 
"${CMAKE_INSTALL_PREFIX}/include/mygpo-qt${MYGPO_QT_VERSION_SUFFIX}" CACHE PATH 
"The directory the headers are installed in")
 set(CMAKECONFIG_INSTALL_DIR ${LIB_INSTALL_DIR}/cmake/mygpo-qt )
 
 if( APPLE )
@@ -97,12 

commit libmygpo-qt for openSUSE:Factory

2012-12-07 Thread h_root
Hello community,

here is the log from the commit of package libmygpo-qt for openSUSE:Factory 
checked in at 2012-12-07 14:40:29

Comparing /work/SRC/openSUSE:Factory/libmygpo-qt (Old)
 and  /work/SRC/openSUSE:Factory/.libmygpo-qt.new (New)


Package is libmygpo-qt, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/libmygpo-qt/libmygpo-qt.changes  2012-10-26 
17:12:27.0 +0200
+++ /work/SRC/openSUSE:Factory/.libmygpo-qt.new/libmygpo-qt.changes 
2012-12-07 14:40:31.0 +0100
@@ -1,0 +2,5 @@
+Sun Nov 25 22:33:54 UTC 2012 - nico.kru...@gmail.com
+
+- Fix the SLES build (%make_install is not expanded on SLES)
+
+---



Other differences:
--
++ libmygpo-qt.spec ++
--- /var/tmp/diff_new_pack.F1XUaC/_old  2012-12-07 14:40:31.0 +0100
+++ /var/tmp/diff_new_pack.F1XUaC/_new  2012-12-07 14:40:31.0 +0100
@@ -74,7 +74,7 @@
 
 %install
   cd build
-  %make_install
+  make DESTDIR=%{buildroot} install
   cd ..
 
 %post -n libmygpo-qt1 -p /sbin/ldconfig

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit libmygpo-qt for openSUSE:Factory

2012-10-26 Thread h_root
Hello community,

here is the log from the commit of package libmygpo-qt for openSUSE:Factory 
checked in at 2012-10-26 17:12:09

Comparing /work/SRC/openSUSE:Factory/libmygpo-qt (Old)
 and  /work/SRC/openSUSE:Factory/.libmygpo-qt.new (New)


Package is libmygpo-qt, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/libmygpo-qt/libmygpo-qt.changes  2011-11-14 
12:53:04.0 +0100
+++ /work/SRC/openSUSE:Factory/.libmygpo-qt.new/libmygpo-qt.changes 
2012-10-26 17:12:27.0 +0200
@@ -1,0 +2,10 @@
+Tue Oct 23 10:12:32 UTC 2012 - cgiboude...@gmx.com
+
+- Update to 1.0.6
+  * Added support for DeviceSync API. This API makes it possible to
+ set up synchronization with existing gpodder.net devices from inside
+ your application
+  * Set Contenttype Header to avoid warnings with Qt 4.8
+  * Some fixes  enhancements to CMake build system
+
+---

Old:

  libmygpo-qt.1.0.5.tar.gz

New:

  libmygpo-qt.1.0.6.tar.gz



Other differences:
--
++ libmygpo-qt.spec ++
--- /var/tmp/diff_new_pack.Ftj9Kz/_old  2012-10-26 17:12:28.0 +0200
+++ /var/tmp/diff_new_pack.Ftj9Kz/_new  2012-10-26 17:12:28.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libmygpo-qt
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 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
@@ -16,14 +16,13 @@
 #
 
 
-
 Name:   libmygpo-qt
-Version:1.0.5
-Release:1
-License:LGPL-2.1+
+Version:1.0.6
+Release:0
 Summary:Qt Library that wraps the gpodder.net Web API
-Url:http://wiki.gpodder.org/wiki/Libmygpo-qt
+License:LGPL-2.1+
 Group:  Development/Libraries/C and C++
+Url:http://wiki.gpodder.org/wiki/Libmygpo-qt
 Source0:
http://stefan.derkits.at/files/libmygpo-qt/%{name}.%{version}.tar.gz
 BuildRequires:  automoc4
 BuildRequires:  cmake
@@ -41,11 +40,9 @@
 - Retrieving Subscription Changes (you should use Retrieving Updates for a 
given Device instead)
 
 %package -n libmygpo-qt1
-License:LGPL-2.1+
-Group:  Development/Libraries/C and C++
 Summary:Qt Library that wraps the gpodder.net Web API
-Url:http://wiki.gpodder.org/wiki/Libmygpo-qt
 Group:  Development/Libraries/C and C++
+Url:http://wiki.gpodder.org/wiki/Libmygpo-qt
 
 %description -n libmygpo-qt1
 libmygpo-qt is a Qt Library that wraps the gpodder.net Web API 
(http://wiki.gpodder.org/wiki/Web_Services/API_2)
@@ -55,11 +52,9 @@
 - Retrieving Subscription Changes (you should use Retrieving Updates for a 
given Device instead)
 
 %package devel
-License:LGPL-2.1+
-Group:  Development/Libraries/C and C++
 Summary:Qt Library that wraps the gpodder.net Web API
-Url:http://wiki.gpodder.org/wiki/Libmygpo-qt
 Group:  Development/Libraries/C and C++
+Url:http://wiki.gpodder.org/wiki/Libmygpo-qt
 Requires:   libmygpo-qt1 = %{version}
 Requires:   libqt4-devel = 4.6.0
 

++ libmygpo-qt.1.0.5.tar.gz - libmygpo-qt.1.0.6.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libmygpo-qt.1.0.5/.kdev4/libmygpo-qt.kdev4 
new/libmygpo-qt.1.0.6/.kdev4/libmygpo-qt.kdev4
--- old/libmygpo-qt.1.0.5/.kdev4/libmygpo-qt.kdev4  2011-11-09 
00:11:00.0 +0100
+++ new/libmygpo-qt.1.0.6/.kdev4/libmygpo-qt.kdev4  1970-01-01 
01:00:00.0 +0100
@@ -1,15 +0,0 @@
-[Buildset]
-BuildItems=@Variant(\x00\x00\x00\t\x00\x00\x00\x00\x01\x00\x00\x00\x0b\x00\x00\x00\x00\x01\x00\x00\x00\x16\x00l\x00i\x00b\x00m\x00y\x00g\x00p\x00o\x00-\x00q\x00t)
-
-[CMake]
-BuildDirs=/home/t95012/src/libmygpo-qt/build
-CMakeDir=/usr/share/cmake-2.8/Modules
-Current CMake Binary=file:///usr/bin/cmake
-CurrentBuildDir=file:///home/t95012/src/libmygpo-qt/build
-CurrentBuildType=Debug
-CurrentInstallDir=
-Extra Arguments=
-ProjectRootRelative=./
-
-[Project]
-VersionControlSupport=kdevgit
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libmygpo-qt.1.0.5/CMakeLists.txt 
new/libmygpo-qt.1.0.6/CMakeLists.txt
--- old/libmygpo-qt.1.0.5/CMakeLists.txt2011-11-09 00:11:00.0 
+0100
+++ new/libmygpo-qt.1.0.6/CMakeLists.txt2012-10-13 17:33:35.0 
+0200
@@ -5,6 +5,10 @@
 set( CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} 
${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules)
 set( CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS} -DQT_NO_CAST_FROM_ASCII 
-DQT_NO_CAST_TO_ASCII )
 
+# Don't use 

commit libmygpo-qt for openSUSE:Factory

2011-11-14 Thread h_root
Hello community,

here is the log from the commit of package libmygpo-qt for openSUSE:Factory 
checked in at 2011-11-14 12:53:02

Comparing /work/SRC/openSUSE:Factory/libmygpo-qt (Old)
 and  /work/SRC/openSUSE:Factory/.libmygpo-qt.new (New)


Package is libmygpo-qt, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/libmygpo-qt/libmygpo-qt.changes  2011-09-23 
02:09:01.0 +0200
+++ /work/SRC/openSUSE:Factory/.libmygpo-qt.new/libmygpo-qt.changes 
2011-11-14 12:53:04.0 +0100
@@ -1,0 +2,15 @@
+Sun Nov 13 19:07:07 UTC 2011 - cgiboude...@gmx.com
+
+- Update to 1.0.5
+  * fixed a bug in downloadSubscriptionsJson()
+  * changed the way http basic auth information is transmitted to
+gpodder.net to no longer getting annoying popups when using
+libmygpo-qt with KIO from KDE 4.7.X
+  * implemented functions to access the new API for retrieving
+synchronization information of devices
+  * implemented functions to retrieve toplist and search results in
+gpodders custom XML format
+  * added “ConfigStyle” package finding to CMake Buildsystem
+
+
+---

Old:

  libmygpo-qt-1.0.4.tar.bz2

New:

  libmygpo-qt.1.0.5.tar.gz



Other differences:
--
++ libmygpo-qt.spec ++
--- /var/tmp/diff_new_pack.XGvbQC/_old  2011-11-14 12:53:08.0 +0100
+++ /var/tmp/diff_new_pack.XGvbQC/_new  2011-11-14 12:53:08.0 +0100
@@ -18,13 +18,13 @@
 
 
 Name:   libmygpo-qt
-Version:1.0.4
+Version:1.0.5
 Release:1
 License:LGPLv2+
 Summary:Qt Library that wraps the gpodder.net Web API
 Url:http://wiki.gpodder.org/wiki/Libmygpo-qt
 Group:  Development/Libraries/C and C++
-Source0:%{name}-%{version}.tar.bz2
+Source0:
http://stefan.derkits.at/files/libmygpo-qt/%{name}.%{version}.tar.gz
 BuildRequires:  automoc4
 BuildRequires:  cmake
 BuildRequires:  kde4-filesystem
@@ -42,9 +42,9 @@
 
 %package -n libmygpo-qt1
 License:LGPLv2.1+
-Summary:Qt Library that wraps the gpodder
-Url:http://wiki.gpodder.org/wiki/Libmygpo-qt
 Group:  Development/Libraries/C and C++
+Summary:Qt Library that wraps the gpodder.net Web API
+Url:http://wiki.gpodder.org/wiki/Libmygpo-qt
 Group:  Development/Libraries/C and C++
 
 %description -n libmygpo-qt1
@@ -56,9 +56,9 @@
 
 %package devel
 License:LGPLv2.1+
-Summary:Qt Library that wraps the gpodder
-Url:http://wiki.gpodder.org/wiki/Libmygpo-qt
 Group:  Development/Libraries/C and C++
+Summary:Qt Library that wraps the gpodder.net Web API
+Url:http://wiki.gpodder.org/wiki/Libmygpo-qt
 Group:  Development/Libraries/C and C++
 Requires:   libmygpo-qt1 = %{version}
 Requires:   libqt4-devel = 4.6.0
@@ -71,14 +71,14 @@
 - Retrieving Subscription Changes (you should use Retrieving Updates for a 
given Device instead)
 
 %prep
-%setup -q
+%setup -q -n %{name}.%{version}
 
 %build
-  %cmake_kde4 -d builddir
+  %cmake_kde4 -d build -- -DLIB_INSTALL_DIR_SUFFIX=$_kde_libsuffix
   %make_jobs
 
 %install
-  cd builddir
+  cd build
   %make_install
   cd ..
 
@@ -91,7 +91,9 @@
 
 %files devel
 %defattr(-,root,root)
-%{_includedir}/mygpo-qt/
+%dir %{_includedir}/mygpo-qt
+%{_includedir}/mygpo-qt/*
+%{_libdir}/cmake/mygpo-qt/
 %{_libdir}/libmygpo-qt.so
 %{_libdir}/pkgconfig/libmygpo-qt.pc
 

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit libmygpo-qt for openSUSE:Factory

2011-07-22 Thread h_root

Hello community,

here is the log from the commit of package libmygpo-qt for openSUSE:Factory
checked in at Fri Jul 22 10:46:42 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /mounts/work_src_done/STABLE/libmygpo-qt/libmygpo-qt.changes
2011-05-23 10:49:37.0 +0200
@@ -0,0 +1,17 @@
+---
+Mon May 23 08:47:49 UTC 2011 - cgiboude...@gmx.com
+
+- Update to 1.0.3
+  * All the Private Classes used in libmygpo-qt got their own Header
+Files (name_p.h) instead of having them in the .cpp Files
+  * UrlBuilder uses now the fast String Concatenation of Qt
+  * Some unneeded Files were removed (RequestHandlerTest 
+tests/Makefile.man)
+  * Fixed a Bug in the Build System
+  * General Cleanup of unnecessary Includes
+
+---
+Mon Mar 21 20:12:40 UTC 2011 - cgiboude...@gmx.com
+
+- Add libmygpo-qt, a Qt Library that wraps the gpodder.net Web API
+

calling whatdependson for head-i586


New:

  libmygpo-qt-1.0.3.tar.bz2
  libmygpo-qt.changes
  libmygpo-qt.spec



Other differences:
--
++ libmygpo-qt.spec ++
#
# spec file for package libmygpo-qt
#
# Copyright (c) 2011 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
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An Open Source License is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#



Name:   libmygpo-qt
Version:1.0.3
Release:1
License:LGPLv2+
Summary:Qt Library that wraps the gpodder.net Web API
Url:http://wiki.gpodder.org/wiki/Libmygpo-qt
Group:  Development/Libraries/C and C++
Source0:%{name}-%{version}.tar.bz2
BuildRequires:  automoc4
BuildRequires:  cmake
BuildRequires:  kde4-filesystem
BuildRequires:  libqjson-devel
BuildRequires:  libqt4-devel

BuildRoot:  %{_tmppath}/%{name}-%{version}-build

%description
libmygpo-qt is a Qt Library that wraps the gpodder.net Web API 
(http://wiki.gpodder.org/wiki/Web_Services/API_2)

v1.0 wraps nearly every Request from the gpodder.net API except:
- Simple API Calls Downloading subscription Lists  Uploading subscription Lists
- Retrieving Subscription Changes (you should use Retrieving Updates for a 
given Device instead)

%package -n libmygpo-qt1
License:LGPLv2.1+
Summary:Qt Library that wraps the gpodder
Url:http://wiki.gpodder.org/wiki/Libmygpo-qt
Group:  Development/Libraries/C and C++
Group:  Development/Libraries/C and C++

%description -n libmygpo-qt1
libmygpo-qt is a Qt Library that wraps the gpodder.net Web API 
(http://wiki.gpodder.org/wiki/Web_Services/API_2)

v1.0 wraps nearly every Request from the gpodder.net API except:
- Simple API Calls Downloading subscription Lists  Uploading subscription Lists
- Retrieving Subscription Changes (you should use Retrieving Updates for a 
given Device instead)

%package devel
License:LGPLv2.1+
Summary:Qt Library that wraps the gpodder
Url:http://wiki.gpodder.org/wiki/Libmygpo-qt
Group:  Development/Libraries/C and C++
Group:  Development/Libraries/C and C++
Requires:   libmygpo-qt1 = %{version}
Requires:   libqt4-devel = 4.6.0

%description devel
libmygpo-qt is a Qt Library that wraps the gpodder.net Web API 
(http://wiki.gpodder.org/wiki/Web_Services/API_2)

v1.0 wraps nearly every Request from the gpodder.net API except:
- Simple API Calls Downloading subscription Lists  Uploading subscription Lists
- Retrieving Subscription Changes (you should use Retrieving Updates for a 
given Device instead)

%prep
%setup -q

%build
  %cmake_kde4 -d builddir
  %make_jobs

%install
  cd builddir
  %make_install
  cd ..

%post -n libmygpo-qt1 -p /sbin/ldconfig

%postun -n libmygpo-qt1 -p /sbin/ldconfig

%clean
  rm -rf %{buildroot}

%files devel
%defattr(-,root,root)
%{_includedir}/mygpo-qt/
%{_libdir}/libmygpo-qt.so
%{_libdir}/pkgconfig/libmygpo-qt.pc

%files -n libmygpo-qt1
%defattr(-,root,root)
%{_libdir}/libmygpo-qt.so.*

%changelog





Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org