--- gedit-plugins-2.25.2.orig/debian/copyright +++ gedit-plugins-2.25.2/debian/copyright @@ -0,0 +1,36 @@ +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 + +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.25.2.orig/debian/desktop2description.awk +++ gedit-plugins-2.25.2/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.25.2.orig/debian/compat +++ gedit-plugins-2.25.2/debian/compat @@ -0,0 +1 @@ +5 --- gedit-plugins-2.25.2.orig/debian/control +++ gedit-plugins-2.25.2/debian/control @@ -0,0 +1,58 @@ +Source: gedit-plugins +Section: gnome +Priority: optional +Maintainer: Ubuntu MOTU Developers +XSBC-Original-Maintainer: Loic Minier +Uploaders: Debian GNOME Maintainers , Josselin Mouette , Loic Minier , Sebastian Dröge +Build-Depends: cdbs, + libbonobo2-dev (>= 2.16), + libbonoboui2-dev (>= 2.16), + debhelper (>= 5), + gconf2 (>= 1.1.11), + libxml-parser-perl, + libglib2.0-dev (>= 2.8.0), + libgtk2.0-dev (>= 2.13.0), + libgtksourceview2.0-dev (>= 2.4.0), + gedit-dev (>= 2.24.0), + python-dev (>= 2.4), + python-gnome2-desktop-dev (>= 2.15.90), + python-gtk2-dev (>= 2.12.0), + libgucharmap-dev (>= 1.7.0), + python-vte, + gnome-doc-utils (>= 0.3.2), + gnome-pkg-tools (>= 0.11), + python-central (>= 0.5.6), + intltool (>= 0.35) +Standards-Version: 3.7.3 +XS-Python-Version: >= 2.3 + +Package: gedit-plugins +Architecture: any +Depends: ${shlibs:Depends}, + ${misc:Depends}, + ${python:Depends}, + gedit (>= 2.24.0), + python-gnome2-desktop (>= 2.15.90), + python-gtk2 (>= 2.12.0), + python-gobject (>= 2.15.4), + python-gnome2, + python-glade2, + python-vte, + python-gtksourceview2 (>= 2.2.0) +XB-Python-Version: ${python:Versions} +Description: set of plugins for gedit + gedit-plugins contain a set of plugins for gedit, GNOME's text editor. + . + The following plugins are included: + * Join/Split Lines: Join several lines or split long ones + * Character Map: Insert special characters just by clicking on them. + * Color Picker: Pick a color from a dialog and insert its hexadecimal representation. + * Smart Spaces: Forget you're not using tabulations. + * Bracket Completion: Automatically adds closing brackets. + * Code comment: Comment out or uncomment a selected block of code. + * Show/Hide Tabbar: Add a menu entry to show/hide the tabbar. + * Draw Spaces: Draw Spaces and Tabs + * Session Saver: Save and restore your working sessions + * Embedded Terminal: Embed a terminal in the bottom pane. + * Bookmarks: Easy document navigation with bookmarks + --- gedit-plugins-2.25.2.orig/debian/rules +++ gedit-plugins-2.25.2/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/simple-patchsys.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\* | while read f; do cat $$f | awk -f debian/desktop2description.awk; done | sed 's/.*/ &\\/'; echo " ")"; \ + sed \ + -e "s#@GNOME_TEAM@#$(UPLOADERS)#g" \ + -e "$$plugins_desc_script" \ + debian/control.in > debian/control + +binary-install/gedit-plugins:: + dh_pycentral -p$(cdbs_curpkg) usr/lib/gedit-2/plugins + find debian/$(cdbs_curpkg) -name \*.la -exec rm -f {} \; + --- gedit-plugins-2.25.2.orig/debian/control.in +++ gedit-plugins-2.25.2/debian/control.in @@ -0,0 +1,47 @@ +Source: gedit-plugins +Section: gnome +Priority: optional +Maintainer: Ubuntu MOTU Developers +XSBC-Original-Maintainer: Loic Minier +Uploaders: @GNOME_TEAM@ +Build-Depends: cdbs, + libbonobo2-dev (>= 2.16), + libbonoboui2-dev (>= 2.16), + debhelper (>= 5), + gconf2 (>= 1.1.11), + libxml-parser-perl, + libglib2.0-dev (>= 2.8.0), + libgtk2.0-dev (>= 2.13.0), + libgtksourceview2.0-dev (>= 2.4.0), + gedit-dev (>= 2.24.0), + python-dev (>= 2.4), + python-gnome2-desktop-dev (>= 2.15.90), + python-gtk2-dev (>= 2.12.0), + libgucharmap-dev (>= 1.7.0), + python-vte, + gnome-doc-utils (>= 0.3.2), + gnome-pkg-tools (>= 0.11), + python-central (>= 0.5.6), + intltool (>= 0.35) +Standards-Version: 3.7.3 +XS-Python-Version: >= 2.3 + +Package: gedit-plugins +Architecture: any +Depends: ${shlibs:Depends}, + ${misc:Depends}, + ${python:Depends}, + gedit (>= 2.24.0), + python-gnome2-desktop (>= 2.15.90), + python-gtk2 (>= 2.12.0), + python-gobject (>= 2.15.4), + python-gnome2, + python-glade2, + python-vte, + python-gtksourceview2 (>= 2.2.0) +XB-Python-Version: ${python:Versions} +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.25.2.orig/debian/changelog +++ gedit-plugins-2.25.2/debian/changelog @@ -0,0 +1,173 @@ +gedit-plugins (2.25.2-0ubuntu1) jaunty; urgency=low + + * New upstream release. (LP: #314163) + - Skip closing brackets (Ignacio Casal Quinteiro) + - New bookmarks plugin (Jesse van den Kieboom) + - Added bracket completion for <> in php (Jesse van den Kieboom) + - Show non-breaking spaces in drawspace plugin (Ignacio Casal Quinteiro) + - Misc bugfixes. + + -- Baptiste Mille-Mathias Mon, 05 Jan 2009 21:42:57 +0100 + +gedit-plugins (2.25.1-0ubuntu1) jaunty; urgency=low + + * New upstream release. (LP: #306374) + - Use vte api to set cursor shape and blink mode in + terminal (Paolo Borelli) + - Ported to GIO and gtkbuilder (Ignacio Casal Quinteiro) + - New implementation of drawspaces plugin (Paolo Borelli, + Ignacio Casal Quinteiro) + - Misc bugfixes. + * debian/control: + - Bump Build-depends for libgtk2.0-dev to (>= 2.13.0), + libgtksourceview2.0-dev to (>= 2.4.0), gedit-dev to + (>= 2.24.0), and python-gtk2-dev to (>= 2.12.0) + - Drop deprecated Build-depends on libglade2-dev and + libgnomevfs2-dev + - Make gconf2 Build-depend versionized on (>= 1.1.11) + - Bump Depends for python-gobject to (>= 2.15.4), python-gtk2 + to (>= 2.12.0), python-gtksourceview2 to (>= 2.2.0), and + gedit to (>= 2.24.0) + + -- Andrew Starr-Bochicchio Mon, 08 Dec 2008 19:14:58 -0500 + +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.25.2.orig/debian/watch +++ gedit-plugins-2.25.2/debian/watch @@ -0,0 +1,2 @@ +version=2 +http://ftp.gnome.org/pub/gnome/sources/gedit-plugins/([\d\.]+)[02468]/gedit-plugins-([\d\.]+)\.tar\.gz