2009-01-15 Wang Xin <[email protected]>
authorjedy
Thu, 15 Jan 2009 02:48:07 +0000
changeset 14914 141c34e5673c
parent 14913 1a56238fdb87
child 14915 ebd10a25e7c4
2009-01-15 Wang Xin <[email protected]> * SUNWlibical.spec: Set default dir/file attribute for base pkg to correct invalid owner issue.
ChangeLog
SUNWlibical.spec
base-specs/libnotify.spec
base-specs/notification-daemon.spec
patches/notification-daemon-01-resize.diff
--- a/ChangeLog	Wed Jan 14 11:30:08 2009 +0000
+++ b/ChangeLog	Thu Jan 15 02:48:07 2009 +0000
@@ -1,3 +1,8 @@
+2009-01-15  Wang Xin  <[email protected]>
+
+	* SUNWlibical.spec: Set default dir/file attribute for base pkg to
+	correct invalid owner issue.
+
 2009-01-14  Takao Fujiwara  <[email protected]>
 
 	* base-specs/enchant.spec:
--- a/SUNWlibical.spec	Wed Jan 14 11:30:08 2009 +0000
+++ b/SUNWlibical.spec	Thu Jan 15 02:48:07 2009 +0000
@@ -97,12 +97,12 @@
 %doc(bzip2) COPYING
 %doc(bzip2) LICENSE
 %doc(bzip2) README
+%defattr(-, root, bin)
 %dir %attr (0755, root, sys) %{_datadir}
 %dir %attr(0755, root, bin) %{_mandir}
 %dir %attr(0755, root, bin) %{_mandir}/man3
 %{_mandir}/man3/*
 %dir %attr (0755, root, other) %{_docdir}
-%defattr (-, root, bin)
 %dir %attr (0755,root,bin) %{_libdir}
 %{_libdir}/lib*.so*
 %ifarch amd64 sparcv9
@@ -123,6 +123,8 @@
 %endif
 
 %changelog
+* Tue Jan 15 2009 - [email protected]
+- Set default dir/file attribute for base pkg to correct invalid owner issue.
 * Tue Jan 13 2009 - [email protected]
 - Bump to 0.43.
 * Sun Jan 11 2009 - [email protected]
--- a/base-specs/libnotify.spec	Wed Jan 14 11:30:08 2009 +0000
+++ b/base-specs/libnotify.spec	Thu Jan 15 02:48:07 2009 +0000
@@ -9,7 +9,7 @@
 #
 
 Name:         libnotify
-Version:      0.4.4
+Version:      0.4.5
 Release:      1
 Summary:      libnotify is a notification system for the GNOME desktop environment.
 
@@ -76,5 +76,7 @@
 %{_datadir}/gtk-doc/*
 
 %changelog
+* Wed Dec 03 2008 - [email protected]
+- Bump to 0.4.5.
 * Thu Mar 25 2007 - [email protected]
 - Initial spec
--- a/base-specs/notification-daemon.spec	Wed Jan 14 11:30:08 2009 +0000
+++ b/base-specs/notification-daemon.spec	Thu Jan 15 02:48:07 2009 +0000
@@ -9,7 +9,7 @@
 #
 
 Name:         notification-daemon
-Version:      0.3.7
+Version:      0.4.0
 Release:      1
 Summary:      A notification daemon for the GNOME desktop environment.
 
@@ -96,6 +96,8 @@
 
 
 %changelog
+* Wed Dec 03 2008 - [email protected]
+- Bump to 0.4.0.
 * Wed Nov 12 2008 - [email protected]
 - Add patch notification-daemon-01-resize.diff to fix bug#6752569 where the
   standard theme is not resizig the summary area if the body changes.
--- a/patches/notification-daemon-01-resize.diff	Wed Jan 14 11:30:08 2009 +0000
+++ b/patches/notification-daemon-01-resize.diff	Thu Jan 15 02:48:07 2009 +0000
@@ -1,20 +1,19 @@
-diff -up notification-daemon-0.3.7/src/themes/standard/theme.c.orig notification-daemon-0.3.7/src/themes/standard/theme.c
---- notification-daemon-0.3.7/src/themes/standard/theme.c.orig	2007-01-26 04:20:15.000000000 +0000
-+++ notification-daemon-0.3.7/src/themes/standard/theme.c	2008-11-12 13:58:39.774757522 +0000
-@@ -883,11 +883,10 @@ set_notification_text(GtkWindow *nw, con
- 
- 	update_content_hbox_visibility(windata);
+diff -ur notification-daemon-0.4.0/src/themes/standard/theme.c notification-daemon-0.4.0-new/src/themes/standard/theme.c
+--- notification-daemon-0.4.0/src/themes/standard/theme.c	2008-11-20 17:38:01.000000000 +0800
++++ notification-daemon-0.4.0-new/src/themes/standard/theme.c	2008-12-03 21:02:18.638728949 +0800
+@@ -670,6 +670,7 @@
+ 	gtk_box_pack_start(GTK_BOX(hbox), windata->summary_label, TRUE, TRUE, 0);
+ 	gtk_misc_set_alignment(GTK_MISC(windata->summary_label), 0, 0);
+ 	gtk_label_set_line_wrap(GTK_LABEL(windata->summary_label), TRUE);
++	gtk_label_set_line_wrap_mode(GTK_LABEL(windata->summary_label), PANGO_WRAP_WORD_CHAR);
  
--	gtk_widget_set_size_request(
--		((body != NULL && *body == '\0')
--		 ? windata->body_label : windata->summary_label),
--		WIDTH - (IMAGE_SIZE + IMAGE_PADDING) - 10,
--		-1);
-+	if (body != NULL && *body == '\0')
-+		gtk_widget_set_size_request( windata->body_label, WIDTH - (IMAGE_SIZE + IMAGE_PADDING) - 10, -1);
-+
-+	gtk_widget_set_size_request( windata->summary_label, WIDTH - (IMAGE_SIZE + IMAGE_PADDING) - 50, -1);
- }
+ 	atkobj = gtk_widget_get_accessible(windata->summary_label);
+ 	atk_object_set_description(atkobj, "Notification summary text.");
+@@ -726,6 +727,7 @@
+ 	gtk_box_pack_start(GTK_BOX(vbox), windata->body_label, TRUE, TRUE, 0);
+ 	gtk_misc_set_alignment(GTK_MISC(windata->body_label), 0, 0);
+ 	gtk_label_set_line_wrap(GTK_LABEL(windata->body_label), TRUE);
++	gtk_label_set_line_wrap_mode(GTK_LABEL(windata->body_label), PANGO_WRAP_WORD_CHAR);
+ 	g_signal_connect_swapped(G_OBJECT(windata->body_label), "url_activated",
+ 							 G_CALLBACK(windata->url_clicked), win);
  
- void
-