Hello community,

here is the log from the commit of package libkgeomap for openSUSE:Factory 
checked in at 2012-01-04 07:24:34
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libkgeomap (Old)
 and      /work/SRC/openSUSE:Factory/.libkgeomap.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libkgeomap", Maintainer is ""

Changes:
--------
--- /work/SRC/openSUSE:Factory/libkgeomap/libkgeomap.changes    2011-11-16 
17:19:35.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.libkgeomap.new/libkgeomap.changes       
2012-01-04 07:24:36.000000000 +0100
@@ -1,0 +2,19 @@
+Wed Dec 14 19:53:12 UTC 2011 - [email protected]
+
+- Update to version 2.4.1:
+  * Bugfix release.
+
+-------------------------------------------------------------------
+Sat Dec  3 17:36:02 UTC 2011 - [email protected]
+
+- Spec file updates:
+  * Changes based on spec-cleaner run.
+  * Changed License: to GPL-2.0+.
+  * Updates in Summaries and Descriptions of the packages.
+  * Changed Group of libkgeomap and libkgeomap1 to System/Libraries.
+  * Removed libkgeomap1 from libkgeomap Requires: (not needed).
+  * Removed %kde4_runtime_requires from libkgeomap (not needed).
+  * Install the translation files of libkgeomap.
+  * Minor cosmetic changes.
+
+-------------------------------------------------------------------

Old:
----
  digikam-2.3.0.tar.bz2

New:
----
  digikam-2.4.1.tar.bz2

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

Other differences:
------------------
++++++ libkgeomap.spec ++++++
--- /var/tmp/diff_new_pack.JQkcIz/_old  2012-01-04 07:24:39.000000000 +0100
+++ /var/tmp/diff_new_pack.JQkcIz/_new  2012-01-04 07:24:39.000000000 +0100
@@ -15,93 +15,95 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-
-
 Name:           libkgeomap
+Version:        2.4.1
+Release:        0
+Summary:        World-Map Library interface for KDE
+License:        GPL-2.0+
+Group:          System/Libraries
+Url:            http://www.kde.org/
+Source0:        
http://sourceforge.net/projects/digikam/files/digikam/%{version}/digikam-%{version}.tar.bz2
 BuildRequires:  libkde4-devel
-BuildRequires:  marble-devel
 BuildRequires:  libkexiv2-devel
-License:        LGPLv2.1+
-Group:          Development/Libraries/KDE
-Summary:        Wrapper around different world-map components
-Url:            http://www.kde.org
-Version:        2.3.0
-Release:        3
-Source0:        
http://sourceforge.net/projects/digikam/files/digikam/%{version}/digikam-%{version}.tar.bz2
+BuildRequires:  marble-devel
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
-%kde4_runtime_requires
-Requires:       libkgeomap1
 
 %description
 Libkgeomap is a wrapper around different world-map components, to browse and 
arrange photos over a map.
 Currently supported map engine are:
-- Marble, 
-- OpenstreetMap (via Marble),
-- GoogleMap,
-This library is used by kipi-plugins, digiKam and other kipi host programs
-
-%prep
-%setup -q -n digikam-%version
+- Marble
+- OpenstreetMap (via Marble)
+- GoogleMap
+This library is used by kipi-plugins, digiKam and other kipi host programs.
 
-%build
-  cd extra/libkgeomap
-  %cmake_kde4 -d build
-  %make_jobs
-
-%install
-  cd extra/libkgeomap/build
-  %makeinstall
-  %kde_post_install
+%package devel
+Summary:        Development files for libkgeomap
+Group:          Development/Libraries/KDE
+Requires:       libkgeomap1 = %{version}
 
-%clean
-  rm -rf $RPM_BUILD_ROOT
+%description devel
+This package contains development files for libkgeomap.
 
 %package -n libkgeomap1
