[anjuta] - Updated anjuta to 2.91.5.0

Rakesh Pandit rakesh at fedoraproject.org
Wed Jan 19 12:53:32 UTC 2011


commit bff2b37f22d66cca177651dc6bebfdd8c39def84
Author: Rakesh Pandit <rakesh at fedoraproject.org>
Date:   Wed Jan 19 18:22:26 2011 +0530

    - Updated anjuta to 2.91.5.0

 .gitignore                         |    1 +
 anjuta-2.91.5.0-glade_plugin.patch |  139 ++++++++++++++++++++++++++++++
 anjuta-2.91.5.0-libxml.patch       |   33 +++++++
 anjuta.spec                        |  166 ++++++++++++++++++------------------
 sources                            |    2 +-
 5 files changed, 257 insertions(+), 84 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index c3eff4a..13f9102 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,3 +3,4 @@ anjuta-2.31.6.1.tar.bz2
 /anjuta-2.31.90.0.tar.bz2
 /anjuta-2.32.1.0.tar.bz2
 /anjuta-2.91.3.0.tar.bz2
+/anjuta-2.91.5.0.tar.bz2
diff --git a/anjuta-2.91.5.0-glade_plugin.patch b/anjuta-2.91.5.0-glade_plugin.patch
new file mode 100644
index 0000000..dc3de82
--- /dev/null
+++ b/anjuta-2.91.5.0-glade_plugin.patch
@@ -0,0 +1,139 @@
+From 4469e1df0376c328167b738878be4e8664e171af Mon Sep 17 00:00:00 2001
+From: Johannes Schmid <jhs at gnome.org>
+Date: Wed, 12 Jan 2011 23:44:30 +0000
+Subject: glade: Fix with latest glade3 master changes and fix undo/redo and save ui updates
+
+---
+diff --git a/plugins/glade/anjuta-design-document.c b/plugins/glade/anjuta-design-document.c
+index 0eaec96..a3e3454 100644
+--- a/plugins/glade/anjuta-design-document.c
++++ b/plugins/glade/anjuta-design-document.c
+@@ -44,9 +44,16 @@ struct _AnjutaDesignDocumentPrivate
+ 	(G_TYPE_INSTANCE_GET_PRIVATE ((o), ANJUTA_TYPE_DESIGN_DOCUMENT, AnjutaDesignDocumentPrivate))
+ 
+ static void
++on_project_changed (GladeProject* project, GladeCommand* command, gboolean forward, AnjutaDesignDocument* doc)
++{
++	g_signal_emit_by_name (doc, "update-save-ui", NULL);
++	g_signal_emit_by_name (doc, "update-ui", NULL);
++}
++
++static void
+ anjuta_design_document_instance_init (AnjutaDesignDocument *object)
+ {
+-	
++
+ }
+ 
+ static void
+@@ -102,10 +109,13 @@ anjuta_design_document_class_init (AnjutaDesignDocumentClass *klass)
+ GtkWidget*
+ anjuta_design_document_new (GladePlugin* glade_plugin, GladeProject* project)
+ {
+-	return GTK_WIDGET(g_object_new(ANJUTA_TYPE_DESIGN_DOCUMENT, 
+-								   "plugin", glade_plugin,
+-								   "project", project,
+-								   NULL));
++	GObject* doc = g_object_new(ANJUTA_TYPE_DESIGN_DOCUMENT, 
++	                            "plugin", glade_plugin,
++	                            "project", project,
++	                            NULL);
++	g_signal_connect (project, "changed", G_CALLBACK (on_project_changed), doc);
++
++	return GTK_WIDGET (doc);
+ }
+ 
+ static void ifile_open(IAnjutaFile* ifile, GFile* file, GError **e)
+diff --git a/plugins/glade/plugin.c b/plugins/glade/plugin.c
+index a7861a9..e1bc9a5 100644
+--- a/plugins/glade/plugin.c
++++ b/plugins/glade/plugin.c
+@@ -373,36 +373,36 @@ activate_plugin (AnjutaPlugin *plugin)
+ 
+ 	register_stock_icons (plugin);
+ 
++	anjuta_status_busy_push (status);
++	anjuta_status_set (status, "%s", _("Loading Glade…"));
++	
++	priv->app = glade_app_get ();
+ 	if (!priv->app)
+ 	{
+-		anjuta_status_busy_push (status);
+-		anjuta_status_set (status, "%s", _("Loading Glade…"));
++		priv->app = glade_app_new ();
++	}
+ 
+-		priv->app = glade_app_get ();
++	glade_app_set_window (GTK_WIDGET (ANJUTA_PLUGIN(plugin)->shell));
+ 
+-		glade_app_set_window (GTK_WIDGET (ANJUTA_PLUGIN(plugin)->shell));
+-		glade_app_set_transient_parent (GTK_WINDOW (ANJUTA_PLUGIN(plugin)->shell));
+-		
+-		priv->inspector = glade_inspector_new ();
++	priv->inspector = glade_inspector_new ();
+ 
+-		g_signal_connect (priv->inspector, "item-activated",
+-		                  G_CALLBACK (inspector_item_activated_cb),
+-		                  plugin);
++	g_signal_connect (priv->inspector, "item-activated",
++	                  G_CALLBACK (inspector_item_activated_cb),
++	                  plugin);
+ 
+-		priv->paned = gtk_paned_new (GTK_ORIENTATION_VERTICAL);
++	priv->paned = gtk_paned_new (GTK_ORIENTATION_VERTICAL);
+ 
+-		priv->editor = GTK_WIDGET(glade_editor_new());
+-		priv->palette = glade_palette_new();
++	priv->editor = GTK_WIDGET(glade_editor_new());
++	priv->palette = glade_palette_new();
+ 
+-		gtk_paned_add1 (GTK_PANED(priv->paned), priv->inspector);
+-		gtk_paned_add2 (GTK_PANED(priv->paned), priv->editor);
++	gtk_paned_add1 (GTK_PANED(priv->paned), priv->inspector);
++	gtk_paned_add2 (GTK_PANED(priv->paned), priv->editor);
+ 
+-		gtk_widget_set_size_request (priv->inspector, -1, 300);
+-		
+-		gtk_widget_show_all (priv->paned);
++	gtk_widget_set_size_request (priv->inspector, -1, 300);
+ 
+-		anjuta_status_busy_pop (status);
+-	}
++	gtk_widget_show_all (priv->paned);
++
++	anjuta_status_busy_pop (status);
+ 
+ 	g_signal_connect(plugin->shell, "destroy",
+ 	                 G_CALLBACK(on_shell_destroy), plugin);
+@@ -419,12 +419,12 @@ activate_plugin (AnjutaPlugin *plugin)
+ 	                         priv->paned,
+ 	                         "AnjutaGladeTree", _("Widgets"),
+ 	                         "glade-plugin-widgets",
+-	                         ANJUTA_SHELL_PLACEMENT_LEFT, NULL);
++	                         ANJUTA_SHELL_PLACEMENT_RIGHT, NULL);
+ 	anjuta_shell_add_widget (ANJUTA_PLUGIN (plugin)->shell,
+ 	                         priv->palette,
+ 	                         "AnjutaGladePalette", _("Palette"),
+ 	                         "glade-plugin-palette",
+-	                         ANJUTA_SHELL_PLACEMENT_RIGHT, NULL);
++	                         ANJUTA_SHELL_PLACEMENT_LEFT, NULL);
+ 	/* Connect to save session */
+ 	g_signal_connect (G_OBJECT (plugin->shell), "save_session",
+ 	                  G_CALLBACK (on_session_save), plugin);
+@@ -611,11 +611,11 @@ ifile_open (IAnjutaFile *ifile, GFile* file, GError **err)
+ static GFile*
+ ifile_get_file (IAnjutaFile* ifile, GError** e)
+ {
+-	/*FIXME: const gchar* path = glade_project_get_path(glade_app_get_project());
++	GladePlugin* plugin = (GladePlugin*) ifile;
++	const gchar* path = 
++		glade_project_get_path(glade_inspector_get_project(GLADE_INSPECTOR (plugin->priv->inspector)));
+ 	GFile* file = g_file_new_for_path (path);
+ 	return file;
+-	*/
+-	return NULL;
+ }
+ 
+ static void
+--
+cgit v0.8.3.1
diff --git a/anjuta-2.91.5.0-libxml.patch b/anjuta-2.91.5.0-libxml.patch
new file mode 100644
index 0000000..93bdb58
--- /dev/null
+++ b/anjuta-2.91.5.0-libxml.patch
@@ -0,0 +1,33 @@
+--- anjuta-2.91.5.0.org/plugins/snippets-manager/Makefile.in	2011-01-19 13:31:16.651303001 +0530
++++ anjuta-2.91.5.0/plugins/snippets-manager/Makefile.in	2011-01-19 13:32:08.166303065 +0530
+@@ -406,7 +406,7 @@
+ AM_CPPFLAGS = \
+ 	$(WARN_CFLAGS) \
+ 	$(DEPRECATED_FLAGS) \
+-	$(LIBXML_CFLAGS) \
++	$(XML_CFLAGS) \
+ 	$(LIBANJUTA_CFLAGS) \
+ 	$(XML_CFLAGS) \
+ 	-DG_LOG_DOMAIN=\"libanjuta-snippets-manager\"
+--- anjuta-2.91.5.0.org/plugins/language-support-python/Makefile.in	2011-01-19 13:31:16.719303001 +0530
++++ anjuta-2.91.5.0/plugins/language-support-python/Makefile.in	2011-01-19 13:32:02.596302729 +0530
+@@ -390,7 +390,7 @@
+ python_plugin_plugindir = $(anjuta_plugin_dir)
+ python_plugin_plugin_DATA = $(plugin_in_files:.plugin.in=.plugin)
+ AM_CPPFLAGS = \
+-	$(LIBXML_CFLAGS) \
++	$(XML_CFLAGS) \
+ 	$(LIBANJUTA_CFLAGS) \
+ 	-DSCRIPTS_DIR=\"$(scriptsdir)\" \
+ 	-DG_LOG_DOMAIN=\"language-support-python\"
+--- anjuta-2.91.5.0.org/plugins/document-manager/Makefile.in	2011-01-19 13:31:16.798303001 +0530
++++ anjuta-2.91.5.0/plugins/document-manager/Makefile.in	2011-01-19 13:31:55.302303147 +0530
+@@ -427,7 +427,7 @@
+ 	$(DEPRECATED_FLAGS) \
+ 	$(GDL_CFLAGS) \
+ 	$(GIO_CFLAGS) \
+-	$(LIBXML_CFLAGS) \
++	$(XML_CFLAGS) \
+ 	$(LIBANJUTA_CFLAGS) \
+ 	-DG_LOG_DOMAIN=\"libanjuta-document-manager\"
+ 
diff --git a/anjuta.spec b/anjuta.spec
index 9802bb6..6080bcf 100644
--- a/anjuta.spec
+++ b/anjuta.spec
@@ -4,13 +4,14 @@
 Summary:	A GNOME development IDE for C/C++
 Name:		anjuta
 Epoch:		1
