--- gedit-plugins-2.30.0.orig/debian/control.in +++ gedit-plugins-2.30.0/debian/control.in @@ -0,0 +1,46 @@ +Source: gedit-plugins +Section: gnome +Priority: optional +Maintainer: Ubuntu Developers +XSBC-Original-Maintainer: Loic Minier +Uploaders: @GNOME_TEAM@ +Build-Depends: cdbs, + debhelper (>= 5), + gnome-doc-utils (>= 0.3.2), + intltool (>= 0.35.0), + libglib2.0-dev (>= 2.16.0), + libgtk2.0-dev (>= 2.13.0), + libgconf2-dev (>= 1.1.11), + libgtksourceview2.0-dev (>= 2.9.1), + gedit-dev (>= 2.29.3), + python-dev (>= 2.3), + python-gobject-dev (>= 2.15.4), + python-gtk2-dev (>= 2.12.0), + python-gtksourceview2 (>= 2.2.0), + libgucharmap2-dev (>= 2.23.0), + libvte-dev (>= 1:0.19.4), + gnome-pkg-tools (>= 0.11), + python-support (>= 0.7.1) +Standards-Version: 3.8.3 +Homepage: http://live.gnome.org/Gedit/Plugins +Vcs-Svn: svn://svn.debian.org/svn/pkg-gnome/packages/unstable/gedit-plugins +Vcs-Browser: http://svn.debian.org/viewsvn/pkg-gnome/packages/unstable/gedit-plugins +XS-Python-Version: >= 2.3 + +Package: gedit-plugins +Architecture: any +Depends: ${shlibs:Depends}, + ${misc:Depends}, + ${python:Depends}, + gedit (>= 2.29.3), + python-gtk2 (>= 2.12.0), + python-gobject (>= 2.15.4), + python-gconf, + python-glade2, + python-vte (>= 1:0.19.4), + python-gtksourceview2 (>= 2.2.0) +Description: set of plugins for gedit + gedit-plugins contain a set of plugins for gedit, GNOME's text editor. + . + The following plugins are included: + @PLUGINS_DESCRIPTION@ --- gedit-plugins-2.30.0.orig/debian/control +++ gedit-plugins-2.30.0/debian/control @@ -0,0 +1,60 @@ +Source: gedit-plugins +Section: gnome +Priority: optional +Maintainer: Ubuntu Developers +XSBC-Original-Maintainer: Loic Minier +Uploaders: Debian GNOME Maintainers , Josselin Mouette , Sebastian Dröge +Build-Depends: cdbs, + debhelper (>= 5), + gnome-doc-utils (>= 0.3.2), + intltool (>= 0.35.0), + libglib2.0-dev (>= 2.16.0), + libgtk2.0-dev (>= 2.13.0), + libgconf2-dev (>= 1.1.11), + libgtksourceview2.0-dev (>= 2.9.1), + gedit-dev (>= 2.29.3), + python-dev (>= 2.3), + python-gobject-dev (>= 2.15.4), + python-gtk2-dev (>= 2.12.0), + python-gtksourceview2 (>= 2.2.0), + libgucharmap2-dev (>= 2.23.0), + libvte-dev (>= 1:0.19.4), + gnome-pkg-tools (>= 0.11), + python-support (>= 0.7.1) +Standards-Version: 3.8.3 +Homepage: http://live.gnome.org/Gedit/Plugins +Vcs-Svn: svn://svn.debian.org/svn/pkg-gnome/packages/unstable/gedit-plugins +Vcs-Browser: http://svn.debian.org/viewsvn/pkg-gnome/packages/unstable/gedit-plugins +XS-Python-Version: >= 2.3 + +Package: gedit-plugins +Architecture: any +Depends: ${shlibs:Depends}, + ${misc:Depends}, + ${python:Depends}, + gedit (>= 2.29.3), + python-gtk2 (>= 2.12.0), + python-gobject (>= 2.15.4), + python-gconf, + python-glade2, + python-vte (>= 1:0.19.4), + python-gtksourceview2 (>= 2.2.0) +Description: set of plugins for gedit + gedit-plugins contain a set of plugins for gedit, GNOME's text editor. + . + The following plugins are included: + * Multi Edit: Edit document in multiple places at once + * Embedded Terminal: Embed a terminal in the bottom pane. + * Color Picker: Pick a color from a dialog and insert its hexadecimal representation. + * Character Map: Insert special characters just by clicking on them. + * Join/Split Lines: Join several lines or split long ones + * Draw Spaces: Draw Spaces and Tabs + * Show/Hide Tabbar: Add a menu entry to show/hide the tabbar. + * Session Saver: Save and restore your working sessions + * Bookmarks: Easy document navigation with bookmarks + * Commander: Command line interface for advanced editing + * Code comment: Comment out or uncomment a selected block of code. + * Word Completion: Word completion using the completion framework + * Smart Spaces: Forget you're not using tabulations. + * Bracket Completion: Automatically adds closing brackets. + --- gedit-plugins-2.30.0.orig/debian/rules +++ gedit-plugins-2.30.0/debian/rules @@ -0,0 +1,23 @@ +#!/usr/bin/make -f + +DISABLE_UPDATE_UPLOADERS := 1 +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/gnome.mk +include /usr/share/cdbs/1/rules/utils.mk +include /usr/share/gnome-pkg-tools/1/rules/uploaders.mk +-include /usr/share/gnome-pkg-tools/1/rules/gnome-get-source.mk + +DEB_CONFIGURE_EXTRA_FLAGS += --with-plugins=all --enable-python + +clean:: + plugins_desc_script="/^ @PLUGINS_DESCRIPTION@\$$/ c \\$$(find . -iname \*.desktop.in.in | while read f; do cat $$f | awk -f debian/desktop2description.awk; done | sed 's/.*/ &\\/'; echo " ")"; \ + [ $$(echo $$plugins_desc_script | grep -o \\\\ | wc -l) -eq 1 ] && echo "Error: Seems you are using this package in VCS. You need pristine source\nto update description in control file" && exit 1; \ + sed \ + -e "s#@GNOME_TEAM@#$(UPLOADERS)#g" \ + -e "$$plugins_desc_script" \ + debian/control.in > debian/control + +binary-install/gedit-plugins:: + dh_pysupport -p$(cdbs_curpkg) /usr/lib/gedit-2/plugins + find debian/$(cdbs_curpkg) -name \*.la -exec rm -f {} \; + --- gedit-plugins-2.30.0.orig/debian/desktop2description.awk +++ gedit-plugins-2.30.0/debian/desktop2description.awk @@ -0,0 +1,9 @@ +# converts *.desktop and *.desktop.in files with "_Name=" and "_Description" +# to "* $name: $description" entries for the Description: control field + +BEGIN { FS="="; name = ""; description = ""; } + +/^_Name=/ { name = $2;} +/^_Description=/ { description = $2; } + +END { print "* " name ": " description; } --- gedit-plugins-2.30.0.orig/debian/watch +++ gedit-plugins-2.30.0/debian/watch @@ -0,0 +1,2 @@ +version=2 +http://ftp.gnome.org/pub/gnome/sources/gedit-plugins/([\d\.]+)/gedit-plugins-([\d\.]+)\.tar\.gz --- gedit-plugins-2.30.0.orig/debian/changelog +++ gedit-plugins-2.30.0/debian/changelog @@ -0,0 +1,238 @@ +gedit-plugins (2.30.0-1ubuntu1) maverick; urgency=low + + * Merge from debian unstable (LP: #590831). Remaining changes: + - debian/control.in: Add build-dep on gnome-doc-utils + - debian/rules: Add a check on clean target as building + - debian/watch: Watch unstable series + + -- Jean-Louis Dupond Wed, 05 May 2010 04:10:58 +0100 + +gedit-plugins (2.30.0-1) unstable; urgency=low + + * New upstream stable release: + + debian/control.in: + - Update (build-) dependencies. + + -- Sebastian Dröge Sat, 10 Apr 2010 08:44:24 +0200 + +gedit-plugins (2.30.0-0ubuntu1) lucid; urgency=low + + * New upstream release + + -- Didier Roche Tue, 30 Mar 2010 11:24:05 +0200 + +gedit-plugins (2.29.4-0ubuntu1) lucid; urgency=low + + * New upstream release. + * debian/control{.in}: Bump gedit-dev Build-Dep to (>= 2.29.3). + + -- Andrew Starr-Bochicchio Mon, 25 Jan 2010 17:18:13 -0500 + +gedit-plugins (2.29.2-0ubuntu1) lucid; urgency=low + + * Sync on Debian unstable, remaining changes: + - debian/control: Add build-dep on gnome-doc-utils + - debian/rules: Add a check on clean target as building + debian/control description needs pristine source code present + (not always the case in Bzr merge mode) + - debian/watch: Watch unstable series + * New upstream version: + - Added word completion plugin + - Added support for drawing leading, text and trailing spaces + - Added multi edit plugin + - Misc Bugfixes + * debian/control: + - Bump libgtksourceview2.0-dev build-dep to 2.9.1 + + -- Chris Coulson Wed, 25 Nov 2009 23:45:30 +0000 + +gedit-plugins (2.28.0-1) unstable; urgency=low + + * New upstream release. + * debian/control.in: + - bumped standards-version to 3.8.3. No changes needed. + * debian/copyright: + - added missing copyright holders. + * debian/patches: + - removed, we have no patches to apply. + * debian/rules: + - simple-patchsys include removed. + + -- Andrea Veri Sun, 04 Oct 2009 13:06:58 +0200 + +gedit-plugins (2.27.1-1) unstable; urgency=low + + * Add epochs for vte dependencies. + * New upstream release. + + -- Josselin Mouette Fri, 25 Sep 2009 20:35:54 +0200 + +gedit-plugins (2.26.2-1) unstable; urgency=low + + * debian/control.in: add missing comma in build-dependencies to fix + FTBFS due to an stricter dpkg. Closes: #536940. + * Standards-Version is 3.8.2, no changes needed. + * Add homepage and Vcs-* fields. + * New upstream release. + - Remove no longer needed gnome-doc-utils build dependency. + + -- Emilio Pozuelo Monfort Tue, 11 Aug 2009 18:44:25 +0200 + +gedit-plugins (2.26.1-1) unstable; urgency=low + + [ Luca Bruno ] + * New upstream release. Closes: #518886 + + Now uses libgucharmap2-dev. Closes: #523935 + * debian/control.in: + - Update Standards-Version to 3.8.1, no additional changes needed. + + [ Josselin Mouette ] + * Switch to python-support. + * Remove useless ${python:Versions} for private modules. + * Only require python-gconf, not python-gnome2. + * Massive update to build-dependencies and dependencies. + * rules: fix the rule that generates the descriptions to not duplicate + them. + + -- Josselin Mouette Thu, 23 Apr 2009 00:20:03 +0200 + +gedit-plugins (2.22.5-1) unstable; urgency=low + + * New upstream release. + + -- Josselin Mouette Fri, 14 Nov 2008 16:31:42 +0100 + +gedit-plugins (2.22.2-1) unstable; urgency=low + + * New upstream bugfix release: + + debian/control.in: + - Build depend on intltool (>= 0.35) as the build system requires + intltool-update. + + -- Sebastian Dröge Sun, 20 Apr 2008 17:22:07 +0200 + +gedit-plugins (2.22.1-1) unstable; urgency=low + + * New upstream bugfix release. + + -- Sebastian Dröge Tue, 08 Apr 2008 13:23:14 +0200 + +gedit-plugins (2.22.0-1) unstable; urgency=low + + * New upstream stable release. + * debian/control.in: + + Update Standards-Version to 3.7.3, no additional changes needed. + + -- Sebastian Dröge Mon, 17 Mar 2008 00:32:49 +0100 + +gedit-plugins (2.20.0-1) unstable; urgency=low + + * New upstream release: + + Fixes FTBFS against gedit >= 2.20.0 (Closes: #447457). + + debian/control.in: + - Update build dependencies and dependencies. + + debian/patches/60_sessionsaver-window-typo-in-deactivate.patch: + - Dropped, merged upstream. + + -- Sebastian Dröge Thu, 25 Oct 2007 11:34:23 +0200 + +gedit-plugins (2.18.0-2) unstable; urgency=low + + * New patch, 60_sessionsaver-window-typo-in-deactivate, fixes Python error + when deactivating the plugin. + + -- Loic Minier Sun, 06 May 2007 16:54:52 +0200 + +gedit-plugins (2.18.0-1) unstable; urgency=low + + [ Loic Minier ] + * Drop superfluous uploaders include. + + [ Sebastian Dröge ] + * Change libgucharmap5-dev build dependency to libgucharmap-dev. + + [ Loic Minier ] + * New upstream stable release. + - Add deps on python-gobject, python-gnome2, python-glade2 for new plugins + imports. + * Build-depend on gnome-doc-utils instead of gnome-doc-tools. + * Set DISABLE_UPDATE_UPLOADERS; build-dep on gnome-pkg-tools >= 0.11. + * Add watch file. + * Upload to unstable. + * Add a get-orig-source target to retrieve the upstream tarball. + + -- Loic Minier Sun, 06 May 2007 16:09:43 +0200 + +gedit-plugins (2.16.0-1) experimental; urgency=low + + * Initial upload to Debian; target at experimental; closes: #367659. + * Set myself as Maintainer, GNOME team as Uploaders. + * Cleanup rules. + * Python transition. + - Build-depend on python-central (>= 0.5.6). + - Call dh_pycentral instead of dh_python. + - Add XS-Python-Version: >= 2.3 and XB-Python-Version: ${python:Versions}. + * Add superfluous build-deps on libgnomevfs2-dev (>= 1:2.16), + libbonobo2-dev (>= 2.16), and libbonoboui2-dev (>= 2.16) to help + autobuilders. + * Compute descriptions from .desktop files. + * Include debhelper before gnome; sigh. + * Include CDBS's utils. + + -- Loic Minier Mon, 12 Feb 2007 13:34:05 +0100 + +gedit-plugins (2.16.0-0ubuntu1) edgy; urgency=low + + * New upstream release: + - New Bracket Completion Plugin + - New and updated translations: sv, vi, ca. + * debian/control: + - bumped gedit, pygtk and python-gnome-desktop requirement. + + -- Daniel Holbach Fri, 8 Sep 2006 16:21:10 +0200 + +gedit-plugins (2.15.5-0ubuntu1) edgy; urgency=low + + * New upstream version: + New features and fixes: + - New Code Comment plugin + - Update to latest gedit 2.15 API + - Fix plugin l10n + - Fixes to configure + - Various fixes. + * debian/control: + - updated gedit requirement + + -- Sebastien Bacher Tue, 22 Aug 2006 15:58:56 +0200 + +gedit-plugins (2.15.4-0ubuntu3) edgy; urgency=low + + * debian/control: + - libgucharmap4-dev -> libgucharmap5-dev. + + -- Daniel Holbach Tue, 25 Jul 2006 10:53:23 +0200 + +gedit-plugins (2.15.4-0ubuntu2) edgy; urgency=low + + * debian/control: + - Build-Depends on gnome-doc-utils (>= 0.3.2) + + -- Sebastien Bacher Thu, 13 Jul 2006 16:30:00 +0200 + +gedit-plugins (2.15.4-0ubuntu1) edgy; urgency=low + + * New upstream release: + - Fixes to configure + - Terminal setting proper sensitivity to copy button + - New and updated translations: sv, es, hu, de, fi, ru. + * debian/patches/99_remove_python-vte_check.patch: + - dropped, fixed upstream. + + -- Daniel Holbach Tue, 11 Jul 2006 14:39:28 +0200 + +gedit-plugins (2.15.3-0ubuntu1) edgy; urgency=low + + * Initial release. + + -- Daniel Holbach Mon, 10 Jul 2006 11:50:19 +0200 + --- gedit-plugins-2.30.0.orig/debian/copyright +++ gedit-plugins-2.30.0/debian/copyright @@ -0,0 +1,42 @@ +This package was debianized by Daniel Holbach on +Mon, 10 Jul 2006 11:50:19 +0200. + +It was downloaded from ftp.gnome.org/pub/GNOME/sources/gedit-plugins + +Upstream Author: + Steve Frécinaux + Jesse van den Kieboom + + +Copyright: + * Copyright (C) 2006 Steve Frécinaux + * Copyright (C) 2006 Jesse van den Kieboom + * Copyright (C) 2005, 2006 Paolo Borelli + * Copyright (C) 2006 Matthew Dugan + * Copyright (C) 2005, 2006 Igalia + * Copyright (C) 2008 Ignacio Casal Quinteiro + * Copyright (C) 1996, 2008 Free Software Foundation, Inc + * Copyright (C) 2006, 2007 Andrè Homeyer + +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; either version 2 of the License, or + (at your option) any later version. + + 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 systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL'. + +The Debian packaging is (C) 2006, Daniel Holbach and +is licensed under the GPL, see above. + --- gedit-plugins-2.30.0.orig/debian/compat +++ gedit-plugins-2.30.0/debian/compat @@ -0,0 +1 @@ +5