[Python-modules-commits] r2123 - in /packages/pylirc: ./ branches/
tags/ trunk/ trunk/debian/
trunk/debian/changelog trunk/debian/compat trunk/debian/control
trunk/debian/copyright trunk/debian/pycompat trunk/debian/rules
geole-guest at users.alioth.debian.org
geole-guest at users.alioth.debian.org
Wed Apr 18 20:53:22 UTC 2007
Author: geole-guest
Date: Wed Apr 18 20:53:22 2007
New Revision: 2123
URL: http://svn.debian.org/wsvn/python-modules/?sc=1&rev=2123
Log:
Initial release for pylirc
Added:
packages/pylirc/
packages/pylirc/branches/
packages/pylirc/tags/
packages/pylirc/trunk/
packages/pylirc/trunk/debian/
packages/pylirc/trunk/debian/changelog
packages/pylirc/trunk/debian/compat
packages/pylirc/trunk/debian/control
packages/pylirc/trunk/debian/copyright
packages/pylirc/trunk/debian/pycompat
packages/pylirc/trunk/debian/rules
Added: packages/pylirc/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/python-modules/packages/pylirc/trunk/debian/changelog?rev=2123&op=file
==============================================================================
--- packages/pylirc/trunk/debian/changelog (added)
+++ packages/pylirc/trunk/debian/changelog Wed Apr 18 20:53:22 2007
@@ -1,0 +1,5 @@
+pylirc (0.0.5-1) UNRELEASED; urgency=low
+
+ * Initial release.
+
+ -- Georg W. Leonhardt <repo at geole.info> Wed, 18 Apr 2007 13:03:51 +0200
Added: packages/pylirc/trunk/debian/compat
URL: http://svn.debian.org/wsvn/python-modules/packages/pylirc/trunk/debian/compat?rev=2123&op=file
==============================================================================
--- packages/pylirc/trunk/debian/compat (added)
+++ packages/pylirc/trunk/debian/compat Wed Apr 18 20:53:22 2007
@@ -1,0 +1,1 @@
+5
Added: packages/pylirc/trunk/debian/control
URL: http://svn.debian.org/wsvn/python-modules/packages/pylirc/trunk/debian/control?rev=2123&op=file
==============================================================================
--- packages/pylirc/trunk/debian/control (added)
+++ packages/pylirc/trunk/debian/control Wed Apr 18 20:53:22 2007
@@ -1,0 +1,17 @@
+Source: pylirc
+Section: universe/python
+Priority: optional
+Maintainer: Georg W. Leonhardt <repo at geole.info>
+Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Build-Depends: cdbs (>= 0.4.48), debhelper (>= 5.0.38), python-all-dev (>= 2.5), python-central (>= 0.5), liblircclient-dev
+XS-Python-Version: all
+XS-Vcs-Svn: svn://svn.debian.org/python-modules/packages/pylirc/trunk/
+Standards-Version: 3.7.2
+
+Package: python-lirc
+Architecture: any
+Depends: ${python:Depends}, ${shlibs:Depends}
+Provides: ${python:Provides}
+XB-Python-Version: ${python:Versions}
+Description: pyLirc is a module for Python that interacts with lirc
+ pyLirc is a module for Python that interacts with lirc to give Python programs the ability to receive commands from remote controls.
Added: packages/pylirc/trunk/debian/copyright
URL: http://svn.debian.org/wsvn/python-modules/packages/pylirc/trunk/debian/copyright?rev=2123&op=file
==============================================================================
(empty)
Added: packages/pylirc/trunk/debian/pycompat
URL: http://svn.debian.org/wsvn/python-modules/packages/pylirc/trunk/debian/pycompat?rev=2123&op=file
==============================================================================
(empty)
Added: packages/pylirc/trunk/debian/rules
URL: http://svn.debian.org/wsvn/python-modules/packages/pylirc/trunk/debian/rules?rev=2123&op=file
==============================================================================
--- packages/pylirc/trunk/debian/rules (added)
+++ packages/pylirc/trunk/debian/rules Wed Apr 18 20:53:22 2007
@@ -1,0 +1,27 @@
+#!/usr/bin/make -f
+
+DEB_PYTHON_SYSTEM=pycentral
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/python-distutils.mk
+## include /usr/share/cdbs/1/rules/simple-patchsys.mk
+
+DEB_INSTALL_DOCS_ALL =
+
+install/python-lirc::
+ : # Replace all '#!' calls to python with /usr/bin/python
+ : # and make them executable
+ for i in `find debian/python-lirc -type f`; do \
+ sed '1s,#!.*python[^ ]*\(.*\),#! /usr/bin/python\1,' \
+ $$i > $$i.temp; \
+ if cmp --quiet $$i $$i.temp; then \
+ rm -f $$i.temp; \
+ else \
+ mv -f $$i.temp $$i; \
+ chmod 755 $$i; \
+ echo "fixed interpreter: $$i"; \
+ fi; \
+ done
+
+clean::
+ rm -f version.pyc
More information about the Python-modules-commits
mailing list