rpms/libchamplain/F-12 .cvsignore, 1.9, 1.10 libchamplain.spec, 1.12, 1.13 sources, 1.9, 1.10

Debarshi Ray rishi at fedoraproject.org
Mon Oct 19 20:30:22 UTC 2009


Author: rishi

Update of /cvs/pkgs/rpms/libchamplain/F-12
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7216

Modified Files:
	.cvsignore libchamplain.spec sources 
Log Message:
* Mon Oct 19 2009 Debarshi Ray <rishi at fedoraproject.org> - 0.4.1-1
- Version bump to 0.4.1.
  * Added champlain_view_remove_layer.
  * ChamplainSelectionLayer now has a "changed" signal.
  * Added champlain_marker_get_highlighted_text_color,
    champlain_marker_set_highlighted_text_color and
    Added champlain_marker_get_highlighted_color.
  * Fixed slowdowns with big caches.
  * Don't emit invalid latitude and longitude notifications.
  * Ensure map is displayed in Eye of GNOME's champlain plugin. (GNOME
    Bugzilla #598106)
  * http://download.gnome.org/sources/libchamplain/0.4/libchamplain-0.4.1.news
- Enabled GObject Introspection, and added 'Requires: gobject-introspection'
  and 'BuildRequires: gir-repository-devel'.
- Explicitly disabled debug code.
- RPaths fixed by upstream. Removed 'BuildRequires: chrpath'.



Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/libchamplain/F-12/.cvsignore,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -p -r1.9 -r1.10
--- .cvsignore	21 Sep 2009 22:41:31 -0000	1.9
+++ .cvsignore	19 Oct 2009 20:30:21 -0000	1.10
@@ -1 +1 @@
-libchamplain-0.4.0.tar.bz2
+libchamplain-0.4.1.tar.bz2


Index: libchamplain.spec
===================================================================
RCS file: /cvs/pkgs/rpms/libchamplain/F-12/libchamplain.spec,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -p -r1.12 -r1.13
--- libchamplain.spec	21 Sep 2009 22:41:31 -0000	1.12
+++ libchamplain.spec	19 Oct 2009 20:30:21 -0000	1.13
@@ -1,17 +1,22 @@
 Summary:	Map view for Clutter
 Name:		libchamplain
-Version:	0.4.0
+Version:	0.4.1
 Release:	1%{?dist}
 License:	LGPLv2+
 Group:		System Environment/Libraries
 URL:		http://projects.gnome.org/libchamplain/