-License:        LGPLv2.1+
-Group:          Development/Libraries/KDE
+Summary:        World-Map Library interface for KDE
+Group:          System/Libraries
+Recommends:     marble
+# libkgeomap was last used at openSUSE 12.1 (version 2.2.0)
 Provides:       libkgeomap = %{version}
 Obsoletes:      libkgeomap < %{version}
-Summary:        Wrapper around different world-map components
-Recommends:     marble
 
 %description -n libkgeomap1
 Libkgeomap is a wrapper around different world-map components, to browse and 
arrange photos over a map.
 Currently supported map engine are:
-- Marble, 
-- OpenstreetMap (via Marble),
-- GoogleMap,
-This library is used by kipi-plugins, digiKam and other kipi host programs
+- Marble
+- OpenstreetMap (via Marble)
+- GoogleMap
+This library is used by kipi-plugins, digiKam and other kipi host programs.
 
-%post -n libkgeomap1 -p /sbin/ldconfig
+%prep
+%setup -q -n digikam-%{version}
 
-%postun -n libkgeomap1 -p /sbin/ldconfig
+# Add translations
+pushd extra/libkgeomap
+mv ../../po po
+find po -name digikam.po | xargs rm
+find po -name kipiplugin_*.po | xargs rm
+echo "find_package(Gettext)" >> CMakeLists.txt
+echo "add_subdirectory( po )" >> CMakeLists.txt
+popd
 
-%package devel
-License:        LGPLv2.1+
-Group:          Development/Libraries/KDE
-Summary:        Wrapper around different world-map components
-Requires:       libkgeomap1 = %{version}
+%build
+pushd extra/libkgeomap
+%cmake_kde4 -d build
+%make_jobs
+popd
 
-%description devel
-Libkgeomap is a wrapper around different world-map components, to browse and 
arrange photos over a map.
-Currently supported map engine are:
-- Marble, 
-- OpenstreetMap (via Marble),
-- GoogleMap,
-This library is used by kipi-plugins, digiKam and other kipi host programs
+%install
+pushd extra/libkgeomap/build
+%kde4_makeinstall
+popd
+
+%kde_post_install
+
+%find_lang %{name}
+
+%post -n libkgeomap1 -p /sbin/ldconfig
+
+%postun -n libkgeomap1 -p /sbin/ldconfig
 
 %files devel
-%defattr(-,root,root)
-%doc README
-%_kde4_bindir/libkgeomap_demo
-%_kde4_libdir/libkgeomap.so
-/usr/include/libkgeomap/
-%_kde4_libdir/pkgconfig/libkgeomap.pc
-%_kde4_appsdir/cmake/modules/FindKGeoMap.cmake
-
-%files -n libkgeomap1
-%defattr(-,root,root)
-%_kde4_libdir/libkgeomap.so.*
-%_kde4_appsdir/libkgeomap/
+%defattr(-,root,root,-)
+%doc extra/libkgeomap/AUTHORS
+%doc extra/libkgeomap/README
+%{_kde4_bindir}/libkgeomap_demo
+%{_kde4_appsdir}/cmake/modules/FindKGeoMap.cmake
+%{_kde4_includedir}/libkgeomap/
+%{_kde4_libdir}/pkgconfig/libkgeomap.pc
+%{_kde4_libdir}/libkgeomap.so
+
+%files -n libkgeomap1 -f %{name}.lang
+%defattr(-,root,root,-)
+%{_kde4_appsdir}/libkgeomap/
+%{_kde4_libdir}/libkgeomap.so.1*
 
 %changelog

++++++ digikam-2.3.0.tar.bz2 -> digikam-2.4.1.tar.bz2 ++++++
/work/SRC/openSUSE:Factory/libkgeomap/digikam-2.3.0.tar.bz2 
/work/SRC/openSUSE:Factory/.libkgeomap.new/digikam-2.4.1.tar.bz2 differ: char 
11, line 1

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

Reply via email to