debian/0000775000000000000000000000000012314562632007174 5ustar debian/patches/0000775000000000000000000000000012314562632010623 5ustar debian/patches/00git_state_property_type.patch0000664000000000000000000000151612314562632016777 0ustar From 8169570aac438d5215a98528312810acfb6235ef Mon Sep 17 00:00:00 2001 From: Sebastien Lafargue Date: Tue, 07 Jan 2014 20:21:25 +0000 Subject: Use proper function for retrieving 'state' property on window object ( flags instead of enum ) https://bugzilla.gnome.org/show_bug.cgi?id=721730 --- (limited to 'gedit/gedit-window.c') diff --git a/gedit/gedit-window.c b/gedit/gedit-window.c index e5309cf..82bde2d 100644 --- a/gedit/gedit-window.c +++ b/gedit/gedit-window.c @@ -110,8 +110,8 @@ gedit_window_get_property (GObject *object, switch (prop_id) { case PROP_STATE: - g_value_set_enum (value, - gedit_window_get_state (window)); + g_value_set_flags (value, + gedit_window_get_state (window)); break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); -- cgit v0.9.2 debian/patches/01_gedit-bugreport-location.patch0000664000000000000000000000101112314562632017046 0ustar Index: gedit-3.7.4/data/gedit.desktop.in.in =================================================================== --- gedit-3.7.4.orig/data/gedit.desktop.in.in +++ gedit-3.7.4/data/gedit.desktop.in.in @@ -15,7 +15,7 @@ X-GNOME-Bugzilla-Product=gedit X-GNOME-Bugzilla-Component=general X-GNOME-Bugzilla-Version=@VERSION@ -X-GNOME-Bugzilla-ExtraInfoScript=@FULL_LIBEXECDIR@/gedit/gedit-bugreport.sh +X-GNOME-Bugzilla-ExtraInfoScript=@prefix@/share/gedit/gedit-bugreport Actions=Window;Document; _Keywords=Text;Editor; debian/patches/02_add_keywords.patch0000664000000000000000000000103212314562632014620 0ustar Index: gedit-3.5.3/data/gedit.desktop.in.in =================================================================== --- gedit-3.5.3.orig/data/gedit.desktop.in.in 2012-09-20 10:30:35.814514712 +1200 +++ gedit-3.5.3/data/gedit.desktop.in.in 2012-09-20 10:30:58.806513916 +1200 @@ -17,7 +17,7 @@ X-GNOME-Bugzilla-Version=@VERSION@ X-GNOME-Bugzilla-ExtraInfoScript=@prefix@/share/gedit/gedit-bugreport Actions=Window;Document; -_Keywords=Text;Editor; +_Keywords=Text;Editor;Plaintext;Write; [Desktop Action Window] _Name=Open a New Window debian/patches/03_no_gnu_gettext.patch0000664000000000000000000000075212314562632015203 0ustar Index: gedit-3.10.4/configure.ac =================================================================== --- gedit-3.10.4.orig/configure.ac 2014-02-04 10:26:08.225200531 +0000 +++ gedit-3.10.4/configure.ac 2014-02-04 10:26:08.217196532 +0000 @@ -165,9 +165,6 @@ IT_PROG_INTLTOOL([0.50.1]) -AM_GNU_GETTEXT_VERSION([0.18]) -AM_GNU_GETTEXT([external]) - AC_SUBST([GETTEXT_PACKAGE], [gedit]) AC_DEFINE_UNQUOTED([GETTEXT_PACKAGE], "$GETTEXT_PACKAGE", [Define to the gettext package name.]) debian/patches/05_menu_label.patch0000664000000000000000000000124212314562632014252 0ustar Description: Don't display in menu as "gedit Text Editor" Author: Robert Ancell Index: gedit-3.5.3/data/gedit.desktop.in.in =================================================================== --- gedit-3.5.3.orig/data/gedit.desktop.in.in 2012-09-20 10:30:58.806513916 +1200 +++ gedit-3.5.3/data/gedit.desktop.in.in 2012-09-20 10:31:03.498513757 +1200 @@ -10,7 +10,7 @@ Icon=accessories-text-editor Categories=GNOME;GTK;Utility;TextEditor; X-GNOME-DocPath=gedit/gedit.xml -_X-GNOME-FullName=gedit Text Editor +_X-GNOME-FullName=Text Editor X-GNOME-Bugzilla-Bugzilla=GNOME X-GNOME-Bugzilla-Product=gedit X-GNOME-Bugzilla-Component=general debian/patches/06_lp_401692.patch0000664000000000000000000000173212314562632013414 0ustar Description: Patch to fix ubuntu bug #401692 This patch fixes ubuntu bug #401692 by setting the default name of a new document to 'Untitled Document' in file gedit/gedit-document.c . Author: Bilal Akhtar Bug-Ubuntu: https://launchpad.net/bugs/401692 Index: gedit-3.10.4/gedit/gedit-document.c =================================================================== --- gedit-3.10.4.orig/gedit/gedit-document.c 2014-02-04 10:26:12.735454488 +0000 +++ gedit-3.10.4/gedit/gedit-document.c 2014-02-04 10:26:12.731452489 +0000 @@ -1263,7 +1263,7 @@ if (doc->priv->location == NULL) { - return g_strdup_printf (_("Unsaved Document %d"), + return g_strdup_printf (_("Untitled Document %d"), doc->priv->untitled_number); } else @@ -1289,7 +1289,7 @@ } else if (doc->priv->location == NULL) { - return g_strdup_printf (_("Unsaved Document %d"), + return g_strdup_printf (_("Untitled Document %d"), doc->priv->untitled_number); } else debian/patches/07_use_del_instead_ctrl_del.patch0000664000000000000000000000147212314562632017155 0ustar From 9f30645e269cce029ceffaf13798ac72cc9a88c3 Mon Sep 17 00:00:00 2001 From: Ignacio Casal Quinteiro Date: Mon, 04 Apr 2011 16:56:16 +0000 Subject: Control+Delete to send files to the trash. Same as in nautilus. --- Index: gedit-3.10.4/plugins/filebrowser/gedit-file-browser-widget.c =================================================================== --- gedit-3.10.4.orig/plugins/filebrowser/gedit-file-browser-widget.c 2014-02-04 10:26:14.052112475 +0000 +++ gedit-3.10.4/plugins/filebrowser/gedit-file-browser-widget.c 2014-02-04 10:26:14.044108477 +0000 @@ -2890,7 +2890,7 @@ delete_selected_files (obj, FALSE); return TRUE; } - else if ((event->state & modifiers) == GDK_CONTROL_MASK) + else if ((event->state & modifiers) == 0) { delete_selected_files (obj, TRUE); return TRUE; debian/patches/08_multiarch_fallback.patch0000664000000000000000000000517612314562632015773 0ustar Description: Also load plugins from pre-multiarch directory Author: Jeremy Bicha Forwarded: not-needed Index: gedit-3.10.4/gedit/gedit-dirs.c =================================================================== --- gedit-3.10.4.orig/gedit/gedit-dirs.c 2014-02-04 10:26:15.676924460 +0000 +++ gedit-3.10.4/gedit/gedit-dirs.c 2014-02-04 10:26:15.672922461 +0000 @@ -38,6 +38,7 @@ static gchar *gedit_locale_dir = NULL; static gchar *gedit_lib_dir = NULL; static gchar *gedit_plugins_dir = NULL; +static gchar *gedit_fallback_plugins_dir = NULL; static gchar *gedit_plugins_data_dir = NULL; void @@ -113,6 +114,9 @@ gedit_plugins_dir = g_build_filename (gedit_lib_dir, "plugins", NULL); + gedit_fallback_plugins_dir = g_build_filename ("/usr/lib/gedit", + "plugins", + NULL); gedit_plugins_data_dir = g_build_filename (gedit_data_dir, "plugins", NULL); @@ -129,6 +133,7 @@ g_free (gedit_locale_dir); g_free (gedit_lib_dir); g_free (gedit_plugins_dir); + g_free (gedit_fallback_plugins_dir); g_free (gedit_plugins_data_dir); } @@ -181,6 +186,12 @@ } const gchar * +gedit_dirs_get_gedit_fallback_plugins_dir (void) +{ + return gedit_fallback_plugins_dir; +} + +const gchar * gedit_dirs_get_gedit_plugins_data_dir (void) { return gedit_plugins_data_dir; Index: gedit-3.10.4/gedit/gedit-dirs.h =================================================================== --- gedit-3.10.4.orig/gedit/gedit-dirs.h 2014-02-04 10:26:15.676924460 +0000 +++ gedit-3.10.4/gedit/gedit-dirs.h 2014-02-04 10:26:15.672922461 +0000 @@ -50,6 +50,8 @@ const gchar *gedit_dirs_get_gedit_plugins_dir (void); +const gchar *gedit_dirs_get_gedit_fallback_plugins_dir (void); + const gchar *gedit_dirs_get_gedit_plugins_data_dir (void); gchar *gedit_dirs_get_ui_file (const gchar *file); Index: gedit-3.10.4/gedit/gedit-plugins-engine.c =================================================================== --- gedit-3.10.4.orig/gedit/gedit-plugins-engine.c 2014-02-04 10:26:15.676924460 +0000 +++ gedit-3.10.4/gedit/gedit-plugins-engine.c 2014-02-04 10:26:15.672922461 +0000 @@ -108,6 +108,10 @@ gedit_dirs_get_gedit_plugins_dir (), gedit_dirs_get_gedit_plugins_data_dir ()); + peas_engine_add_search_path (PEAS_ENGINE (engine), + gedit_dirs_get_gedit_fallback_plugins_dir (), + gedit_dirs_get_gedit_plugins_data_dir ()); + g_settings_bind (engine->priv->plugin_settings, GEDIT_SETTINGS_ACTIVE_PLUGINS, engine, debian/patches/fix_snippet_warning.patch0000664000000000000000000000202512314562632015720 0ustar Description: fix deprecation warning in the snippet plugin Author: Marc Deslauriers Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/gedit/+bug/1270458 Forwarded: no, code was refactored Index: gedit-3.10.3/plugins/snippets/snippets/windowactivatable.py =================================================================== --- gedit-3.10.3.orig/plugins/snippets/snippets/windowactivatable.py 2013-06-26 13:27:01.000000000 -0400 +++ gedit-3.10.3/plugins/snippets/snippets/windowactivatable.py 2014-01-18 12:25:55.965807081 -0500 @@ -148,7 +148,7 @@ def insert_menu(self): manager = self.window.get_ui_manager() - self.action_group = Gtk.ActionGroup("GeditSnippetPluginActions") + self.action_group = Gtk.ActionGroup.new("GeditSnippetPluginActions") self.action_group.set_translation_domain('gedit') self.action_group.add_actions([('ManageSnippets', None, _('Manage _Snippets...'), \ debian/patches/fix_snippets_python34.patch0000664000000000000000000000224512314562632016132 0ustar From 8a33f3205ca4b0678173e0470761227270f72dd9 Mon Sep 17 00:00:00 2001 From: Marc Deslauriers Date: Thu, 20 Feb 2014 09:51:20 -0500 Subject: [PATCH] snippets: Replace deprecated XMLTreeBuilder with XMLParser XMLTreeBuilder was changed to XMLParser in ElementTree 1.3. Python 3.4 dropped the compatibility XMLTreeBuilder object. This change simply uses the new object name to fix compatibility with Python 3.4. https://bugzilla.gnome.org/show_bug.cgi?id=724803 --- plugins/snippets/snippets/library.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/snippets/snippets/library.py b/plugins/snippets/snippets/library.py index 5ff0ffb..c60695f 100644 --- a/plugins/snippets/snippets/library.py +++ b/plugins/snippets/snippets/library.py @@ -453,7 +453,7 @@ class SnippetsSystemFile: lambda node: elements.append((node, True)), \ lambda node: elements.append((node, False))) - parser = et.XMLTreeBuilder(target=builder) + parser = et.XMLParser(target=builder) self.insnippet = False try: -- 1.9.0 debian/patches/git_filebrowser_toolbar.patch0000664000000000000000000000336612314562632016564 0ustar From f298b904d65eb7c44fb537b1d748e18e1053c50b Mon Sep 17 00:00:00 2001 From: Lars Uebernickel Date: Wed, 08 Jan 2014 17:57:47 +0000 Subject: filebrowser: don't set .primary-toolbar The toolbar in the file browser widget is not a primary toolbar, so don't set that class. Also, set some margins on the toolbar buttons which would otherwise look too cramped when styled on a non-primary toolbar. https://bugzilla.gnome.org/show_bug.cgi?id=721813 --- diff --git a/plugins/filebrowser/gedit-file-browser-widget.ui b/plugins/filebrowser/gedit-file-browser-widget.ui index 540580b..70eafba 100644 --- a/plugins/filebrowser/gedit-file-browser-widget.ui +++ b/plugins/filebrowser/gedit-file-browser-widget.ui @@ -30,15 +30,13 @@ False icons 1 - True False False center + 2 -- cgit v0.9.2 debian/patches/git_save_run_tool_order.patch0000664000000000000000000000274112314562632016565 0ustar From 6c99bb727a8697e37cd55e0ccf40e4069e65f1ce Mon Sep 17 00:00:00 2001 From: Paolo Borelli Date: Fri, 07 Feb 2014 08:59:22 +0000 Subject: Actually save the *modified* docs before running a tool Fixes bug https://bugzilla.gnome.org/show_bug.cgi?id=659437 Based on the analysis by Andrew Fountain --- diff --git a/plugins/externaltools/tools/functions.py b/plugins/externaltools/tools/functions.py index d23b0f7..2aedecd 100644 --- a/plugins/externaltools/tools/functions.py +++ b/plugins/externaltools/tools/functions.py @@ -247,25 +247,19 @@ class MultipleDocumentsSaver: else: docs = [window.get_active_document()] - for i in range(len(docs)): - doc = docs[i] - - if doc.get_modified(): - all_docs = False - docs.remove(doc) - + docs_to_save = [ doc for doc in docs if doc.get_modified() ] signals = {} - for doc in docs: + for doc in docs_to_save: signals[doc] = doc.connect('saving', self.on_document_saving) - if all_docs: + if len(docs_to_save) == len(docs) and len(docs) != 0: Gedit.commands_save_all_documents(window) else: - for doc in docs: + for doc in docs_to_save: Gedit.commands_save_document(window, doc) - for doc in docs: + for doc in docs_to_save: doc.disconnect(signals[doc]) self.run_tool() -- cgit v0.9.2 debian/patches/git_store_dialog.patch0000664000000000000000000000665212314562632015173 0ustar From 6c9695d4ebf8a9de900d1fef054b3439dfca395b Mon Sep 17 00:00:00 2001 From: Sébastien Wilmet Date: Sun, 03 Nov 2013 15:08:02 +0000 Subject: CloseConfirmationDialog: UI improvements The dialog is now resizable on multi mode. It is useful when the list of unsaved documents is long, and we want to show all of them. The scrolled window around the tree view has a greater minimum height, so by default more documents can be shown. The vbox2 must have the expand and fill properties to true (with gtk_box_pack_start()), so the treeview expands when the dialog window is resized. The size request of the tree view is removed, since it has no effect inside a scrolled window (but it's maybe a bug in gtk, I just get used to work around the problem, and set the size on the scrolled window instead). (and the policy for a scrolled window is "automatic" by default in GTK+ 3) It would have been better to have (1) natural height if below N (2) scrolled window if above N. With N at a treeview row boundary. But it is not easily feasible with gtk+ afaik (in gtksourceview we use a custom container for that...). https://bugzilla.gnome.org/show_bug.cgi?id=708711 --- diff --git a/gedit/gedit-close-confirmation-dialog.c b/gedit/gedit-close-confirmation-dialog.c index 32f836b..735672f 100644 --- a/gedit/gedit-close-confirmation-dialog.c +++ b/gedit/gedit-close-confirmation-dialog.c @@ -134,7 +134,6 @@ gedit_close_confirmation_dialog_init (GeditCloseConfirmationDialog *dlg) gtk_container_set_border_width (GTK_CONTAINER (dlg), 5); gtk_box_set_spacing (GTK_BOX (gtk_dialog_get_content_area (GTK_DIALOG (dlg))), 14); - gtk_window_set_resizable (GTK_WINDOW (dlg), FALSE); gtk_window_set_skip_taskbar_hint (GTK_WINDOW (dlg), TRUE); gtk_window_set_title (GTK_WINDOW (dlg), ""); @@ -445,6 +444,8 @@ build_single_doc_dialog (GeditCloseConfirmationDialog *dlg) gchar *str; gchar *markup_str; + gtk_window_set_resizable (GTK_WINDOW (dlg), FALSE); + g_return_if_fail (dlg->priv->unsaved_documents->data != NULL); doc = GEDIT_DOCUMENT (dlg->priv->unsaved_documents->data); @@ -573,7 +574,6 @@ create_treeview (GeditCloseConfirmationDialogPrivate *priv) GtkTreeViewColumn *column; treeview = gtk_tree_view_new (); - gtk_widget_set_size_request (treeview, 260, 120); gtk_tree_view_set_headers_visible (GTK_TREE_VIEW (treeview), FALSE); gtk_tree_view_set_enable_search (GTK_TREE_VIEW (treeview), FALSE); @@ -684,7 +684,7 @@ build_multiple_docs_dialog (GeditCloseConfirmationDialog *dlg) gtk_box_pack_start (GTK_BOX (vbox), primary_label, FALSE, FALSE, 0); vbox2 = gtk_box_new (GTK_ORIENTATION_VERTICAL, 8); - gtk_box_pack_start (GTK_BOX (vbox), vbox2, FALSE, FALSE, 0); + gtk_box_pack_start (GTK_BOX (vbox), vbox2, TRUE, TRUE, 0); if (priv->disable_save_to_disk) { @@ -701,11 +701,9 @@ build_multiple_docs_dialog (GeditCloseConfirmationDialog *dlg) scrolledwindow = gtk_scrolled_window_new (NULL, NULL); gtk_box_pack_start (GTK_BOX (vbox2), scrolledwindow, TRUE, TRUE, 0); - gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolledwindow), - GTK_POLICY_AUTOMATIC, - GTK_POLICY_AUTOMATIC); gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW (scrolledwindow), GTK_SHADOW_IN); + gtk_scrolled_window_set_min_content_height (GTK_SCROLLED_WINDOW (scrolledwindow), 60); treeview = create_treeview (priv); gtk_container_add (GTK_CONTAINER (scrolledwindow), treeview); -- cgit v0.9.2 debian/patches/series0000664000000000000000000000053612314562632012044 0ustar 00git_state_property_type.patch 01_gedit-bugreport-location.patch 02_add_keywords.patch 03_no_gnu_gettext.patch 05_menu_label.patch 06_lp_401692.patch 07_use_del_instead_ctrl_del.patch 08_multiarch_fallback.patch git_filebrowser_toolbar.patch fix_snippet_warning.patch git_store_dialog.patch git_save_run_tool_order.patch fix_snippets_python34.patch debian/source/0000775000000000000000000000000012314562632010474 5ustar debian/source/format0000664000000000000000000000001412314562632011702 0ustar 3.0 (quilt) debian/changelog0000664000000000000000000016076312314562632011063 0ustar gedit (3.10.4-0ubuntu4) trusty; urgency=medium * Add 00git_state_property_type.patch: Fix type of GeditWindow state property, to avoid crashes with autopilot when introspecting it. (LP: #1283966) -- Martin Pitt Wed, 26 Mar 2014 15:34:58 +0100 gedit (3.10.4-0ubuntu3) trusty; urgency=medium * Fix snippets plugin with Python 3.4 (LP: #1282607) -- Marc Deslauriers Thu, 20 Feb 2014 09:56:39 -0500 gedit (3.10.4-0ubuntu2) trusty; urgency=medium * debian/patches/git_store_dialog.patch: tweaks to the save files dialog, give enough space to list several documents (lp: #988946) * debian/patches/git_save_run_tool_order.patch: - save the *modified* documents before running a tool (lp: #1244338) -- Sebastien Bacher Mon, 10 Feb 2014 16:49:22 +0100 gedit (3.10.4-0ubuntu1) trusty; urgency=medium * New upstream release -- Robert Ancell Tue, 04 Feb 2014 10:25:10 +0000 gedit (3.10.3-0ubuntu3) trusty; urgency=medium * debian/patches/fix_snippet_warning.patch: fix deprecation warning in the snippet plugin. (LP: #1270458) -- Marc Deslauriers Sat, 18 Jan 2014 12:27:20 -0500 gedit (3.10.3-0ubuntu2) trusty; urgency=medium * debian/patches/git_filebrowser_toolbar.patch: - use correct toolbar styling, thanks Lars Uebernickel (lp: #1260761) -- Sebastien Bacher Fri, 10 Jan 2014 15:57:37 +0100 gedit (3.10.3-0ubuntu1) trusty; urgency=medium * New upstream version -- Sebastien Bacher Tue, 07 Jan 2014 11:39:52 +0100 gedit (3.10.2-0ubuntu1) trusty; urgency=medium * New upstream release -- Robert Ancell Tue, 17 Dec 2013 12:47:09 +1300 gedit (3.10.1-0ubuntu1) trusty; urgency=low * New upstream version, 3.10 has mostly bug fixes and small improvements * debian/control.in: - recommends gir1.2-gtksource-3.0, since some ofthe plugins import it (lp: #1239130) - updated depends on glib, gtk and gtksourceview * debian/gedit-common.install: install the new appdata directory -- Sebastien Bacher Thu, 12 Dec 2013 15:47:50 +0100 gedit (3.8.3-0ubuntu3) saucy; urgency=low * Mark gedit-dev Architecture: any -- Jeremy Bicha Sun, 14 Jul 2013 00:00:36 -0400 gedit (3.8.3-0ubuntu2) saucy; urgency=low * Bump dh compat to 9 and update install directories * debian/patches/08_multiarch_fallback.patch: - Load plugins from the non-multiarch directory too for compatibility with existing packages -- Jeremy Bicha Sat, 13 Jul 2013 22:07:36 -0400 gedit (3.8.3-0ubuntu1) saucy; urgency=low * New upstream release * debian/control.in: - Build-depend on libzeitgeist-2.0-dev instead of libzeitgeist-dev * debian/patches/07_use_del_instead_ctrl_del.patch: - Use Delete, not Ctrl+Delete, to delete files in file browser side panel to match our Nautilus behavior (LP: #1163287) * debian/patches/10_add_zeitgeist_to_active_plugins.patch: - Dropped, replaced by override in ubuntu-settings & ubuntu-gnome-default-settings * debian/patches/revert_new_libzg_depends.patch: - Dropped, no longer needed -- Jeremy Bicha Wed, 26 Jun 2013 17:13:08 -0400 gedit (3.8.2-0ubuntu1) saucy; urgency=low * New upstream version * debian/patches/revert_new_libzg_depends.patch: - revert the port to the new libzg until we get that one [ Jeremy Bicha ] * debian/control.in: - Depend on python3-gi instead of python-gi - Drop libsm and libice from build-depends, they are no longer needed. [ Rico Tzschichholz ] * debian/control.in: - Bump build-depends on libgtk-3-dev (>= 3.7.10), libgtksourceview-3.0-dev (>= 3.2.0) [ Robert Ancell ] * debian/control.in: - Use standards version 3.9.4 - Bump build-depends on libglib2.0-dev and libpeas-dev - Bump python depends * debian/rules: - Use Python 3 -- Sebastien Bacher Fri, 24 May 2013 18:58:18 +0200 gedit (3.6.2-0ubuntu1) raring; urgency=low * New upstream release * debian/patches/git_new_win_no_tab.patch: - Applied upstream -- Robert Ancell Tue, 13 Nov 2012 12:57:29 +1300 gedit (3.6.1-0ubuntu3) raring; urgency=low * debian/patches/git_new_win_no_tab.patch: - don't create new instances with several tabs (lp: #965510) -- Sebastien Bacher Mon, 12 Nov 2012 11:17:49 +0100 gedit (3.6.1-0ubuntu2) raring; urgency=low * Upload to raring -- Sebastien Bacher Mon, 05 Nov 2012 18:07:17 +0100 gedit (3.6.1-0ubuntu1) quantal-proposed; urgency=low * New upstream bug fix version (lp: #1070771) - File Browser side panel improvements - Fix print preview in landscape mode - Misc bugfixes -- Sebastien Bacher Wed, 24 Oct 2012 12:50:11 +0200 gedit (3.6.0-0ubuntu1) quantal; urgency=low * New upstream stable release -- Robert Ancell Tue, 25 Sep 2012 10:01:38 +1200 gedit (3.5.3-0ubuntu1) quantal; urgency=low * New upstream bugfix release * debian/patches/quicklist-new-document: - Applied upstream -- Robert Ancell Thu, 20 Sep 2012 10:42:31 +1200 gedit (3.5.2-0ubuntu1) quantal; urgency=low * New upstream release * debian/rules: - Run additional steps required for autoreconf * debian/patches/03_no_gnu_gettext.patch: - Can't use both IT_PROG_INTLTOOL and AM_GNU_GETTEXT -- Robert Ancell Fri, 31 Aug 2012 17:19:38 +1200 gedit (3.5.1-0ubuntu2) quantal; urgency=low * Pass --new-document instead of --new-window in the "Open a New Document" action. (LP: #1027584) -- Iain Lane Mon, 23 Jul 2012 11:09:02 +0100 gedit (3.5.1-0ubuntu1) quantal; urgency=low * New upstream release -- Robert Ancell Mon, 23 Jul 2012 09:45:16 +1200 gedit (3.4.2-1ubuntu1) quantal; urgency=low * Rebase on Debian unstable, remaining Ubuntu changes: * debian/control: - Add build-depends on libzeitgeist-dev * debian/rules: - Build without --Bsymbolic-functions to fix issues * debian/watch: - Watch for unstable versions * debian/patches/02_add_keywords.patch: - Add new keywords for unity and gnome-shell * debian/patches/05_menu_label.patch: - Don't display in menu as "gedit Text Editor" * debian/patches/06_lp_401692.patch: - Default name of a new document is now 'Untitled Document'. * debian/patches/10_add_zeitgeist_to_active_plugins.patch: - Enable the zeitgeist plugin by default -- Robert Ancell Mon, 28 May 2012 16:41:45 +1200 gedit (3.4.1-0ubuntu2) quantal; urgency=low * debian/control: - Use standards version 3.9.3 - Drop dependency on liblaunchpad-integration-3.0-dev * debian/patches/01_lpi.patch: - Dropped, we no longer do Launchpad integration -- Robert Ancell Mon, 14 May 2012 15:53:15 +1200 gedit (3.4.2-1) unstable; urgency=low * New upstream release. * Remove debian/patches/02_privlib.patch, merged upstream. * Suggest gedit-plugins. Closes: #640734 -- Michael Biebl Thu, 24 May 2012 18:25:01 +0200 gedit (3.4.1-2) unstable; urgency=low * Move libgedit-private into a package-private directory. This library is not supposed to be installed system wide. * Use dh-autoreconf to update the build system. -- Michael Biebl Sun, 22 Apr 2012 21:33:19 +0200 gedit (3.4.1-1) unstable; urgency=low [ Jeremy Bicha ] * New upstream release * debian/control.in: - Build-depend on yelp-tools instead of gtk-doc-tools - Bump minimum GTK depends - Drop obsolete scrollkeeper depends - Standards-Version 3.9.3 * debian/gedit-common.install: Updated [ Michael Biebl ] * debian/patches/01_gedit-bugreport-location.patch: Refreshed. * debian/gedit.install: Install introspection override file. * debian/rules: Call dh_python2 for the modules in public directories. -- Michael Biebl Sun, 22 Apr 2012 20:18:57 +0200 gedit (3.4.1-0ubuntu1) precise-proposed; urgency=low * New upstream version -- Sebastien Bacher Mon, 16 Apr 2012 21:13:04 +0200 gedit (3.4.0-0ubuntu1) precise-proposed; urgency=low * New upstream release: - Translation updates -- Robert Ancell Tue, 27 Mar 2012 11:16:47 +1100 gedit (3.3.8-0ubuntu1) precise; urgency=low * New upstream version -- Sebastien Bacher Tue, 20 Mar 2012 20:05:57 +0100 gedit (3.3.7-0ubuntu2) precise; urgency=low * Really dropped the action group patch which is in the new version * debian/control.in, debian/gedit.install, debian/gedit-dev.install: - install the gi override in the main binary, needed at runtime (lp: #953957) * debian/patches/05_menu_label.patch: - updated to list the action group at the end and solve parsing issues -- Sebastien Bacher Tue, 13 Mar 2012 15:35:19 +0100 gedit (3.3.7-0ubuntu1) precise; urgency=low * New upstream version * debian/patches/03_add_unity_quicklist.patch: - drop, the patch is included in the new version * debian/rules: build without --Bsymbolic-functions to fix issues [ Jeremy Bicha ] * New upstream release -- Sebastien Bacher Tue, 06 Mar 2012 21:19:05 +0100 gedit (3.3.5-0ubuntu2) precise; urgency=low * Break below in 2 patches * Fix incorrect quicklist placement [ Nekhelesh Ramananthan ] * debian/patches/02_add_keywords.patch: - add new keywords for unity and gnome-shell * debian/patches/03_add_unity_quicklist.patch: - add static quicklist for unity -- Didier Roche Mon, 05 Mar 2012 16:50:52 +0100 gedit (3.3.5-0ubuntu1) precise; urgency=low * New upstream release. * debian/control.in: Bump minimum GTK to 3.3.15 for switch to GResource * debian/gedit-common.install: Drop ui install -- Jeremy Bicha Fri, 02 Mar 2012 18:28:56 -0500 gedit (3.3.4-0ubuntu1) precise; urgency=low * New upstream release. - Improved help - Fixed bugs (including several memory leaks) * debian/control.in: - Build-depends on yelp-tools instead of gnome-doc-utils & scrollkeeper * debian/gedit-common.install: - Updated for new help install location -- Jeremy Bicha Wed, 22 Feb 2012 21:54:14 -0500 gedit (3.3.3-0ubuntu1) precise; urgency=low * New upstream version: - correctly re-use running instance (lp: #777292) - use correct menuitem separator (lp: #902814) * debian/gedit-dev.install: - updated to include the pygobject override * debian/patches/11_correct_gettext_domain.patch: - dropped, the fix is in the new version * debian/patches/git_invalid_unrefing.patch: - dropped, the fix is in the new version -- Sebastien Bacher Mon, 06 Feb 2012 22:57:01 +0100 gedit (3.3.2-0ubuntu3) precise; urgency=low * debian/patches/git_invalid_unrefing.patch: - don't call unref on tab close, that leads to segfaults (lp: #903975) -- Sebastien Bacher Wed, 01 Feb 2012 16:04:02 +0100 gedit (3.3.2-0ubuntu2) precise; urgency=low * debian/patches/11_correct_gettext_domain.patch: - correctly define the gettext domain -- Sebastien Bacher Thu, 26 Jan 2012 21:46:30 +0100 gedit (3.3.2-0ubuntu1) precise; urgency=low * New upstream version -- Sebastien Bacher Mon, 09 Jan 2012 15:12:28 +0100 gedit (3.2.6-1) unstable; urgency=low [ Josselin Mouette ] * Depend on python-gi-cairo. Closes: #648913. [ Michael Biebl ] * New upstream release. -- Michael Biebl Wed, 04 Jan 2012 14:56:25 +0100 gedit (3.2.6-0ubuntu1) precise; urgency=low * New upstream version -- Sebastien Bacher Wed, 04 Jan 2012 11:23:35 +0100 gedit (3.2.5-0ubuntu1) precise; urgency=low * Rebase on Debian 3.2.3-1, remaining changes: - Port to dh_python2 - debian/patches/01_lpi.patch: Add Launchpad integration - debian/patches/05_menu_label.patch: Drop 'gedit' from menu name - debian/patches/06_lp_401692.patch: Use 'Untitled Document' - debian/patches/10_add_zeitgeist_to_active_plugins.patch: Use zeitgeist - debian/watch: Watch unstable releases too * New upstream release. -- Michael Terry Fri, 09 Dec 2011 14:43:51 -0500 gedit (3.2.5-1) unstable; urgency=low [ Josselin Mouette ] * Replace python-gobject by python-gi. [ Michael Biebl ] * New upstream release. * Fix lintian override for menu-icon-missing. * Switch to dh_python2. -- Michael Biebl Thu, 15 Dec 2011 00:11:44 +0100 gedit (3.2.3-1) unstable; urgency=low * New upstream release. * debian/control.in: - Drop Recommends python-gnome2. - Bump Build-Depends on libgtk-3-dev to (>= 3.1.6). - Bump Build-Depends on libpeas-dev to (>= 1.1.0). - Bump (Build-)Depends on python-gobject(-dev) to (>= 3.0.0). * debian/watch: - Track .xz tarballs. -- Michael Biebl Sun, 20 Nov 2011 22:44:36 +0100 gedit (3.2.3-0ubuntu1) precise; urgency=low * New upstream version -- Sebastien Bacher Mon, 21 Nov 2011 11:32:25 +0100 gedit (3.2.2-0ubuntu1) precise; urgency=low [ Manish Sinha ] * Append libzeitgeist-dev as build-depends and libzeitgeist-1.0-1 as gedit dependency to enable zeitgeist-dataprovider plugin [ Didier Roche ] * New upstream version: - More help awesome (Jim Campbell) - Misc bugfixes - New and updated translations * debian/control.in: - remove the hard dep on libzeitgeist-1.0-1, let dh_shlibdeps do the work * debian/patches/10_add_zeitgeist_to_active_plugins.patch: - enable the zeitgeist plugin by default -- Didier Roche Sat, 12 Nov 2011 17:12:45 +0100 gedit (3.2.1-0ubuntu1) oneiric-proposed; urgency=low * New upstream version (LP: #876592) - More help awesome (Jim Campbell) - Use GtkGrid in the replace dialog. (Paolo Borelli) - Misc bugfixes - New and updated translations * debian/control.in: - require latest python-gobject-dev -- Didier Roche Mon, 17 Oct 2011 16:41:39 +0200 gedit (3.2.0-0ubuntu1) oneiric; urgency=low * New upstream version -- Sebastien Bacher Mon, 26 Sep 2011 22:28:41 +0200 gedit (3.1.6-0ubuntu1) oneiric; urgency=low * New upstream version * debian/gedit.install: updated for the new version -- Sebastien Bacher Mon, 19 Sep 2011 21:38:57 +0200 gedit (3.1.5-0ubuntu1) oneiric; urgency=low * New upstream release. * Drop 07_revert_pygobject_bump.patch, we now do want to build against pygobject 3. Bump build dependency in debian/control.in accordingly. -- Martin Pitt Tue, 06 Sep 2011 16:20:26 +0200 gedit (3.1.4-0ubuntu1) oneiric; urgency=low * New upstream version * Refresh debian/patches/01_gedit-bugreport-location.patch * Revert upstream commit to bump the minimum pygobject version. It doesn't look like anything actually requires it, so we don't need to block on the new version - add debian/patches/07_revert_pygobject_bump.patch - update debian/patches/series -- Chris Coulson Mon, 22 Aug 2011 13:09:05 +0100 gedit (3.1.3-0ubuntu1) oneiric; urgency=low * New upstream version, clean patches which are in the new version -- Sebastien Bacher Thu, 04 Aug 2011 11:48:53 +0200 gedit (3.1.2-0ubuntu1) oneiric; urgency=low * New upstream release. * debian/control.in: - Bump libpeas requirement to 1.1.0 * debian/patches/07_unity_quicklist.patch: - Refreshed and stopped from patching a generated version of the desktop file -- Michael Terry Tue, 12 Jul 2011 15:21:03 -0400 gedit (3.1.1-0ubuntu4) oneiric; urgency=low * debian/rules - Call dh_python2 twice to build for both public and private modules. -- Barry Warsaw Tue, 28 Jun 2011 04:36:52 +0100 gedit (3.1.1-0ubuntu3) oneiric; urgency=low * debian/control.in, debian/rules - Convert to dh_python2. (LP: #788514) -- Barry Warsaw Mon, 27 Jun 2011 16:30:43 +0100 gedit (3.1.1-0ubuntu2) oneiric; urgency=low * debian/patches/07_unity_quicklist.patch: Add Unity static quicklist items for Create a New Document and Open a New Window. -- Bilal Akhtar Tue, 07 Jun 2011 17:54:14 +0530 gedit (3.1.1-0ubuntu1) oneiric; urgency=low * New upstream release. * debian/control.in: - Require GTK+ 3.1.6 * debian/watch: - Look at unstable releases too -- Michael Terry Mon, 27 Jun 2011 05:29:37 -0400 gedit (3.0.6-2) unstable; urgency=low * debian/script: Fix path to gedit-bugreport script. -- Michael Biebl Sat, 23 Jul 2011 00:04:43 +0200 gedit (3.0.6-1) unstable; urgency=low [ Mirco Bauer ] * Added gir1.2-pango-1.0 and gir1.2-gtksource-3.0 to dependencies as used by pythonconsole, externaltools and snippets plugins. [ Emilio Pozuelo Monfort ] * debian/control.in: - Update build dependencies and dependencies. * debian/gedit.dirs: - Removed, not needed. [ Josselin Mouette ] * 90_autoreconf.patch, 99_ltmain_as-needed.patch: dropped. * Break gedit-plugins < 2.91. [ Michael Biebl ] * debian/watch: Switch to .bz2 tarballs. * New upstream release. * debian/control.in: - Remove old Replaces which is no longer necessary. - Bump Standards-Version to 3.9.2. No further changes. - Use ${gir:Depends} instead of hard coding the dependencies on the gir packages. Closes: #627978 - Remove Build-Depends on libzeitgeist-dev for now as the runtime dependencies of that plugin are a bit heavy weight. * Bump debhelper compatibililty level to 8. - Update Build-Depends on debhelper. - Strip debian/tmp/ from .install files. * Rely on cdbs to call dh_girepository: - Bump Build-Depends on cdbs to (>= 0.4.90). - Pass private directories to dh_girepository to look for dependencies. -- Michael Biebl Fri, 22 Jul 2011 19:40:13 +0200 gedit (3.0.5-0ubuntu1) oneiric; urgency=low * New upstream version -- Rodrigo Moya Fri, 17 Jun 2011 10:16:57 +0200 gedit (3.0.4-0ubuntu2) oneiric; urgency=low * control.in: recommends gir1.2-gtksource-3.0 (lp: #791760) -- Sebastien Bacher Fri, 03 Jun 2011 12:41:04 +0200 gedit (3.0.4-0ubuntu1) oneiric; urgency=low * New upstream version * debian/patches/07_intltool.patch: - Remove upstreamed patch -- Rodrigo Moya Wed, 01 Jun 2011 10:14:40 +0200 gedit (3.0.3-0ubuntu1) oneiric; urgency=low * New upstream version -- Sebastien Bacher Wed, 25 May 2011 13:44:08 +0200 gedit (3.0.2-0ubuntu1) oneiric; urgency=low * New upstream version -- Sebastien Bacher Wed, 04 May 2011 12:48:15 +0200 gedit (3.0.0-1ubuntu1) oneiric; urgency=low * Resynchronize on Debian, remaining diffs * debian/control.in: - Build-Depends on dh-autoreconf, gnome-common, liblaunchpad-integration - Conflicts gir1.2-gedit-3.0 for ppa upgrades, Debian ship the gir in gedit - don't Recommends python-gnome2 - don't Build-Depends on libgconf2-dev nor libx11-dev * debian/gedit.install: - install the gi override * debian/patches/01_lpi.patch: - Launchpad integration * debian/patches/05_menu_label.patch: - Don't display in menu as "gedit Text Editor" * debian/patches/06_lp_401692.patch: - Default name of a new document is now 'Untitled Document'. * debian/patches/07_intltool.patch: - Don't use both Intltool and GNU gettext build system * debian/patches/90_autoreconf.patch: - Obsolete as run from debian/rules * debian/rules: - Use autoreconf.mk -- Sebastien Bacher Wed, 04 May 2011 12:36:25 +0200 gedit (3.0.0-1) experimental; urgency=low * New upstream release * Updated build-dependencies * Added gobject introspection integration * debian/patches/03_python_path.patch debian/patches/04_link_against_libICE.patch debian/patches/10_pt_BR_po.patch: - Dropped obsolete patches * debian/patches/90_autoreconf.patch debian/patches/99_ltmain_as-needed.patch: - Refreshed -- Mirco Bauer Sun, 10 Apr 2011 20:29:56 +0200 gedit (2.30.4-2) unstable; urgency=low * Recommend yelp. Closes: #600055. * 10_pt_BR_po.patch: fix an important mistake in the Brazilian Portuguese translation. Closes: #603502. -- Josselin Mouette Mon, 24 Jan 2011 21:18:12 +0100 gedit (2.30.4-1) unstable; urgency=low * New upstream translation release. * 90_autoreconf.patch: updated for the new version. -- Josselin Mouette Sat, 02 Oct 2010 13:55:04 +0200 gedit (2.30.3-1) unstable; urgency=low * New upstream bugfix release. * debian/patches/04_link_against_libICE.patch - Link against libICE so we don't fail with stricter linkers like binutils-gold. Closes: #554483 * debian/patches/90_autoreconf.patch - Refresh as 04_link_against_libICE.patch changes configure.ac. * debian/control.in - Add Vcs-* fields. - Drop Build-Depends on dpkg-dev (>= 1.13.19) as even oldstable has a more recent version. - Bump Standards-Version to 3.9.0. No further changes. -- Michael Biebl Sat, 17 Jul 2010 02:53:39 +0200 gedit (2.30.2-1) unstable; urgency=low * New upstream bugfix release: + debian/patches/90_autoreconf.patch: - Regenerated for the new version. -- Sebastian Dröge Mon, 19 Apr 2010 10:34:50 +0200 gedit (2.30.0-1) unstable; urgency=low * New upstream release. - End of line conversion fixes. Closes: #480411. * debian/control.in: - Standards-Version is 3.8.4, no changes needed. - Build-Depend: - Bump to libglib2.0-dev (>= 2.23.1), libgtksourceview2.0-dev (>= 2.9.7), libgtk2.0-dev (>= 2.19.0), python-gtksourceview2 (>= 2.9.2) and gnome-doc-utils (>= 0.9.0). - Add libx11-dev. - Drop libattr1-dev. * Switch to source format 3.0 (quilt). - Add debian/source/format. - Drop quilt from Build-Depends. - Remove /usr/share/cdbs/1/rules/patchsys-quilt.mk include. * debian/patches/02_system_elementtree.patch, debian/patches/80_not_using_localmodlibs.patch: - Removed, applied upstream. * debian/patches/03_python_path.patch, debian/patches/90_autoreconf.patch: - Refreshed. * debian/rules: - Remove old lines referring ElementTree.py. -- Luca Bruno Wed, 07 Apr 2010 08:22:36 +0200 gedit (2.28.3-2) unstable; urgency=low * debian/patches/80_not_using_localmodlibs.patch: - Patch from Sebastien Bacher to fix the build with Python 2.6 as the default interpreter. Closes: #571488. * debian/control.in: - Standards-Version is 3.8.3, no changes needed. - Build depend on quilt. * debian/rules: - Switch to quilt for patch management. * debian/patches/03_python_path.patch: - Also patch Makefile.am, so that the changes to Makefile.in are preserved if we regenerate files. * debian/patches/90_autoreconf.patch: - Run autoreconf on top of 80_not_using_localmodlibs.patch. * debian/patches: - Refresh all patches. * debian/gedit.lintian-overrides, debian/gedit.lintian, debian/rules: - Rename gedit.lintian as gedit.lintian-overrides so that dh_lintian installs it automatically. Thus stop installing it in debian/rules. -- Emilio Pozuelo Monfort Thu, 04 Mar 2010 10:02:35 +0100 gedit (2.28.3-1) unstable; urgency=low * New upstream bugfix release. -- Emilio Pozuelo Monfort Sun, 20 Dec 2009 03:12:33 +0100 gedit (2.28.2-1) unstable; urgency=low * New upstream release. * debian/patches/02_system_elementtree.patch, debian/rules: - Don't install code copies of ElementTree.py, use the system one instead. Closes: #555344. * debian/control.in: - Bump python-dev build dependency and XS-Python-Version to >= 2.5 for the availability of ElementTree.py. -- Emilio Pozuelo Monfort Wed, 11 Nov 2009 22:54:27 +0100 gedit (2.28.1-1) unstable; urgency=low * New upstream release. -- Emilio Pozuelo Monfort Tue, 10 Nov 2009 15:09:22 +0100 gedit (2.28.0-1) unstable; urgency=low [ Josselin Mouette ] * New upstream release. * Bump build-dep on GTK+. [ Andrea Veri ] * debian/copyright: - added missing copyright headers. -- Josselin Mouette Fri, 25 Sep 2009 20:16:26 +0200 gedit (2.26.3-1) unstable; urgency=low [ Josselin Mouette ] * Break seahorse < 2.24 and seahorse-plugins < 2.26 because of the crash upon exit. * Remove scrollkeeper dependency. [ Emilio Pozuelo Monfort ] * debian/patches/03_python_path.patch: add description and upstream bug link. [ Loïc Minier ] * Drop trailing whitespace in control. [ Andrea Veri ] * New upstream release. * debian/control.in: - update Standards-version to 3.8.3. No changes needed. [ Emilio Pozuelo Monfort ] * debian/gedit.lintian: - Update the manpage override to match the lintian warning. -- Emilio Pozuelo Monfort Tue, 15 Sep 2009 20:25:46 +0200 gedit (2.26.1-1) unstable; urgency=low [ Josselin Mouette ] * Add libglib2.0-doc, libgtk2.0-doc and libgtksourceview2.0-doc to b-d-i to ensure proper xrefs. [ Luca Bruno ] * New upstream release. * debian/control.in: + Build-Depends version bumps: - libgtksourceview2.0-dev to 2.4.0 - liblibglib2.0-dev to 2.18.0 - intltool to 0.40.0 + Update Standards-Version to 3.8.1. No changes needed. * debian/patches: + Removed 02_externaltools_locale.patch, applied upstream. + Updated 03_python_path.patch to use a modified version of the upstream patch. * debian/gedit.install: + Plugins ui files are now installed under share/ in gedit-common. + Install usr/lib/gedit-2/plugin-loaders. [ Emilio Pozuelo Monfort ] * debian/copyright: point to GPL-2 rather than GPL. * debian/control.in: remove unneeded Section entries, they are inherited from the source. [ Josselin Mouette ] * New upstream release. -- Josselin Mouette Wed, 22 Apr 2009 23:48:16 +0200 gedit (2.24.3-1) unstable; urgency=low * 02_externaltools_locale.patch: new patch. Use LC_MESSAGES to determine the current language for the external tools. Closes: #510572. * New upstream release. * 03_python_path.patch: new patch. Pass GEDIT_PLUGINDIR to PySys_SetArgv as a big hackish workaround to CVE-2009-0314. Closes: #513513. -- Josselin Mouette Sun, 15 Mar 2009 12:17:40 +0100 gedit (2.24.2-1) experimental; urgency=low * New upstream release. -- Josselin Mouette Sun, 04 Jan 2009 10:16:32 +0100 gedit (2.24.1-1) experimental; urgency=low [ Loic Minier ] * Replace homepage pseudo-field in description with a real source field in control. * Add note that dh_pysupport call should be made package specific or moved to a different target. [ Josselin Mouette ] * Pass -pgedit to dh_pysupport. * New upstream release. + Document you need to escape backslashes. Closes: #361399. * Massive update to (build-)dependencies, yay. * Update list of installed files. * Standards version is 3.8.0. * Move gedit-bugreport.sh to /usr/share/gedit-2 and without extension. * Provide a bug script that executes it for reportbug. * 01_gedit-bugreport-location.patch: + Update for the new location. + Only patch the .in.in file, the other is always overwritten. * 99_ltmain_as-needed.patch: updated to apply. * Update gedit.menu to the new menu structure. -- Josselin Mouette Fri, 14 Nov 2008 15:31:20 +0100 gedit (2.22.3-1) unstable; urgency=low * New upstream bugfix release: + debian/patches/01_gedit-bugreport-location.patch, debian/patches/99_ltmain_as-needed.patch: - Updated to apply cleanly again. -- Sebastian Dröge Thu, 29 May 2008 09:52:41 +0200 gedit (2.22.1-1) unstable; urgency=low * New upstream bugfix release: + debian/patches/01_gedit-bugreport-location.patch, debian/patches/99_ltmain_as-needed.patch: - Updated to apply cleanly again. -- Sebastian Dröge Wed, 09 Apr 2008 08:47:37 +0200 gedit (2.22.0-1) unstable; urgency=low * New upstream stable release: + debian/control.in: - Update build dependencies and dependencies. - Update Standards-Version to 3.7.3, no additional changes needed. + debian/patches/99_ltmain_as-needed.patch: - Updated to apply cleanly again. + debian/patches/01_gedit-bugreport-location.patch, debian/gedit.install: - Install the gedit-bugreport.sh script into /usr/lib/gedit-2 instead of /usr/lib/gedit/gedit-2. -- Sebastian Dröge Mon, 17 Mar 2008 00:22:51 +0100 gedit (2.20.4-1) unstable; urgency=low * New upstream bugfix release. -- Sebastian Dröge Sat, 01 Dec 2007 17:07:03 +0100 gedit (2.20.3-1) unstable; urgency=low * New upstream bugfix release: + debian/patches/80_from_svn_load_tool_property_correctly.patch: - Dropped, merged upstream. -- Sebastian Dröge Thu, 25 Oct 2007 11:26:58 +0200 gedit (2.20.1-2) unstable; urgency=low * debian/control.in: + Fix python-gtksourceview2 dependency to make gedit installable. -- Sebastian Dröge Wed, 10 Oct 2007 13:18:49 +0200 gedit (2.20.1-1) unstable; urgency=low [ Loic Minier ] * Drop useless gzip build-dep. [ Sebastian Dröge ] * New upstream release: + debian/control.in: - Update build dependencies and dependencies. + debian/patches/99_ltmain_as-needed.patch: - Updated for the new version. * debian/patches/80_from_svn_load_tool_property_correctly.patch: + Patch taken from Ubuntu/Upstream SVN to fix external tools loading there properties correctly. See Gnome bug #484318. * debian/control.in: + Build depend on libattr1-dev. -- Sebastian Dröge Sun, 30 Sep 2007 17:07:44 +0200 gedit (2.18.2-1) unstable; urgency=low [ Alan Baghumian ] * Added home page link to the description (Closes: #364806). [ Josselin Mouette ] * 99_ltmain_as-needed.patch: get --as-needed back to work. [ Loic Minier ] * New upstream stable release; bug fixes and translations. -- Loic Minier Thu, 05 Jul 2007 14:06:44 +0200 gedit (2.18.1-1) unstable; urgency=low * Set LDFLAGS directly instead of via DEB_CONFIGURE_SCRIPT_ENV; build-dep on cdbs >= 0.4.41. * Don't overwrite DEB_CONFIGURE_EXTRA_FLAGS. * Upload to unstable; drop check-dist include. * Wrap build-deps and deps. * Bump up Debhelper compatibility level to 5. - Remove bogus /usr/lib/gedit-2/plugins/*.py from gedit.install. * Add some ${misc:Depends}. * Cleanups. * New upstream release; no API change. - Build-depend on gzip. -- Loic Minier Thu, 26 Apr 2007 10:34:19 +0200 gedit (2.18.0-1) experimental; urgency=low * New upstream release: + debian/control: Add build-deps on libenchant-dev and iso-codes, which are now needed for spell-checking. + debian/patches/21_armenian-aspell.patch: Dropped, obsolete after switch to libenchant + debian/patches/30_mmap-handle-sigbus.patch: Dropped, included upstream. + Added support for a notification if an opened file was changed on disk, allowing to ignore the message or reload the file. (Closes: 382066) -- Marc 'HE' Brockschmidt Sun, 25 Mar 2007 19:56:42 +0200 gedit (2.16.2-4) experimental; urgency=low * Bump up the Replaces merged in 2.16.2-3 to << 2.16.2-3; thanks Frédéric Péters. -- Loic Minier Mon, 12 Mar 2007 10:27:02 +0100 gedit (2.16.2-3) experimental; urgency=low [ Sven Arvidsson ] * Merge 2.14.4-9. * Move developers reference manual from -common to -dev. - gedit-dev replaces gedit-common (<< 2.16.2-3) [ Loic Minier ] * Merge the final bits of 2.14.4-3 and up to version 2.14.4-8. - Drop patch 10_double-key-events-breaks-xim, merged upstream. - Drop patch debian/patches/20_arabic-aspell.patch, merged upstream. -- Loic Minier Sat, 10 Mar 2007 21:19:20 +0100 gedit (2.16.2-2) experimental; urgency=low [ Loic Minier ] * Bump up gedit deps to follow Python build-deps as running with pygtk 2.8 causes crashes: python-gnome2-desktop >= 2.15.90, python-gtk2 >= 2.9.7, python-glade2 >= 2.9.7; closes: #409665. * Add a get-orig-source target to retrieve the upstream tarball. * Add an epoch to the libgnomevfs2-dev build-dep; closes: #409607. * Include the new check-dist Makefile to prevent accidental uploads to unstable; bump build-dep on gnome-pkg-tools to >= 0.10. [ Sven Arvidsson ] * Recommend libgnomevfs2-bin, zenity and python-gnome2 required for external tools (Closes: #388007) [ Loic Minier ] * Add a bogus libbonobo2-dev >= 2.15.0 build-dep for experimental buildds. -- Loic Minier Sun, 4 Feb 2007 18:44:54 +0100 gedit (2.16.2-1) experimental; urgency=low * New upstream release. * 70_relibtoolize.patch: removed, unneeded now the libs are cleaned up with clean-la.mk. * Bump build-dependencies appropriately. * Remove build-dependency on libgnome-keyring. * Use gnome:Version and NextVersion for gedit-dev as well. * Bump versions for gedit-dev dependencies. * pycompat: removed, obsolete. * rules: remove call to dh_python. * rules, gedit-common.install: move icon installation to dh_install. -- Josselin Mouette Sun, 19 Nov 2006 19:14:30 +0100 gedit (2.14.4-9) unstable; urgency=medium [ Sven Arvidsson ] * Move desktop launcher from gedit-common to gedit - Add recommends gedit to gedit-common. - gedit replaces gedit-common (<< 2.14.4-9) (Closes: #413948) [ Loic Minier ] * Urgency medium. -- Loic Minier Sat, 10 Mar 2007 20:52:36 +0100 gedit (2.14.4-8) unstable; urgency=medium * Update patch 30_mmap-handle-sigbus to also pull SVN r5510; thanks Paolo Borelli. -- Loic Minier Tue, 27 Feb 2007 15:48:06 +0100 gedit (2.14.4-7) unstable; urgency=medium * New patch, 30_mmap-handle-sigbus, to handle SIGBUS properly which might be triggered after I/O errors in mmap()ed files; backported from SVN r5511; see GNOME #354046. -- Loic Minier Mon, 26 Feb 2007 17:15:12 +0100 gedit (2.14.4-6) unstable; urgency=low * Add a get-orig-source target to retrieve the upstream tarball. * New patch, 21_armenian-aspell, to support Armenian in the aspell plugin; thanks Alan Baghumian; closes: #406794. -- Loic Minier Sun, 14 Jan 2007 10:51:40 +0100 gedit (2.14.4-5) unstable; urgency=low * New patch, 20_arabic-aspell, to support Arabic in the aspell plugin; thanks Mohammed Sameer; closes: #403710. -- Loic Minier Tue, 19 Dec 2006 10:56:55 +0100 gedit (2.14.4-4) unstable; urgency=low * Update patch 10_double-key-events-breaks-xim with the final upstream fix; closes: #374640. -- Loic Minier Sun, 3 Dec 2006 13:20:33 +0100 gedit (2.14.4-3) unstable; urgency=medium [ Josselin Mouette ] * Require gnome-pkg-tools 0.6. * Use ${gnome:Version} and ${gnome:NextVersion}. * Include the gnome-versions.mk snippet. [ Loic Minier ] * Change description to be "official text editor of the GNOME desktop environment" instead of "light-weight text editor"; thanks Tshepang Lekhonkhobe. * New patch, 10_double-key-events-breaks-xim, to fix double sending of keypress X events which broke XIM; from GNOME #376750; closes: #374640. -- Loic Minier Sat, 25 Nov 2006 17:41:27 +0100 gedit (2.14.4-2) unstable; urgency=low * Python support. - Build-depend on python (>= 2.3), python-dev, python-gtk2-dev (>= 2.8.0), python-gnome2-desktop-dev (>= 2.13.3), python-support (>= 0.3). - Bump up Debhelper build-dep to 5.0.37.2. - Set Python compatibility level to 2. - Add XS-Python-Version with ">= 2.3". - Add XB-Python-Version to gedit. - Add a dh_pysupport call in binary-install/gedit, and pass "/usr/lib/gedit-2/plugins" as a private module directory; add a dh_python as well. - From /usr/lib/gedit-2/plugins/, install *.py; from /usr/lib/gedit-2/plugins/snippets and /externaltools, install *.py and *.glade. - Let gedit Depend on python-gnome2-desktop, python-gtk2, python-glade2, ${python:Depends}. -- Loic Minier Wed, 30 Aug 2006 22:50:17 +0200 gedit (2.14.4-1) unstable; urgency=low * New upstream release; no API changes. - Relibtoolize. * Fix watch file. * Drop obsolete build-deps on libbonoboui2-dev, libeel2-dev, and libpopt-dev thanks Daniel Holbach. * Drop obsolete dep on libeel2-dev of gedit-dev, thanks Daniel Holbach. * Set Maintainer to the Debian GNOME team. * Bump up Standards-Version to 3.7.2. -- Loic Minier Wed, 30 Aug 2006 17:16:10 +0200 gedit (2.14.3-1) unstable; urgency=low [ Josselin Mouette ] * Make the package binNMU-safe. + Build-depend on dpkg-dev 1.13.19. + Use ${source:Version}. [ Loic Minier ] * Stop shipping *.la files in gedit-dev. [debian/gedit-dev.install] * New upstream release. - Relibtoolize and rename relibtoolizing patch. [debian/patches/01_relibtoolise.patch, debian/patches/70_relibtoolize.patch] * Permit installation of gedit-dev after binNMUs too by using ">=" ${Source-Version} instead of a strict "=". [debian/control, debian/control.in] -- Loic Minier Mon, 29 May 2006 21:23:49 +0200 gedit (2.14.2-1) unstable; urgency=low * New upstream release. * [debian/patches/01_relibtoolise.patch] Updated. * [debian/rules] Link --as-needed. * [debian/control.in] Added gnome-doc-utils build dependency; tightened gtk, libgnomeui and gnome-vfs build dependency per configure.ac . * [debian/gedit.install] Dropped references to /usr/lib/bonobo . -- J.H.M. Dassen (Ray) Sat, 29 Apr 2006 14:04:54 +0200 gedit (2.12.1-2) unstable; urgency=low [ Loic Minier ] Loic Minier : * Update watch file. [debian/watch] J.H.M. Dassen (Ray) : * [debian/patches/01_relibtoolise.patch] Added to remove unused direct library dependencies. [ Josselin Mouette ] * Upload to unstable. -- Josselin Mouette Sun, 8 Jan 2006 15:00:23 +0100 gedit (2.12.1-1) experimental; urgency=low * New upstream version. -- Sebastien Bacher Mon, 24 Oct 2005 14:53:45 +0200 gedit (2.10.5-2) unstable; urgency=low * Move alternatives handling from gedit-common to gedit and make gedit conflict with past gedit-common thanks to piuparts, Lars Wirzenius and Josselin Mouette. (Closes: #328310) [debian/control, debian/control.in, debian/gedit-common.postinst, debian/gedit-common.prerm, debian/gedit.postinst, debian/gedit.prerm] -- Loic Minier Thu, 15 Sep 2005 22:32:52 +0200 gedit (2.10.5-1) unstable; urgency=low * New upstream release. * No NEWS in this release. [debian/gedit.docs] * Use copyright and license appropriately. [debian/copyright] * Update FSF address. [debian/copyright] -- Loic Minier Mon, 12 Sep 2005 22:24:31 +0200 gedit (2.10.4-1) unstable; urgency=low * New upstream release. * Add CDBS' utils. * Bump up pspell build-dep to switch back to libaspell15. -- Loic Minier Sat, 6 Aug 2005 17:39:36 +0200 gedit (2.10.3-4) unstable; urgency=low [ Loic Minier ] * Don't link with "--as-needed" as it migh break dlopening plugins. [debian/rules] * Bump libpspell-dev build-dep for the C++ transition. [ Josselin Mouette ] * Don't overwrite DEB_CONFIGURE_SCRIPT_ENV completely. [debian/rules] -- Loic Minier Mon, 11 Jul 2005 22:52:47 +0200 gedit (2.10.3-2) unstable; urgency=low * Fix typo in postinst and prerm. [debian/gedit-common.postinst, debian/gedit-common.prerm] * Remove dependency of gedit-common gedit, remobe obsolete "Replaces:". [debian/control, debian/control.in] * Bump Standards-Version to 3.6.2, no change needed. -- Loic Minier Fri, 24 Jun 2005 19:02:19 +0200 gedit (2.10.3-1) unstable; urgency=high * New upstream release. - [SECURITY: CAN-2005-1686] format string vulnerability and DoS. - 2.10 no longer loses data when saving in UTF-16 (closes: #261622). - retains spellchecking options (closes: #271849). - allows changing the cursor colour (closes: #283158). * Upload to unstable. -- Jordi Mallach Wed, 8 Jun 2005 21:50:30 +0200 gedit (2.10.2-2) experimental; urgency=low * Josselin Mouette: - Updated debian/watch. * Loic Minier and Sebastien Bacher: - Merge changes from 2.8.3-4. -- Loic Minier Thu, 2 Jun 2005 01:00:48 +0200 gedit (2.10.2-1) experimental; urgency=low * New upstream release. * Bump build-dependencies appropriately. * 01_relibtoolize.patch: dropped. * Pass --as-needed to ld. -- Josselin Mouette Thu, 14 Apr 2005 19:58:18 +0200 gedit (2.8.3-4) unstable; urgency=low * Ship Bonobo Activation Server file for Gedit that was lost in 2.8.2-3 and simplify file lists for the gedit and gedit-common packages; also ship all plugins again and some usual files. (Closes: #311374) [debian/gedit.install, debian/gedit-common.install] -- Loic Minier Tue, 31 May 2005 20:54:03 +0200 gedit (2.8.3-3) unstable; urgency=medium * GNOME Team upload. * gedit-dev package needs to depend on libgnomeprintui2.2-dev, libgtksourceview-dev, libgnomeui-dev, libglade2-dev, libeel2-dev * Urgency medium as the above fixes a non-filled RC bug in Sarge package. -- Jose Carlos Garcia Sogo Fri, 1 Apr 2005 20:33:04 +0200 gedit (2.8.3-2) unstable; urgency=low * Build depend on pspell >= 0.60 since it's incompatible with the previous 0.55 release (closes: #295901) -- Loic Minier Sat, 19 Feb 2005 11:40:51 +0100 gedit (2.8.3-1) unstable; urgency=low * New upstream release. * debian/patches/00_intltoolize.patch: dropped (upstream intltoolized) * debian/patches/01_relibtoolize.patch: updated * debian/patches/02_cursor-color.patch: dropped (not applicable anymore) -- Loic Minier Sat, 12 Feb 2005 21:18:34 +0100 gedit (2.8.2-4) unstable; urgency=low * debian/patches/00_intltoolize.patch: added * debian/patches/01_relibtoolize.patch: renamed and updated * debian/patches/02_cursor-color.patch: fix cursor color on dark backgrounds * debian/*: various cleanups * debian/gedit.lintian: lintian override for gedit * debian/copyright: updated * set myself as Maintainer * debian/control: reverted intltool of -2 -- Loic Minier Sat, 12 Feb 2005 17:14:08 +0100 gedit (2.8.2-3) unstable; urgency=low * debian/control.in: - added cdbs to Build-Depends. - create a gedit-dev package for devel files (closes: #283574). * debian/gedit.install: - install changecase plugin. * debian/patches/01_relibtoolise.patch: - switched from dpatch to a simple patch. * debian/rules: - switched to CDBS, should be policy compliant again (closes: #289890) -- Sebastien Bacher Wed, 26 Jan 2005 21:57:16 +0100 gedit (2.8.2-2) unstable; urgency=low * add intltool to the build-deps and hence remove libxml-parser-perl since intltool depends on it and will automagically change the Perl code in intltool-merge.in -- Loic Minier Wed, 19 Jan 2005 19:05:41 +0100 gedit (2.8.2-1) unstable; urgency=low * GNOME team upload. * New upstream release. * debian/patches/01_relibtoolise.dpatch: updated. -- Jordi Mallach Wed, 29 Dec 2004 17:56:50 +0100 gedit (2.8.1-3) unstable; urgency=low * GNOME team upload. * Upload to unstable. * debian/rules: don't symlink config.{sub,guess} on clean to allow builds from SVN. * debian/control.in: bump libgnomeui and gtksourceview requirements. -- Jordi Mallach Mon, 22 Nov 2004 00:27:55 +0100 gedit (2.8.1-2) experimental; urgency=low * GNOME team upload * debian/control.in: build-depend on debhelper (>= 4.2.23) for dh_desktop support. * debian/rules: add a call to dh_desktop to register MIME types. * debian/gedit.postinst: don't call update-mime-database by hand, handled by dh_desktop. -- Jordi Mallach Tue, 9 Nov 2004 13:13:40 +0100 gedit (2.8.1-1) experimental; urgency=low * New upstream release. -- J.H.M. Dassen (Ray) Mon, 11 Oct 2004 18:08:40 +0200 gedit (2.8.0-1) experimental; urgency=low * New upstream release. * [debian/patches/01_relibtoolise.dpatch] Updated. Don't patch config.{sub,guess} as debian/rules takes care of updating them. (Closes: #267288) -- J.H.M. Dassen (Ray) Mon, 13 Sep 2004 18:54:52 +0200 gedit (2.7.92-1) experimental; urgency=low * New upstream development release. * [debian/patches/01_relibtoolise.dpatch] Updated. (Closes: #267288) * [debian/patches/02_finnish_dict.dpatch] Dropped; this has been integrated upstream. -- J.H.M. Dassen (Ray) Tue, 31 Aug 2004 21:56:58 +0200 gedit (2.7.90-1) experimental; urgency=low * New upstream development release. * [debian/patches/01_relibtoolise.dpatch] Updated. * [debian/rules] Ensure at build time that the library dependencies are complete. * [debian/gedit.postinst] Register with the new GNOME MIME system. -- J.H.M. Dassen (Ray) Sat, 14 Aug 2004 12:54:22 +0200 gedit (2.6.2-1) unstable; urgency=low * GNOME Team Upload. * New upstream release. * debian/control.in: - added dpatch to the Build-Depends. * debian/patches/01_relibtoolise.dpatch: - patch to reduce inflated dependencies (Closes: #243002). * debian/patches/02_finnish_dict.dpatch: - added the finnish dictionnary to the list of supported languages (Closes: #263391). * debian/rules: - use dpatch. -- Sebastien Bacher Thu, 5 Aug 2004 12:23:49 +0200 gedit (2.6.1-1) unstable; urgency=low * GNOME Team Upload. * New Upstream Release. -- Sebastien Bacher Sun, 30 May 2004 12:52:45 +0200 gedit (2.6.0-3) unstable; urgency=low * GNOME Team Upload. * Upload in unstable. -- Sebastien Bacher Thu, 27 May 2004 20:04:25 +0200 gedit (2.6.0-2) experimental; urgency=low Sebastien Bacher * GNOME Team Upload to fix the FTBFS due to missing Build-Depends. J.H.M. Dassen (Ray) * [debian/control.in] Added missing build dependency on libxml-parser-perl. -- Sebastien Bacher Fri, 16 Apr 2004 00:45:37 +0200 gedit (2.6.0-1) experimental; urgency=low * New upstream release. * debian/rules: + Add dh_scrollkeeper call, and remove scrollkeeper call from gedit's postinst + ditto for dh_gconf + Make everything install into debian/tmp and copy selectively out of that * debian/control: + Update Build-Depends for GNOME 2.6 versions of libraries required; also, update debhelper to >= 4.1.84 to ensure we have dh_scrollkeeper and dh_gconf + Split package into two: gedit and gedit-common, the latter of which contains architecture-independent files like translations, omf files and pixmaps (Closes: Bug#233355) * Rename debhelper files to gedit.filename. * Replace xpm icon for gedit's Debian menu entry with better one provided by mcINEK . Thanks! (Closes: Bug#192601) -- Joe Drew Wed, 31 Mar 2004 21:48:39 -0500 gedit (2.4.1-2) unstable; urgency=low * debian/control: + Add GNOME team to Uploaders + Correct spelling mistake in description + Add gnome-pkg-tools to Build-Depends * debian/rules: + Remove include files and .pc file from package; nobody uses them. Closes: Bug#221732 -- Joe Drew Tue, 30 Mar 2004 20:42:26 -0500 gedit (2.4.1-1) unstable; urgency=low * The "No more complaining" release, part 1. (Subtitled: gtksourceview for everyone) * New upstream release, part of GNOME 2.4 (Closes: Bug#217876) + Now links only against libgnutls7 (Closes: Bug#213219) + From my muddled look at the Finnish translation, the translation of 'Tab' is now correct. Please re-open if I'm wrong :) (Closes: Bug#210454) + There are no longer GdkPixbuf errors on start-up (Closes: Bug#214171) * Update config.{guess,sub} * debian/control: + Update Build-Depends for GNOME 2.4 libraries and gtksourceview + Update Standards-Version to 3.6.1 * debian/rules: + Properly support DEB_BUILD_OPTIONS -- Joe Drew Tue, 4 Nov 2003 15:00:44 -0500 gedit (2.2.1-2) unstable; urgency=low * Build-Depends on scrollkeeper. Pre-empting FTBFS bugs. -- Joe Drew Sat, 15 Mar 2003 19:00:29 -0500 gedit (2.2.1-1) unstable; urgency=low * New upstream release, part of GNOME 2.2.1. -- Joe Drew Sat, 15 Mar 2003 14:51:18 -0500 gedit (2.2.0.1-1) unstable; urgency=low * New upstream release * debian/control: Rewrite description and make debhelper Build-Depends versioned -- Joe Drew Fri, 28 Feb 2003 17:54:05 -0500 gedit (2.1.91-1) unstable; urgency=low * New upstream release -- Joe Drew Tue, 21 Jan 2003 20:25:45 -0500 gedit (2.1.6-2) unstable; urgency=low * debian/control: + Update Build-Depends for libgnomevfs2-dev to >= 2.1.91-1, since we require a GNOME 2 gnomevfs -- Joe Drew Mon, 20 Jan 2003 16:01:39 -0500 gedit (2.1.6-1) unstable; urgency=low * New upstream release, a prerelease for GNOME 2.2 * debian/control: + Add Build-Depends for libpspell-dev + Add Build-Depends for libpopt-dev (just a failsafe) + Update Standards-Version to 3.5.8 * debian/rules: + Updates for Standards-Version 3.5.8 -- Joe Drew Mon, 20 Jan 2003 00:20:04 -0500 gedit (2.0.6-1) unstable; urgency=low * The 'Three IBM hard drives fail in two years. I'm sensing a pattern.' release. * New upstream release. -- Joe Drew Sun, 1 Dec 2002 15:07:28 -0500 gedit (2.0.5-1) unstable; urgency=low * The 'rising back into horrible unlife' release. * New upstream release * Closes: Bug#154797 -- German translation: translator credits translated correctly ;) * Acknowledge NMU - thanks, David! (Closes: Bug#156892, Bug#154575) * Include Mikael Hedin's properly-sized gedit xpm icon. (Closes: Bug#155966) -- Joe Drew Sat, 5 Oct 2002 18:23:30 -0400 gedit (2.0.2-2.1) unstable; urgency=low * NMU. * Recompiled against libgtk2.0-0png3 because of png2->png3 transition. * We don't a need a Build-Depends on libssl-dev now; closes: #154575. -- Davide Puricelli (evo) Thu, 15 Aug 2002 23:51:59 +0200 gedit (2.0.2-2) unstable; urgency=low * Change menu file icon to an XPM. -- Joe Drew Sat, 27 Jul 2002 16:07:26 -0400 gedit (2.0.2-1) unstable; urgency=low * New upstream release * Closes: Bug#147453 -- gedit can't open a file beginning with % -- Joe Drew Fri, 26 Jul 2002 08:12:31 -0400 gedit (2.0.1-1) unstable; urgency=low * New upstream release * Added libeel2-dev to build-depends, as upstream requires it now * Change static link to gnome-text-editor created by `make install' to an alternatives link. -- Joe Drew Tue, 23 Jul 2002 18:25:35 -0400 gedit (2.0.0-1) unstable; urgency=low * New upstream release, based on GNOME 2 libraries. Repackaged with dh_make. -- Joe Drew Sun, 21 Jul 2002 21:51:21 -0400 gedit (0.9.6-4) unstable; urgency=low * Change /usr/share/doc/gedit/html to be an absolute link to /usr/gnome/help/gedit/C (which is technically against policy, but causes problems for people in real world situations.) Closes: Bug#84067, Bug#97631 * Correct typos in description (Closes: Bug#124664) * Modify plugins' Makefile.am to add EXTRA_GNOME_CFLAGS, which is necessary since libglade moved its header files. Also re-ran automake. -- Joe Drew Sun, 13 Jan 2002 02:13:27 -0500 gedit (0.9.6-3) unstable; urgency=low * Updating config.{sub,guess} for hppa/ia64 (Closes: Bug#104810) -- Joe Drew Sun, 15 Jul 2001 14:53:50 -0400 gedit (0.9.6-2) unstable; urgency=low * I am an idiot. Actually applied multibyte patch (Closes: Bug#90952) -- Joe Drew Sat, 28 Apr 2001 22:43:02 -0400 gedit (0.9.6-1) unstable; urgency=low * New upstream release * Fixed where INSTALL_PROGRAM gets used in the rules file for DEB_BUILD_OPTIONS. * Corrected transposition of letters in description (Closes: Bug#92306) * Applied multibyte patch (Closes: Bug#90952) * Rebuilt with libgnomeprint15 (Closes: Bug#94427) -- Joe Drew Mon, 23 Apr 2001 23:22:30 -0400 gedit (0.9.4-2) unstable; urgency=low * New maintainer (Closes: Bug#84521) * Can't reproduce bug, but put in preventative directory entries into deb file which should stop this from happening (Closes: Bug#84067) * Upgraded standards version to 3.5.2, implemented DEB_BUILD_OPTIONS -- Joe Drew Wed, 28 Feb 2001 22:49:39 -0500 gedit (0.9.4-1) unstable; urgency=low * New maintaner for this package (closes: #80313). * New upstream release (closes: #52404). * Updated to Standards-Version 3.2.1. * Changed: debian/{control, copyright, rules}. * Closes: #33280, #51421, #52246, #58375, #66869, #69858, #77409. * Added icon in xpm format. * Upload sponsored by Bas Zoetekouw . -- Mariusz Przygodzki Mon, 1 Jan 2001 15:53:38 +0100 gedit (0.9.0-1) unstable; urgency=low * New upstream release. -- Robert S. Edmonds Wed, 9 Aug 2000 14:19:08 -0400 gedit (0.6.1-1) unstable; urgency=low * New upstream release. -- Robert S. Edmonds Sun, 16 Jan 2000 21:12:18 -0500 gedit (0.6.0-1) unstable; urgency=low * New upstream release. -- Robert S. Edmonds Sat, 27 Nov 1999 14:24:18 -0500 gedit (0.5.4-1) unstable; urgency=low * Fixed Bug#46351: gedit crashes on startup. * Closes: bug#46351 -- Robert S. Edmonds Thu, 30 Sep 1999 20:37:40 -0400 gedit (0.5.3-1) unstable; urgency=low * New upstream release. -- Robert S. Edmonds Sat, 12 Jun 1999 15:53:50 -0400 gedit (0.5.2-1) unstable; urgency=low * New upstream release. -- Robert S. Edmonds Mon, 17 May 1999 20:17:13 -0400 gedit (0.5.1-2) unstable; urgency=low * GNOME staging area upload. -- Robert S. Edmonds Thu, 4 Mar 1999 18:44:09 -0500 gedit (0.5.1-1) unstable; urgency=low * New upstream release. -- Robert S. Edmonds Sun, 28 Feb 1999 16:34:29 -0500 gedit (0.5.0-1) unstable; urgency=low * New upstream release. -- Robert S. Edmonds Sat, 6 Feb 1999 14:07:48 -0500 gedit (0.4.9-1) unstable; urgency=low * New upstream release. -- Robert S. Edmonds Thu, 4 Feb 1999 17:51:51 -0500 gedit (0.4.8-1) unstable; urgency=low * New upstream release. -- Robert S. Edmonds Sun, 10 Jan 1999 16:40:00 -0500 gedit (0.3.2-2) unstable frozen; urgency=low * Debian changelog file is now included in the package. * gedit is now more stable than previous versions and fixes some nasty * bugs. -- Robert S. Edmonds Sat, 11 Apr 1998 17:26:53 -0400 gedit (0.3.2-1) unstable; urgency=low * New upstream release. * Manpage included! No longer links to the undocumented manpage. -- Robert S. Edmonds Mon, 6 Apr 1998 11:35:06 -0400 gedit (0.3.1-2) unstable frozen; urgency=low * Now gedit manpage links to the undocumented manpage. -- Robert S. Edmonds Mon, 30 Mar 1998 19:36:44 -0500 gedit (0.3.1-1) unstable; urgency=low * New upstream release. -- Robert S. Edmonds Sun, 29 Mar 1998 17:03:32 -0500 gedit (0.3.0-1) unstable; urgency=low * New upstream release. -- Robert S. Edmonds Thu, 26 Mar 1998 19:43:41 -0500 gedit (0.2.1-1) unstable; urgency=low * Initial Release. -- Robert S. Edmonds Mon, 9 Mar 1998 17:24:56 -0500 debian/compat0000664000000000000000000000000212314562632010372 0ustar 9 debian/control0000664000000000000000000001042512314562634010603 0ustar # This file is autogenerated. DO NOT EDIT! # # Modifications should be made to debian/control.in instead. # This file is regenerated automatically in the clean target. Source: gedit Section: gnome Priority: optional Maintainer: Ubuntu Desktop Team XSBC-Original-Maintainer: Debian GNOME Maintainers Uploaders: Debian GNOME Maintainers , Jeremy Bicha Build-Depends: cdbs (>= 0.4.90), debhelper (>= 9), gnome-pkg-tools (>= 0.10), dh-autoreconf, autotools-dev, intltool (>= 0.40.0), gsettings-desktop-schemas-dev, gtk-doc-tools (>= 1.0), libenchant-dev (>= 1.2.0), iso-codes (>= 0.35), libxml2-dev (>= 2.5.0), libglib2.0-dev (>= 2.38), libgtk-3-dev (>= 3.10), libgtksourceview-3.0-dev (>= 3.10), libpeas-dev (>= 1.7.0), libx11-dev, python3-dev (>= 3.2.3), python-gi-dev (>= 3.0.0), yelp-tools, gobject-introspection, libgirepository1.0-dev (>= 0.9.3), libzeitgeist-2.0-dev Build-Depends-Indep: libglib2.0-doc, libgtk-3-doc, libgtksourceview-3.0-doc Standards-Version: 3.9.4 Vcs-Bzr: https://code.launchpad.net/~ubuntu-desktop/gedit/ubuntu Homepage: http://www.gnome.org/projects/gedit/ Package: gedit Architecture: any Depends: ${misc:Depends}, ${python:Depends}, ${shlibs:Depends}, ${gir:Depends}, gedit-common (>= ${gnome:Version}), gedit-common (<< ${gnome:NextVersion}), gsettings-desktop-schemas, python3-gi (>= 3.0), python-gi-cairo (>= 3.0), gir1.2-peas-1.0, iso-codes Recommends: gir1.2-gtksource-3.0, zenity, yelp Suggests: gedit-plugins Breaks: gedit-plugins (<< 2.91) Description: official text editor of the GNOME desktop environment gedit is a text editor which supports most standard editor features, extending this basic functionality with other features not usually found in simple text editors. gedit is a graphical application which supports editing multiple text files in one window (known sometimes as tabs or MDI). . gedit fully supports international text through its use of the Unicode UTF-8 encoding in edited files. Its core feature set includes syntax highlighting of source code, auto indentation and printing and print preview support. . gedit is also extensible through its plugin system, which currently includes support for spell checking, comparing files, viewing CVS ChangeLogs, and adjusting indentation levels. Package: gedit-common Architecture: all Depends: ${misc:Depends} Recommends: gedit Description: official text editor of the GNOME desktop environment (support files) gedit is a text editor which supports most standard editor features, extending this basic functionality with other features not usually found in simple text editors. . This package contains gedit's architecture-independent support files. Package: gedit-dev Architecture: any Section: devel Depends: ${misc:Depends}, gedit (>= ${gnome:Version}), gedit (<< ${gnome:NextVersion}), libgtksourceview-3.0-dev (>= 3.2.0), libpeas-dev Description: official text editor of the GNOME desktop environment (development files) gedit is a text editor which supports most standard editor features, extending this basic functionality with other features not usually found in simple text editors. gedit is a graphical application which supports editing multiple text files in one window (known sometimes as tabs or MDI). . gedit fully supports international text through its use of the Unicode UTF-8 encoding in edited files. Its core feature set includes syntax highlighting of source code, auto indentation and printing and print preview support. . gedit is also extensible through its plugin system, which currently includes support for spell checking, comparing files, viewing CVS ChangeLogs, and adjusting indentation levels. . This package is required to build plugins for gedit. debian/control.in0000664000000000000000000001001612314562632011202 0ustar Source: gedit Section: gnome Priority: optional Maintainer: Ubuntu Desktop Team XSBC-Original-Maintainer: Debian GNOME Maintainers Uploaders: @GNOME_TEAM@ Build-Depends: cdbs (>= 0.4.90), debhelper (>= 9), gnome-pkg-tools (>= 0.10), dh-autoreconf, autotools-dev, intltool (>= 0.40.0), gsettings-desktop-schemas-dev, gtk-doc-tools (>= 1.0), libenchant-dev (>= 1.2.0), iso-codes (>= 0.35), libxml2-dev (>= 2.5.0), libglib2.0-dev (>= 2.38), libgtk-3-dev (>= 3.10), libgtksourceview-3.0-dev (>= 3.10), libpeas-dev (>= 1.7.0), libx11-dev, python3-dev (>= 3.2.3), python-gi-dev (>= 3.0.0), yelp-tools, gobject-introspection, libgirepository1.0-dev (>= 0.9.3), libzeitgeist-2.0-dev Build-Depends-Indep: libglib2.0-doc, libgtk-3-doc, libgtksourceview-3.0-doc Standards-Version: 3.9.4 Vcs-Bzr: https://code.launchpad.net/~ubuntu-desktop/gedit/ubuntu Homepage: http://www.gnome.org/projects/gedit/ Package: gedit Architecture: any Depends: ${misc:Depends}, ${python:Depends}, ${shlibs:Depends}, ${gir:Depends}, gedit-common (>= ${gnome:Version}), gedit-common (<< ${gnome:NextVersion}), gsettings-desktop-schemas, python3-gi (>= 3.0), python-gi-cairo (>= 3.0), gir1.2-peas-1.0, iso-codes Recommends: gir1.2-gtksource-3.0, zenity, yelp Suggests: gedit-plugins Breaks: gedit-plugins (<< 2.91) Description: official text editor of the GNOME desktop environment gedit is a text editor which supports most standard editor features, extending this basic functionality with other features not usually found in simple text editors. gedit is a graphical application which supports editing multiple text files in one window (known sometimes as tabs or MDI). . gedit fully supports international text through its use of the Unicode UTF-8 encoding in edited files. Its core feature set includes syntax highlighting of source code, auto indentation and printing and print preview support. . gedit is also extensible through its plugin system, which currently includes support for spell checking, comparing files, viewing CVS ChangeLogs, and adjusting indentation levels. Package: gedit-common Architecture: all Depends: ${misc:Depends} Recommends: gedit Description: official text editor of the GNOME desktop environment (support files) gedit is a text editor which supports most standard editor features, extending this basic functionality with other features not usually found in simple text editors. . This package contains gedit's architecture-independent support files. Package: gedit-dev Architecture: any Section: devel Depends: ${misc:Depends}, gedit (>= ${gnome:Version}), gedit (<< ${gnome:NextVersion}), libgtksourceview-3.0-dev (>= 3.2.0), libpeas-dev Description: official text editor of the GNOME desktop environment (development files) gedit is a text editor which supports most standard editor features, extending this basic functionality with other features not usually found in simple text editors. gedit is a graphical application which supports editing multiple text files in one window (known sometimes as tabs or MDI). . gedit fully supports international text through its use of the Unicode UTF-8 encoding in edited files. Its core feature set includes syntax highlighting of source code, auto indentation and printing and print preview support. . gedit is also extensible through its plugin system, which currently includes support for spell checking, comparing files, viewing CVS ChangeLogs, and adjusting indentation levels. . This package is required to build plugins for gedit. debian/copyright0000664000000000000000000000353412314562632011134 0ustar Version 2.8.2 was re-debianized by Sebastien Bacher. It was downloaded from . Copyright: 2002, 2006 Paolo Maggi Chema Celorio > James Willcox Federico Mena Quintero Paolo Borelli Jason Leach 2005, 2007 Steve Frécinaux 1999, 2005 Fredrik Lundh 2002 Gustavo Giràldez 1998, 1999 Alex Roberts 1998, 1999 Evan Lawrence 2009 Ignacio Casal Quinteiro 2005 Adam Hooper 1998 James Henstridge 2003, 2004 Christian Persch 2008, B. Clausius 2002 Evan Martin 2005 Raphael Slinckx 1996, 2008 Free Software Foundation, Inc 2008 Ignacio Casal Quinteiro 2003 Bastien Nocera 2000 - Eazel, Inc 2002-2004 Marco Pesenti Gritti 2008 Red Hat, Inc 2007 Novell, Inc 2001 George Lebl 1998 Carsten Schaar, and twm 1998 The Open Group 2002 Ximian, Inc 2004-2005 GNOME Foundation License: This package is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 dated June, 1991. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA On Debian GNU/Linux systems, the complete text of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-2'. debian/gedit-common.install0000664000000000000000000000027212314562632013147 0ustar debian/gedit-icon.xpm /usr/share/pixmaps/ usr/share/gedit/logo usr/share/gedit/plugins usr/share/glib-2.0 usr/share/GConf usr/share/help usr/share/locale usr/share/man usr/share/appdata debian/gedit-dev.install0000664000000000000000000000011212314562632012426 0ustar usr/include usr/lib/*/pkgconfig usr/share/gtk-doc usr/share/gedit/gir-1.0 debian/gedit-icon.xpm0000664000000000000000000001003212314562632011740 0ustar /* XPM */ static char * gedit_icon_xpm[] = { "32 32 118 2", " c None", ". c #131313", "+ c #6B6B6B", "@ c #8C8C8C", "# c #747474", "$ c #0C0402", "% c #444444", "& c #4B4B4B", "* c #646464", "= c #545454", "- c #EBEBEB", "; c #1C1C1C", "> c #C3C3C3", ", c #A5A5A5", "' c #0D0D0D", ") c #CCCCCB", "! c #5B5B5B", "~ c #9D9D9D", "{ c #969696", "] c #ACACAC", "^ c #7B7B7B", "/ c #3C3C3C", "( c #292929", "_ c #B4B4B4", ": c #E3E4E4", "< c #000000", "[ c #DBDBDB", "} c #252525", "| c #313131", "1 c #D4D4D4", "2 c #858585", "3 c #BCBCBC", "4 c #F9F9F9", "5 c #F3F3F3", "6 c #341812", "7 c #482A26", "8 c #26110D", "9 c #33120B", "0 c #B34D3C", "a c #E09487", "b c #C48E85", "c c #714841", "d c #342C29", "e c #2C100C", "f c #913425", "g c #BB5646", "h c #D48B81", "i c #CEC3B8", "j c #B3B0AB", "k c #8D8469", "l c #948981", "m c #4E1910", "n c #95554B", "o c #CFC195", "p c #ECDBAA", "q c #D7C798", "r c #E8E3D5", "s c #5B332B", "t c #766343", "u c #B18325", "v c #C7A551", "w c #DFC884", "x c #EEDCA7", "y c #EEE2C1", "z c #3C2806", "A c #A47115", "B c #B58628", "C c #C5A24C", "D c #E6D6A4", "E c #EEDEB3", "F c #DED1AC", "G c #D8D2BF", "H c #080500", "I c #8D6112", "J c #A97416", "K c #DDC682", "L c #F0E1B2", "M c #D3CCB6", "N c #1D1403", "O c #A97618", "P c #BA8C2C", "Q c #DFCA89", "R c #EEE1BB", "S c #E1D5B2", "T c #E4E2DE", "U c #0A0701", "V c #704D0E", "W c #AE7B1C", "X c #F1E5BE", "Y c #D5CAA8", "Z c #39362C", "` c #211703", " . c #AD9A64", ".. c #605133", "+. c #231904", "@. c #593E0A", "#. c #926615", "$. c #B5801D", "%. c #C9A650", "&. c #DCC47A", "*. c #DFC9A8", "=. c #8F7C5D", "-. c #15120C", ";. c #50380B", ">. c #B98824", ",. c #C9A044", "'. c #C4A87C", "). c #736B5C", "!. c #120D03", "~. c #503C12", "{. c #9A7840", "]. c #988369", "^. c #918679", "/. c #5B5348", "(. c #0E0B07", "_. c #201910", ":. c #4E3E29", "<. c #2E261B", " ", " . + @ # $ ", " . % & * = # - & ", " . ; * + > , ; = > = ", " ' + @ ) ! ' ! > ~ ~ { ] . ", " + ^ @ / ( ~ , * + ~ ] @ _ : ^ ' ", " < % & * ) * * ^ ] ^ * ] [ : [ : [ # < ", " < } | ! , ~ * * _ > _ ) : : [ [ [ [ * < ", " $ & # ^ * ^ ~ { ] ) [ : : : [ [ 1 [ [ ) = < ", " } @ 2 { # ~ ) : : - - - : [ [ 1 1 1 1 1 3 ( < ", " ; ^ , ) 1 ) [ : - - : : : : [ [ [ 1 ) 1 1 , } ", " ( 2 > : : - - - - - - : : [ [ ) ) ) ) ) ) { . ", " | ~ : 4 5 - 5 - - : : [ 1 1 1 1 1 ) > > 1 2 . ", " ' & ] 5 4 5 5 - : [ [ [ [ 1 1 ) ) > 3 > > ) ! < ", " $ 6 7 8 ' = > 4 5 - : : : : : [ [ ) ) > > ) > > > > & < ", " 9 0 a b c d + ) 4 5 - : : [ [ 1 ) ) ) ) ) > 3 ] _ > _ / < ", " e f g h i j k l 1 4 - : : [ 1 1 1 1 1 ) 3 _ _ 3 3 > [ > . ", " $ m f n l o p q o r 5 : [ 1 [ 1 1 ) > 3 3 > 3 > 1 : 4 : ; ", " $ e s t u v w x p y r : [ 1 1 ) > > ) > ) 1 - 4 5 1 ~ ' ", " < < < z A B C w D E F G ) ) ) ) ) ) [ - 4 - 3 @ = } < ", " < H I J B v K L E F M ) 1 [ - 5 [ _ # / . < < ", " < N I O P v Q L R S r T 1 ~ + | ' < ", " < < U V W P v w L X Y k Z $ < ", " < ` I W P v Q L D ...' < ", " < +.@.#.$.P %.&.D *.=.-.< ", " +.;.I >.,.'.Y G ).$ ", " < !.~.{.].].^./.(. ", " < _.7 :.<.-.!.< ", " < < < < < < ", " ", " ", " "}; debian/gedit.docs0000664000000000000000000000000712314562632011137 0ustar README debian/gedit.install0000664000000000000000000000050612314562632011661 0ustar usr/bin/gedit usr/lib/gedit/gedit/gedit-bugreport.sh /usr/share/gedit/ usr/lib/*/gedit/girepository-1.0/ usr/lib/*/gedit/plugins/*.plugin usr/lib/*/gedit/plugins/*.so usr/lib/*/gedit/plugins/*/*.py usr/lib/*/gedit/*.so usr/lib/python* usr/share/applications/gedit.desktop usr/share/dbus-1/ debian/script /usr/share/bug/gedit/ debian/gedit.lintian-overrides0000664000000000000000000000024312314562632013647 0ustar # menu icon is in gedit-common gedit: menu-icon-missing usr/share/pixmaps/gedit-icon.xpm # man page is in gedit-common gedit: binary-without-manpage usr/bin/gedit debian/gedit.menu0000664000000000000000000000032512314562632011156 0ustar ?package(gedit):\ needs="x11"\ section="Applications/Editors"\ title="Gedit"\ longtitle="Light-weight GNOME text editor"\ icon="/usr/share/pixmaps/gedit-icon.xpm"\ command="/usr/bin/gedit" debian/gedit.postinst0000664000000000000000000000122212314562632012072 0ustar #!/bin/sh set -e case "$1" in configure) # register gedit as a gnome-text-editor in the alternatives system update-alternatives \ --install \ /usr/bin/gnome-text-editor \ gnome-text-editor \ /usr/bin/gedit \ 50 \ --slave \ /usr/share/man/man1/gnome-text-editor.1.gz \ gnome-text-editor.1.gz \ /usr/share/man/man1/gedit.1.gz ;; abort-upgrade|abort-remove|abort-deconfigure) ;; *) echo "postinst called with unknown argument \`$1'" >&2 exit 0 ;; esac #DEBHELPER# debian/gedit.prerm0000664000000000000000000000055312314562632011342 0ustar #! /bin/sh set -e case "$1" in remove|upgrade|deconfigure) # unregister gedit as a gnome-text-editor in the alternatives system update-alternatives --remove gnome-text-editor /usr/bin/gedit || true ;; failed-upgrade) ;; *) echo "prerm called with unknown argument \`$1'" >&2 exit 0 ;; esac #DEBHELPER# debian/rules0000775000000000000000000000217112314562632010255 0ustar #!/usr/bin/make -f LDFLAGS=$(shell echo $$LDFLAGS | sed -e 's/-Wl,-Bsymbolic-functions//') include /usr/share/cdbs/1/rules/debhelper.mk include /usr/share/cdbs/1/rules/utils.mk include /usr/share/cdbs/1/rules/autoreconf.mk include /usr/share/cdbs/1/class/gnome.mk include /usr/share/gnome-pkg-tools/1/rules/uploaders.mk include /usr/share/gnome-pkg-tools/1/rules/gnome-version.mk -include /usr/share/gnome-pkg-tools/1/rules/gnome-get-source.mk DEB_PYTHON3_MODULE_PACKAGES = gedit binary-install/gedit:: cd debian/gedit/usr/share/gedit && mv gedit-bugreport.sh gedit-bugreport chmod 755 debian/gedit/usr/share/bug/gedit/script dh_python3 -pgedit dh_python3 -pgedit /usr/lib/*/gedit/plugins LDFLAGS += -Wl,-O1 -Wl,--as-needed DEB_DH_AUTORECONF_ARGS := $(CURDIR)/debian/rules reconf DEB_CONFIGURE_EXTRA_FLAGS += --disable-scrollkeeper --enable-gtk-doc \ --libdir=\$${prefix}/lib/$(DEB_HOST_MULTIARCH) DEB_DH_MAKESHLIBS_ARGS_gedit += -X/usr/lib/*/gedit DEB_DH_GIREPOSITORY_ARGS_gedit += -ldebian/tmp/usr/share/gedit/gir-1.0 /usr/lib/gedit/girepository-1.0 reconf: intltoolize --force --copy --automake gtkdocize autoreconf -f -i -v debian/script0000664000000000000000000000006712314562632010426 0ustar #! /bin/sh exec /usr/share/gedit/gedit-bugreport >&3 debian/watch0000664000000000000000000000013212314562632010221 0ustar version=3 http://ftp.gnome.org/pub/gnome/sources/gedit/([\d\.]+)/gedit-([\d\.]+)\.tar\.xz