-Source0:	http://ftp.gnome.org/pub/GNOME/sources/libchamplain/0.4/%{name}-%{version}.tar.bz2
+Source0:	http://download.gnome.org/sources/libchamplain/0.4/%{name}-%{version}.tar.bz2
+
+# http://bugzilla.gnome.org/598942
+Patch0:		%{name}-%{version}-gir.patch
 
 BuildRoot:	%(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
 
-BuildRequires:	chrpath
+Requires:	gobject-introspection
+
 BuildRequires:	clutter-devel
 BuildRequires:	clutter-gtk-devel
+BuildRequires:	gir-repository-devel
 BuildRequires:	libsoup-devel
 BuildRequires:	sqlite-devel
 
@@ -28,6 +33,7 @@ Requires:	clutter-devel
 Requires:	pkgconfig
 %endif
 
+Requires:	gobject-introspection-devel
 Requires:	gtk-doc
 Requires:	%{name} = %{version}-%{release}
 
@@ -62,10 +68,11 @@ This package contains development files 
 
 %prep
 %setup -q
+%patch0 -p1
 
 %build
-%configure --disable-static --enable-gtk --enable-gtk-doc \
-  --enable-introspection=no --enable-silent-rules
+%configure --disable-debug --disable-static --enable-gtk --enable-gtk-doc \
+  --enable-introspection=yes --enable-silent-rules
 
 # Omit unused direct shared library dependencies.
 sed --in-place --expression 's! -shared ! -Wl,--as-needed\0!g' libtool
@@ -79,7 +86,7 @@ make install INSTALL="%{__install} -p" D
 find $RPM_BUILD_ROOT -type f -name "*.la" -delete
 
 # Remove rpaths.
-chrpath --delete $RPM_BUILD_ROOT%{_libdir}/libchamplain-gtk-0.4.so.0.0.0
+#chrpath --delete $RPM_BUILD_ROOT%{_libdir}/libchamplain-gtk-0.4.so.0.0.0
 
 %clean
 rm -rf $RPM_BUILD_ROOT
@@ -98,6 +105,7 @@ rm -rf $RPM_BUILD_ROOT
 %doc ChangeLog
 %doc COPYING
 %doc NEWS
+%{_libdir}/girepository-1.0/Champlain-0.4.typelib
 %{_libdir}/%{name}-0.4.so.*
 
 %files devel
@@ -108,6 +116,7 @@ rm -rf $RPM_BUILD_ROOT
 %doc demos/markers.h
 %doc demos/polygons.c
 %doc demos/url-marker.c
+%{_datadir}/gir-1.0/Champlain-0.4.gir
 %{_libdir}/%{name}-0.4.so
 %{_libdir}/pkgconfig/champlain-0.4.pc
 
@@ -119,12 +128,14 @@ rm -rf $RPM_BUILD_ROOT
 
 %files gtk
 %defattr(-,root,root,-)
+%{_libdir}/girepository-1.0/GtkChamplain-0.4.typelib
 %{_libdir}/%{name}-gtk-0.4.so.*
 
 %files gtk-devel
 %defattr(-,root,root,-)
 %doc demos/launcher-gtk.c
 %doc demos/markers.c
+%{_datadir}/gir-1.0/GtkChamplain-0.4.gir
 %{_libdir}/%{name}-gtk-0.4.so
 %{_libdir}/pkgconfig/champlain-gtk-0.4.pc
 
@@ -135,6 +146,23 @@ rm -rf $RPM_BUILD_ROOT
 %{_includedir}/%{name}-gtk-0.4/champlain-gtk
 
 %changelog
+* Mon Oct 19 2009 Debarshi Ray <rishi at fedoraproject.org> - 0.4.1-1
+- Version bump to 0.4.1.
+  * Added champlain_view_remove_layer.
+  * ChamplainSelectionLayer now has a "changed" signal.
+  * Added champlain_marker_get_highlighted_text_color,
+    champlain_marker_set_highlighted_text_color and
+    Added champlain_marker_get_highlighted_color.
+  * Fixed slowdowns with big caches.
+  * Don't emit invalid latitude and longitude notifications.
+  * Ensure map is displayed in Eye of GNOME's champlain plugin. (GNOME
+    Bugzilla #598106)
+  * http://download.gnome.org/sources/libchamplain/0.4/libchamplain-0.4.1.news
+- Enabled GObject Introspection, and added 'Requires: gobject-introspection'
+  and 'BuildRequires: gir-repository-devel'.
+- Explicitly disabled debug code.
+- RPaths fixed by upstream. Removed 'BuildRequires: chrpath'.
+
 * Mon Sep 21 2009 Debarshi Ray <rishi at fedoraproject.org> - 0.4.0-1
 - Version bump to 0.4.0.
   * ChamplainView now has keyboard shortcuts (but not when used with
@@ -145,32 +173,32 @@ rm -rf $RPM_BUILD_ROOT
   * Fixed memory leak in ChamplainLayer. (GNOME Bugzilla #593505)
   * Initial center_on should not result on the map being in Antarctica.
     (GNOME Bugzilla #594963)
-  * http://ftp.gnome.org/pub/GNOME/sources/libchamplain/0.3/libchamplain-0.3.92.news
-  * http://ftp.gnome.org/pub/GNOME/sources/libchamplain/0.3/libchamplain-0.3.92.changes
+  * http://download.gnome.org/sources/libchamplain/0.3/libchamplain-0.3.92.news
+  * http://download.gnome.org/sources/libchamplain/0.3/libchamplain-0.3.92.changes
 
 * Mon Aug 24 2009 Matthias Clasen <mclasen at redhat.com> - 0.3.91-1
 - Version bump to 0.3.91.
-  * http://ftp.gnome.org/pub/GNOME/sources/libchamplain/0.3/libchamplain-0.3.91.news
+  * http://download.gnome.org/sources/libchamplain/0.3/libchamplain-0.3.91.news
 
 * Tue Aug 11 2009 Matthias Clasen <mclasen at redhat.com> - 0.3.90-1
 - Version bump to 0.3.90.
-  * http://ftp.gnome.org/pub/GNOME/sources/libchamplain/0.3/libchamplain-0.3.90.news
-  * http://ftp.gnome.org/pub/GNOME/sources/libchamplain/0.3/libchamplain-0.3.90.changes
+  * http://download.gnome.org/sources/libchamplain/0.3/libchamplain-0.3.90.news
+  * http://download.gnome.org/sources/libchamplain/0.3/libchamplain-0.3.90.changes
 
 * Mon Aug  3 2009 Matthias Clasen <mclasen at redhat.com> - 0.3.6-1
 - Version bump to 0.3.6.
   * New marker animation API.
   * Ported to Clutter 1.0. (GNOME Bugzilla #576391)
-  * http://ftp.gnome.org/pub/GNOME/sources/libchamplain/0.3/libchamplain-0.3.6.news
-  * http://ftp.gnome.org/pub/GNOME/sources/libchamplain/0.3/libchamplain-0.3.6.changes
+  * http://download.gnome.org/sources/libchamplain/0.3/libchamplain-0.3.6.news
+  * http://download.gnome.org/sources/libchamplain/0.3/libchamplain-0.3.6.changes
 
 * Sat Aug 02 2009 Debarshi Ray <rishi at fedoraproject.org> - 0.3.5-1
 - Version bump to 0.3.5.
   * Marker selection API. (GNOME Bugzilla #577909)
-  * http://ftp.gnome.org/pub/GNOME/sources/libchamplain/0.3/libchamplain-0.3.5.news
-  * http://ftp.gnome.org/pub/GNOME/sources/libchamplain/0.3/libchamplain-0.3.4.news
-  * http://ftp.gnome.org/pub/GNOME/sources/libchamplain/0.3/libchamplain-0.3.5.changes
-  * http://ftp.gnome.org/pub/GNOME/sources/libchamplain/0.3/libchamplain-0.3.4.changes
+  * http://download.gnome.org/sources/libchamplain/0.3/libchamplain-0.3.5.news
+  * http://download.gnome.org/sources/libchamplain/0.3/libchamplain-0.3.4.news
+  * http://download.gnome.org/sources/libchamplain/0.3/libchamplain-0.3.5.changes
+  * http://download.gnome.org/sources/libchamplain/0.3/libchamplain-0.3.4.changes
 
 * Fri Jul 24 2009 Release Engineering <rel-eng at fedoraproject.org> - 0.3.3-2
 - Autorebuild for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/libchamplain/F-12/sources,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -p -r1.9 -r1.10
--- sources	21 Sep 2009 22:41:31 -0000	1.9
+++ sources	19 Oct 2009 20:30:21 -0000	1.10
@@ -1 +1 @@
-159f8befb4b7ef616227977cda61e08d  libchamplain-0.4.0.tar.bz2
+cd41e989c4c609e37fac2ad331919bcf  libchamplain-0.4.1.tar.bz2




More information about the fedora-extras-commits mailing list