Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by George Sherwood (c51404c30041d19778dc7a896b9142711dcb3054)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: George Sherwood <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by George Sherwood (c51404c30041d19778dc7a896b9142711dcb3054)
  • Date: Sat, 12 Sep 2009 16:31:34 -0500

GIT changes to master grimoire by George Sherwood <gsherwood AT sourcemage.org>:

dev/null |binary
gnome2-apps/epiphany/DETAILS | 2 -
gnome2-apps/epiphany/HISTORY | 5 ++++
gnome2-apps/epiphany/PRE_BUILD | 6 +++++
gnome2-apps/epiphany/epiphany-2.27.91.tar.bz2.sig | 0
gnome2-apps/epiphany/epiphany-2.27.92.tar.bz2.sig |binary
gnome2-apps/epiphany/epiphany.patch | 24
++++++++++++++++++++++
7 files changed, 36 insertions(+), 1 deletion(-)

New commits:
commit c51404c30041d19778dc7a896b9142711dcb3054
Author: George Sherwood <gsherwood AT sourcemage.org>
Commit: George Sherwood <gsherwood AT sourcemage.org>

epiphany: Updated devel to version 2.27.92. Added upstream patch
to fix build problem with gtk+2

diff --git a/gnome2-apps/epiphany/DETAILS b/gnome2-apps/epiphany/DETAILS
index 79efb30..9d167f1 100755
--- a/gnome2-apps/epiphany/DETAILS
+++ b/gnome2-apps/epiphany/DETAILS
@@ -1,6 +1,6 @@
SPELL=epiphany
if [[ "$EPIPHANY_WEBKIT" == "y" ]]; then
- VERSION=2.27.91
+ VERSION=2.27.92
else
VERSION=2.26.3
fi
diff --git a/gnome2-apps/epiphany/HISTORY b/gnome2-apps/epiphany/HISTORY
index 18ee367..f8c8772 100644
--- a/gnome2-apps/epiphany/HISTORY
+++ b/gnome2-apps/epiphany/HISTORY
@@ -1,3 +1,8 @@
+2009-09-12 George Sherwood <gsherwood AT sourcemage.org>
+ * DETAILS: Updated devel to 2.27.92
+ * PRE_BUILD: Added to apply upstream patch
+ * epiphany.patch: Added upstream patch to fix build problem with gtk
+
2009-08-24 George Sherwood <gsherwood AT sourcemage.org>
* DETAILS: Updated devel to 2.27.91

diff --git a/gnome2-apps/epiphany/PRE_BUILD b/gnome2-apps/epiphany/PRE_BUILD
new file mode 100755
index 0000000..21c02c1
--- /dev/null
+++ b/gnome2-apps/epiphany/PRE_BUILD
@@ -0,0 +1,6 @@
+default_pre_build &&
+
+if [[ "$EPIPHANY_WEBKIT" == "y" ]]; then
+ cd $SOURCE_DIRECTORY &&
+ patch -p0 < $SCRIPT_DIRECTORY/epiphany.patch
+fi
diff --git a/gnome2-apps/epiphany/epiphany-2.27.91.tar.bz2.sig
b/gnome2-apps/epiphany/epiphany-2.27.91.tar.bz2.sig
deleted file mode 100644
index 7d4ede7..0000000
Binary files a/gnome2-apps/epiphany/epiphany-2.27.91.tar.bz2.sig and
/dev/null differ
diff --git a/gnome2-apps/epiphany/epiphany-2.27.92.tar.bz2.sig
b/gnome2-apps/epiphany/epiphany-2.27.92.tar.bz2.sig
new file mode 100644
index 0000000..e469f71
Binary files /dev/null and
b/gnome2-apps/epiphany/epiphany-2.27.92.tar.bz2.sig differ
diff --git a/gnome2-apps/epiphany/epiphany.patch
b/gnome2-apps/epiphany/epiphany.patch
new file mode 100644
index 0000000..3feffcc
--- /dev/null
+++ b/gnome2-apps/epiphany/epiphany.patch
@@ -0,0 +1,24 @@
+--- lib/ephy-dialog.c.orig 2009-09-12 16:23:31.000000000 -0500
++++ lib/ephy-dialog.c 2009-09-12 16:25:20.000000000 -0500
+@@ -146,18 +146,18 @@
+
+ for (l = list; l != NULL; l = l->next)
+ {
+- sensitive = gtk_widget_is_sensitive (GTK_WIDGET
(l->data)) && sensitive;
++ sensitive = GTK_WIDGET_IS_SENSITIVE (GTK_WIDGET
(l->data)) && sensitive;
+ gtk_widget_set_sensitive (GTK_WIDGET (l->data),
sensitive);
+ }
+ }
+ else if (info->widget_type == PT_EDITABLE)
+ {
+- sensitive = gtk_widget_is_sensitive (info->widget) &&
sensitive;
++ sensitive = GTK_WIDGET_IS_SENSITIVE (info->widget) &&
sensitive;
+ gtk_editable_set_editable (GTK_EDITABLE (info->widget),
sensitive);
+ }
+ else
+ {
+- sensitive = gtk_widget_is_sensitive (info->widget) &&
sensitive;
++ sensitive = GTK_WIDGET_IS_SENSITIVE (info->widget) &&
sensitive;
+ gtk_widget_set_sensitive (info->widget, sensitive);
+ }
+ }



  • [SM-Commit] GIT changes to master grimoire by George Sherwood (c51404c30041d19778dc7a896b9142711dcb3054), George Sherwood, 09/12/2009

Archive powered by MHonArc 2.6.24.

Top of Page