--- keybinder-0.0.4.orig/debian/control +++ keybinder-0.0.4/debian/control @@ -0,0 +1,24 @@ +Source: keybinder +Section: python +Priority: optional +Maintainer: Luca Falavigna +Uploaders: Debian Python Modules Team +Build-Depends: debhelper (>= 7.0.50), python-all-dev (>= 2.5), python-support, pkg-config (>= 0.9.0), python-gtk2-dev (>= 2.12) +Standards-Version: 3.8.3 +XS-Python-Version: >= 2.5 +Homepage: http://kaizer.se/wiki/python-keybinder/ +Vcs-Svn: svn://svn.debian.org/python-modules/packages/keybinder/trunk/ +Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/keybinder/trunk/ + +Package: python-keybinder +Architecture: any +Depends: ${python:Depends}, ${shlibs:Depends}, ${misc:Depends}, python-gtk2 +Provides: ${python:Provides} +Description: register global key bindings for PyGTK-based applications + python-keybinder is a Python module which allows applications to register a + key binding to be later executed when a combination of keys is pressed. + . + Originally written as part of the Tomboy project, python-keybinder has been + distributed as a stand-alone extension to let other Python applications to + use key binding feature. + --- keybinder-0.0.4.orig/debian/compat +++ keybinder-0.0.4/debian/compat @@ -0,0 +1 @@ +7 --- keybinder-0.0.4.orig/debian/watch +++ keybinder-0.0.4/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://kaizer.se/publicfiles/keybinder/keybinder-([0-9.]+)\.tar\.gz --- keybinder-0.0.4.orig/debian/changelog +++ keybinder-0.0.4/debian/changelog @@ -0,0 +1,14 @@ +keybinder (0.0.4-1) unstable; urgency=low + + * New upstream release. + * Remove gnome-doc-utils and python-gnomeapplet from Build-Depends. + * Update my e-mail address. + * Bump Standards-Version to 3.8.3, no changes required. + + -- Luca Falavigna Fri, 27 Nov 2009 10:48:11 +0100 + +keybinder (0.0.3-1) unstable; urgency=low + + * Initial release (Closes: #535619). + + -- Luca Falavigna Wed, 08 Jul 2009 11:55:13 +0200 --- keybinder-0.0.4.orig/debian/copyright +++ keybinder-0.0.4/debian/copyright @@ -0,0 +1,100 @@ +This package was debianized by: + + Luca Falavigna on Wed, 08 Jul 2009 11:55:13 +0200 + +It was downloaded from: + + http://kaizer.se/publicfiles/keybinder/ + +Upstream Authors: + + Ulrik Sverdrup + Nigel Tao + Raphaël Slinckx + Sebastian Pölsterl + Alex Graveley + Havoc Pennington + Tim Janik + +Copyright: + + Copyright © 2009 Ulrik Sverdrup + +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 version 2 can be found in `/usr/share/common-licenses/GPL-2'. + + +Copyright and licensing informations for keybinder/eggaccelerators.{c,h}: + +Copyright: + + Copyright © 2002 Red Hat, Inc. + Copyright © 1998, 2001 Tim Janik + +License: + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library 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 + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public + License along with this library; if not, write to the + Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, + MA 02110-1301, USA. + + +Copyright and licensing informations for keybinder/tomboykeybinder.{c,h}: + +Copyright: + + Copyright © 2008 Alex Graveley + +License: + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE + LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +The Debian packaging is: + + Copyright © 2009 Luca Falavigna + +and is licensed under the GPL version 2, see `/usr/share/common-licenses/GPL-2'. --- keybinder-0.0.4.orig/debian/docs +++ keybinder-0.0.4/debian/docs @@ -0,0 +1,2 @@ +AUTHORS +README --- keybinder-0.0.4.orig/debian/rules +++ keybinder-0.0.4/debian/rules @@ -0,0 +1,26 @@ +#!/usr/bin/make -f + +PYTHONS := $(shell pyversions -vr debian/control) + +%: + dh $@ + +clean: + rm -fr build keybinder/*.pyc + dh $@ + +override_dh_auto_configure: + for pyvers in ${PYTHONS}; do \ + mkdir -p build/py$$pyvers; cp -Rl `ls . | grep -v build | grep -v debian` build/py$$pyvers;\ + (cd build/py$$pyvers; ./configure --prefix=/usr PYTHON=python$$pyvers); \ + done + +override_dh_auto_build: + for pyvers in ${PYTHONS}; do \ + (cd build/py$$pyvers/; $(MAKE) PYTHON=python$$pyvers); \ + done + +override_dh_auto_install: + for pyvers in ${PYTHONS}; do \ + (cd build/py$$pyvers/; $(MAKE) install DESTDIR=$(CURDIR)/debian/python-keybinder); \ + done