[Python-modules-commits] r8949 - in packages/keybinder/trunk (8 files)

dktrkranz-guest at users.alioth.debian.org dktrkranz-guest at users.alioth.debian.org
Sun Jul 5 11:30:47 UTC 2009


    Date: Sunday, July 5, 2009 @ 11:30:43
  Author: dktrkranz-guest
Revision: 8949

[svn-inject] Applying Debian modifications to trunk

Added:
  packages/keybinder/trunk/debian/
  packages/keybinder/trunk/debian/changelog
  packages/keybinder/trunk/debian/compat
  packages/keybinder/trunk/debian/control
  packages/keybinder/trunk/debian/copyright
  packages/keybinder/trunk/debian/docs
  packages/keybinder/trunk/debian/rules
  packages/keybinder/trunk/debian/watch


Property changes on: packages/keybinder/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
   + 1

Added: packages/keybinder/trunk/debian/changelog
===================================================================
--- packages/keybinder/trunk/debian/changelog	                        (rev 0)
+++ packages/keybinder/trunk/debian/changelog	2009-07-05 11:30:43 UTC (rev 8949)
@@ -0,0 +1,5 @@
+keybinder (0.0.2-1) UNRELEASED; urgency=low
+
+  * Initial release (Closes: #535619).
+
+ -- Luca Falavigna <dktrkranz at ubuntu.com>  Sat, 04 Jul 2009 13:12:12 +0200

Added: packages/keybinder/trunk/debian/compat
===================================================================
--- packages/keybinder/trunk/debian/compat	                        (rev 0)
+++ packages/keybinder/trunk/debian/compat	2009-07-05 11:30:43 UTC (rev 8949)
@@ -0,0 +1 @@
+7

Added: packages/keybinder/trunk/debian/control
===================================================================
--- packages/keybinder/trunk/debian/control	                        (rev 0)
+++ packages/keybinder/trunk/debian/control	2009-07-05 11:30:43 UTC (rev 8949)
@@ -0,0 +1,23 @@
+Source: keybinder
+Section: python
+Priority: optional
+Maintainer: Luca Falavigna <dktrkranz at ubuntu.com> 
+Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Build-Depends: debhelper (>= 7.0.50), python-all-dev (>= 2.5), python-all-dbg (>= 2.5), python-support (>= 0.5.3), pkg-config, gnome-doc-utils (>= 0.3.2), python-gtk2-dev (>= 2.12), python-gnomeapplet
+Standards-Version: 3.8.2
+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 GTK-based applications
+ python-keybinder is a Python module to allow 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
+ packaged as a stand-alone to let other Python applications to use key binding.
+

Added: packages/keybinder/trunk/debian/copyright
===================================================================
--- packages/keybinder/trunk/debian/copyright	                        (rev 0)
+++ packages/keybinder/trunk/debian/copyright	2009-07-05 11:30:43 UTC (rev 8949)
@@ -0,0 +1,50 @@
+This package was debianized by:
+
+    Luca Falavigna <dktrkranz at ubuntu.com> on Sat, 04 Jul 2009 13:12:12 +0200
+
+It was downloaded from:
+
+    http://kaizer.se/publicfiles/keybinder/
+
+Upstream Authors:
+
+    Ulrik Sverdrup <ulrik.sverdrup at gmail.com>
+    Nigel Tao <nigel.tao at myrealbox.com>
+    Raphaël Slinckx <raphael at slinckx.net>
+    Sebastian Pölsterl <sebp at k-d-w.org>
+    Alex Graveley <alex at beatniksoftware.com>
+    Havoc Pennington
+    Tim Janik
+
+Copyright:
+
+    Copyright © 2009 Ulrik Sverdrup
+    Copyright © 2008 Alex Graveley
+    Copyright © 2002 Red Hat, Inc.
+    Copyright © 1998, 2001 Tim Janik
+
+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'.
+
+The Debian packaging is:
+
+    Copyright (C) 2009 Luca Falavigna <dktrkranz at ubuntu.com>
+
+and is licensed under the GPL version 2, see `/usr/share/common-licenses/GPL-2'.
+

Added: packages/keybinder/trunk/debian/docs
===================================================================
--- packages/keybinder/trunk/debian/docs	                        (rev 0)
+++ packages/keybinder/trunk/debian/docs	2009-07-05 11:30:43 UTC (rev 8949)
@@ -0,0 +1,2 @@
+AUTHORS
+README

Added: packages/keybinder/trunk/debian/rules
===================================================================
--- packages/keybinder/trunk/debian/rules	                        (rev 0)
+++ packages/keybinder/trunk/debian/rules	2009-07-05 11:30:43 UTC (rev 8949)
@@ -0,0 +1,27 @@
+#!/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
+


Property changes on: packages/keybinder/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: packages/keybinder/trunk/debian/watch
===================================================================
--- packages/keybinder/trunk/debian/watch	                        (rev 0)
+++ packages/keybinder/trunk/debian/watch	2009-07-05 11:30:43 UTC (rev 8949)
@@ -0,0 +1,2 @@
+version=3
+http://kaizer.se/publicfiles/keybinder/keybinder-([0-9.]+)\.tar\.gz




More information about the Python-modules-commits mailing list