-Version:	2.91.3.0
+Version:	2.91.5.0
 Release:	1%{?dist}
 License:	GPLv2+
 Group:		Development/Tools
 URL:		http://www.anjuta.org/
-Source0:	http://download.gnome.org/sources/anjuta/2.32/%{name}-%{version}.tar.bz2
-
+Source0:	http://download.gnome.org/sources/anjuta/2.91/%{name}-%{version}.tar.bz2
+Patch0:		anjuta-%{version}-libxml.patch
+Patch1:		anjuta-%{version}-glade_plugin.patch
 BuildRoot:	%(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
 
 Obsoletes:	gnome-build <= 2.24.1-1.fc10
@@ -41,7 +42,7 @@ BuildRequires:	gettext
 BuildRequires:	glade3-libgladeui-devel >= 3.6.0
 BuildRequires:	gnome-doc-utils
 BuildRequires:	graphviz-devel
-BuildRequires:	gtksourceview2-devel >= 2.9.7
+BuildRequires:	gtksourceview3-devel >= 2.91.4
 BuildRequires:	intltool
 BuildRequires:	libgda-devel >= 4.0.0
 BuildRequires:	libgdl-devel >= 2.27.1
@@ -55,8 +56,9 @@ BuildRequires:	sqlite-devel
 BuildRequires:	subversion-devel
 BuildRequires:	unique-devel >= 1.0.0
 BuildRequires:	vala-devel >= 0.7.8
-BuildRequires:	vte-devel
+BuildRequires:	vte3-devel
 BuildRequires:	unique3-devel
+BuildRequires:  libxml2-devel
 
 %description
 Anjuta DevStudio is a versatile Integrated Development Environment (IDE) on
@@ -92,6 +94,8 @@ Documentation for Anjuta DevStudio provided in DocBook format.
 
 %prep
 %setup -q
+%patch0 -p1 -b .libxml
+%patch1 -p1 -b .glade_plugin
 
 %if %{__isa_bits} == 64
   sed --in-place 's/\/usr\/lib\/pkgconfig/\/usr\/lib64\/pkgconfig/g' \
@@ -157,22 +161,24 @@ make %{?_smp_mflags}
 
 # Strip unneeded translations from .mo files:
 # http://bugzilla.gnome.org/474987
-pushd ./po
-  grep --invert-match \
-    ".*[.]desktop[.]in[.]in$\|.*[.]server[.]in[.]in$" \
-    POTFILES.in > POTFILES.keep
-  mv POTFILES.keep POTFILES.in
-  intltool-update --pot
-  for p in *.po; do
-    msgmerge $p %{name}.pot > $p.out
-    msgfmt -o `basename $p .po`.gmo $p.out
-  done
-popd
+# pushd ./po
+#   grep --invert-match \
+#     ".*[.]desktop[.]in[.]in$\|.*[.]server[.]in[.]in$" \
+#     POTFILES.in > POTFILES.keep
+#   mv POTFILES.keep POTFILES.in
+#   intltool-update --pot
+#   for p in *.po; do
+#     msgmerge $p %{name}.pot > $p.out
+#     msgfmt -o `basename $p .po`.gmo $p.out
+#   done
+# popd
 
 %install
 rm -rf $RPM_BUILD_ROOT
 export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1
-mkdir -p $RPM_BUILD_ROOT%{_libdir}/libglade/2.0
+
+# Because $RPM_BUILD_ROOT%{_libdir}/libglade/2.0 is disabled below
+#mkdir -p $RPM_BUILD_ROOT%{_libdir}/libglade/2.0
 
 # Installs zero-length files necessary for proper behaviour.
 make install INSTALL="%{__install} -p" DESTDIR=$RPM_BUILD_ROOT
@@ -182,9 +188,9 @@ find $RPM_BUILD_ROOT -type f -name "*.la" -delete
 rm -rf $RPM_BUILD_ROOT%{_docdir}/%{name}
 
 # Some plugins (eg., Git and Subversion) need this.
-pushd $RPM_BUILD_ROOT%{_libdir}/libglade/2.0
-  ln -s ../../libanjuta.so.0 libanjuta.so
-popd
+#pushd $RPM_BUILD_ROOT%{_libdir}/libglade/2.0
+#  ln -s ../../libanjuta.so.0 libanjuta.so
+#popd
 
 %find_lang %{name}
 
@@ -195,34 +201,10 @@ desktop-file-install --remove-key Encoding --vendor fedora --delete-original \
 %clean
 rm -rf $RPM_BUILD_ROOT
 
-%pre
-%gconf_schema_prepare file-manager
-%gconf_schema_prepare %{name}-build-basic-autotools-plugin
-%gconf_schema_prepare %{name}-cvs-plugin
-%gconf_schema_prepare %{name}-debug-manager
-%gconf_schema_prepare %{name}-document-manager
-%gconf_schema_prepare %{name}-editor-sourceview
-%gconf_schema_prepare %{name}-language-cpp-java
-%gconf_schema_prepare %{name}-message-manager-plugin
-%gconf_schema_prepare %{name}-symbol-db
-%gconf_schema_prepare %{name}-terminal-plugin
-%gconf_schema_prepare preferences
 
 %post
 /sbin/ldconfig
 
-%gconf_schema_upgrade file-manager
-%gconf_schema_upgrade %{name}-build-basic-autotools-plugin
-%gconf_schema_upgrade %{name}-cvs-plugin
-%gconf_schema_upgrade %{name}-debug-manager
-%gconf_schema_upgrade %{name}-document-manager
-%gconf_schema_upgrade %{name}-editor-sourceview
-%gconf_schema_upgrade %{name}-language-cpp-java
-%gconf_schema_upgrade %{name}-message-manager-plugin
-%gconf_schema_upgrade %{name}-symbol-db
-%gconf_schema_upgrade %{name}-terminal-plugin
-%gconf_schema_upgrade preferences
-
 if [ -x %{_bindir}/update-desktop-database ]; then
   update-desktop-database &> /dev/null || :
 fi
@@ -234,19 +216,6 @@ fi
 touch --no-create %{_datadir}/icons/gnome &>/dev/null || :
 touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
 
-%preun
-%gconf_schema_remove file-manager
-%gconf_schema_remove %{name}-build-basic-autotools-plugin
-%gconf_schema_remove %{name}-cvs-plugin
-%gconf_schema_remove %{name}-debug-manager
-%gconf_schema_remove %{name}-document-manager
-%gconf_schema_remove %{name}-editor-sourceview
-%gconf_schema_remove %{name}-language-cpp-java
-%gconf_schema_remove %{name}-message-manager-plugin
-%gconf_schema_remove %{name}-symbol-db
-%gconf_schema_remove %{name}-terminal-plugin
-%gconf_schema_remove preferences
-
 %postun
 /sbin/ldconfig
 
@@ -263,11 +232,13 @@ if [ $1 -eq 0 ]; then
   touch --no-create %{_datadir}/icons/hicolor &>/dev/null
   gtk-update-icon-cache %{_datadir}/icons/gnome &>/dev/null || :
   gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
+  glib-compile-schemas %{_datadir}/glib-2.0/schemas
 fi
 
 %posttrans
 gtk-update-icon-cache %{_datadir}/icons/gnome &>/dev/null || :
 gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
+glib-compile-schemas %{_datadir}/glib-2.0/schemas
 
 %files -f %{name}.lang
 %defattr(-,root,root,-)
@@ -280,12 +251,9 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
 %doc %{_mandir}/man1/%{name}.1*
 %doc %{_mandir}/man1/%{name}-launcher.1*
 %{_bindir}/%{name}
-%{_bindir}/gbf-am-parse
-%{_bindir}/gbf-mkfile-parse
 %{_bindir}/%{name}-launcher
 %{_bindir}/%{name}-tags
 %{_datadir}/applications/fedora-%{name}.desktop
-%{_datadir}/glade3/catalogs/anjuta-glade.xml
 %{_datadir}/icons/gnome/16x16/mimetypes/gnome-mime-application-x-%{name}.png
 %{_datadir}/icons/gnome/22x22/mimetypes/gnome-mime-application-x-%{name}.png
 %{_datadir}/icons/gnome/24x24/mimetypes/gnome-mime-application-x-%{name}.png
@@ -299,24 +267,24 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
 %{_datadir}/icons/hicolor/48x48/apps/%{name}.png
 %{_datadir}/icons/hicolor/scalable/apps/%{name}.svg
 %{_datadir}/mime/packages/%{name}.xml
-# No soname.
-%{_libdir}/glade3/modules/libgladeanjuta.so
-%{_libdir}/libanjuta.so.*
-%{_libdir}/libanjuta-foocanvas.so.*
-# Symlink to libanjuta.so.*.
-%{_libdir}/libglade/2.0/libanjuta.so
-%{_sysconfdir}/gconf/schemas/file-manager.schemas
-%{_sysconfdir}/gconf/schemas/%{name}-build-basic-autotools-plugin.schemas
-%{_sysconfdir}/gconf/schemas/%{name}-cvs-plugin.schemas
-%{_sysconfdir}/gconf/schemas/%{name}-debug-manager.schemas
-%{_sysconfdir}/gconf/schemas/%{name}-document-manager.schemas
-%{_sysconfdir}/gconf/schemas/%{name}-editor-sourceview.schemas
-%{_sysconfdir}/gconf/schemas/%{name}-language-cpp-java.schemas
-%{_sysconfdir}/gconf/schemas/%{name}-message-manager-plugin.schemas
-%{_sysconfdir}/gconf/schemas/%{name}-symbol-db.schemas
-%{_sysconfdir}/gconf/schemas/%{name}-terminal-plugin.schemas
-%{_sysconfdir}/gconf/schemas/preferences.schemas
-%{_sysconfdir}/gconf/schemas/python-plugin-properties.schemas
+%{_libdir}/libanjuta-3.so.*
+%{_datadir}/glib-2.0/schemas/org.gnome.anjuta.build.gschema.xml
+%{_datadir}/glib-2.0/schemas/org.gnome.anjuta.code-analyzer.gschema.xml
+%{_datadir}/glib-2.0/schemas/org.gnome.anjuta.cpp.gschema.xml
+%{_datadir}/glib-2.0/schemas/org.gnome.anjuta.cvs.gschema.xml
+%{_datadir}/glib-2.0/schemas/org.gnome.anjuta.debug-manager.gschema.xml
+%{_datadir}/glib-2.0/schemas/org.gnome.anjuta.document-manager.gschema.xml
+%{_datadir}/glib-2.0/schemas/org.gnome.anjuta.file-manager.gschema.xml
+%{_datadir}/glib-2.0/schemas/org.gnome.anjuta.gschema.xml
+%{_datadir}/glib-2.0/schemas/org.gnome.anjuta.js.gschema.xml
+%{_datadir}/glib-2.0/schemas/org.gnome.anjuta.message-manager.gschema.xml
+%{_datadir}/glib-2.0/schemas/org.gnome.anjuta.python.gschema.xml
+%{_datadir}/glib-2.0/schemas/org.gnome.anjuta.run.gschema.xml
+%{_datadir}/glib-2.0/schemas/org.gnome.anjuta.snippets.gschema.xml
+%{_datadir}/glib-2.0/schemas/org.gnome.anjuta.sourceview.gschema.xml
+%{_datadir}/glib-2.0/schemas/org.gnome.anjuta.symbol-db.gschema.xml
+%{_datadir}/glib-2.0/schemas/org.gnome.anjuta.terminal.gschema.xml
+%{_datadir}/glib-2.0/schemas/org.gnome.anjuta.tools.gschema.xml
 
 %dir %{_datadir}/%{name}
 %{_datadir}/%{name}/*
@@ -330,15 +298,14 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
 %files devel
 %defattr (-,root,root,-)
 %doc doc/ScintillaDoc.html
-%{_libdir}/libanjuta.so
-%{_libdir}/libanjuta-foocanvas.so
-%{_libdir}/pkgconfig/libanjuta-1.0.pc
+%{_libdir}/libanjuta-3.so
+%{_libdir}/pkgconfig/libanjuta-3.0.pc
 
 %dir %{_datadir}/gtk-doc/html/libanjuta
 %doc %{_datadir}/gtk-doc/html/libanjuta/*
 
-%dir %{_includedir}/libanjuta-1.0
-%{_includedir}/libanjuta-1.0/libanjuta
+%dir %{_includedir}/libanjuta-3.0
+%{_includedir}/libanjuta-3.0/libanjuta
 
 %files doc
 %defattr(-,root,root,-)
@@ -356,6 +323,39 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
 %{_datadir}/omf/%{name}-manual/%{name}-manual-*.omf
 
 %changelog
+* Tue Jan 11 2011 Rakesh Pandit <rakesh at fedoraproject.org> 2.91.5.0-1
+- Replaced vte-devel with vte3-devel as dep 
+- Updated to 2.91.5.0
+ * Updates:
+  - Glade integration is working again and far more stable
+  - Devhelp plugin is here gain
+  - New class generation for Vala, Python and Javascript (Kenny)
+  - New artwork (Samuel)
+  - Comment/Uncomment feature for C/C++
+  - Various improvements in vala support
+ * Bugs (Gnome BZ) fixed:
+  - 638228 language-support-vala: interrupt parsing if user switches to another file
+  - 638252 language-support-vala: use the new markers to show error tooltips
+  - 511000 Icons needed
+  - 638532 crash in plugin list when pressing cursor-down
+  - 637699 JavaScript wizard
+  - 637774 Add Vala class wizard to class-gen
+  - 638534 Criticals with local-only repositories
+  - 616426 model wants symbols before db creation.
+  - 625399 Attempt to make a query when database is not connected
+  - 633018 crash in Anjuta IDE: I closed a project, wich...
+  - 637695 allow comment/uncomment with gtksourceview editor
+  - 638097 Remove deprecated gdk_spawn_command_line_on_screen gdk_spawn_on_screen
+  - 638347 Incorrect makefile
+  - 638830 Fortan typo?
+  - 638878 $(BUILT_SOURCES): No such file or directory
+  - 638034 Unable to create new project
+  - 638524 Syntax error on valid configure.ac files
+- Added libxml patch
+- Added glade plugin patch
+- Disabled stripping unneeded translation for time being
+- Disabled /usr/lib64/libglade/2.0/libanjuta symlink
+
 * Tue Dec 07 2010 Bastien Nocera <bnocera at redhat.com> 2.91.3.0-1
 - Update to 2.91.3.0
 
diff --git a/sources b/sources
index 6cdac9a..59ba7d5 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-c08a901924112c813b7852aa5daa79d9  anjuta-2.91.3.0.tar.bz2
+d0b7ad12a4979c0561802b55eb33637a  anjuta-2.91.5.0.tar.bz2


More information about the scm-commits mailing list