[Python-modules-commits] r15581 - in packages (12 files)

debfx-guest at users.alioth.debian.org debfx-guest at users.alioth.debian.org
Thu Feb 10 19:39:43 UTC 2011


    Date: Thursday, February 10, 2011 @ 19:39:39
  Author: debfx-guest
Revision: 15581

Initial packaging.

Added:
  packages/pyudev/
  packages/pyudev/tags/
  packages/pyudev/trunk/
  packages/pyudev/trunk/debian/
  packages/pyudev/trunk/debian/changelog
  packages/pyudev/trunk/debian/compat
  packages/pyudev/trunk/debian/control
  packages/pyudev/trunk/debian/copyright
  packages/pyudev/trunk/debian/rules
  packages/pyudev/trunk/debian/source/
  packages/pyudev/trunk/debian/source/format
  packages/pyudev/trunk/debian/watch

Added: packages/pyudev/trunk/debian/changelog
===================================================================
--- packages/pyudev/trunk/debian/changelog	                        (rev 0)
+++ packages/pyudev/trunk/debian/changelog	2011-02-10 19:39:39 UTC (rev 15581)
@@ -0,0 +1,5 @@
+pyudev (0.8-1) UNRELEASED; urgency=low
+
+  * Inital release. (Closes: #612663)
+
+ -- Felix Geyer <debfx-pkg at fobos.de>  Thu, 10 Feb 2011 20:16:20 +0100

Added: packages/pyudev/trunk/debian/compat
===================================================================
--- packages/pyudev/trunk/debian/compat	                        (rev 0)
+++ packages/pyudev/trunk/debian/compat	2011-02-10 19:39:39 UTC (rev 15581)
@@ -0,0 +1 @@
+8

Added: packages/pyudev/trunk/debian/control
===================================================================
--- packages/pyudev/trunk/debian/control	                        (rev 0)
+++ packages/pyudev/trunk/debian/control	2011-02-10 19:39:39 UTC (rev 15581)
@@ -0,0 +1,35 @@
+Source: pyudev
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Felix Geyer <debfx-pkg at fobos.de>
+Build-Depends: debhelper (>= 8),
+               python-all,
+               python3-all,
+               python-setuptools,
+               python3-setuptools
+X-Python-Version: >= 2.6
+X-Python3-Version: all
+Standards-Version: 3.9.1
+Homepage: http://packages.python.org/pyudev/
+Vcs-Svn: svn://svn.debian.org/python-modules/packages/pyudev/trunk/
+Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/pyudev/trunk/
+
+Package: python-pyudev
+Architecture: all
+Depends: ${python:Depends}, ${misc:Depends}, libudev0 (>= 151)
+Suggests: python-gobject, python-qt4, python-pyside.qtcore
+Breaks: ${python:Breaks}
+Description: Python bindings for libudev
+ This module provides a Python binding to the udev library.
+ .
+ It supports additional integration for GObject, PyQt4 and PySide.
+
+Package: python3-pyudev
+Architecture: all
+Depends: ${python3:Depends}, ${misc:Depends}, libudev0 (>= 151)
+Breaks: ${python3:Breaks}
+Description: Python3 bindings for libudev
+ This module provides a Python3 binding to the udev library.
+ .
+ It supports additional integration for GObject, PyQt4 and PySide.

Added: packages/pyudev/trunk/debian/copyright
===================================================================
--- packages/pyudev/trunk/debian/copyright	                        (rev 0)
+++ packages/pyudev/trunk/debian/copyright	2011-02-10 19:39:39 UTC (rev 15581)
@@ -0,0 +1,40 @@
+This work was packaged for Debian by:
+
+    Felix Geyer <debfx-pkg at fobos.de> on Wed, 09 Feb 2011
+
+It was downloaded from:
+
+    http://pypi.python.org/pypi/pyudev
+
+Upstream Authors:
+
+    Sebastian Wiesner <lunaryorn at googlemail.com>
+
+Copyright:
+
+    Copyright (C) 2010-2011, Sebastian Wiesner <lunaryorn at googlemail.com>
+
+License:
+
+    This library is free software; you can redistribute it and/or modify it
+    under the terms of the GNU Lesser General Public License as published by the
+    Free Software Foundation; either version 2.1 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 Lesser General Public License
+    for more details.
+
+    You should have received a copy of the GNU Lesser 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
+
+On Debian systems, the complete text of the GNU Lesser General Public License
+can be found in `/usr/share/common-licenses/LGPL-2.1'.
+
+The Debian packaging is:
+
+    Copyright (C) 2011, Felix Geyer <debfx-pkg at fobos.de>
+
+and is under the same license.

Added: packages/pyudev/trunk/debian/rules
===================================================================
--- packages/pyudev/trunk/debian/rules	                        (rev 0)
+++ packages/pyudev/trunk/debian/rules	2011-02-10 19:39:39 UTC (rev 15581)
@@ -0,0 +1,15 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+
+%:
+	dh $@ --with python2,python3
+
+override_dh_auto_install:
+	for pyvers in $(shell pyversions -vr); do \
+		python$$pyvers setup.py install --no-compile -O0 --install-layout=deb \
+			--root $(CURDIR)/debian/python-pyudev; \
+	done
+	for pyvers in $(shell py3versions -sv); do \
+		python$$pyvers setup.py install --no-compile -O0 --install-layout=deb \
+			--root $(CURDIR)/debian/python3-pyudev; \
+	done


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

Added: packages/pyudev/trunk/debian/source/format
===================================================================
--- packages/pyudev/trunk/debian/source/format	                        (rev 0)
+++ packages/pyudev/trunk/debian/source/format	2011-02-10 19:39:39 UTC (rev 15581)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: packages/pyudev/trunk/debian/watch
===================================================================
--- packages/pyudev/trunk/debian/watch	                        (rev 0)
+++ packages/pyudev/trunk/debian/watch	2011-02-10 19:39:39 UTC (rev 15581)
@@ -0,0 +1,2 @@
+version=3
+http://pypi.python.org/packages/source/p/pyudev/pyudev-([\d.]+).tar.gz




More information about the Python-modules-commits mailing list