[Python-modules-commits] r6877 - in packages/python-pyevent/trunk (9 files)
luciano at users.alioth.debian.org
luciano at users.alioth.debian.org
Tue Nov 11 18:33:53 UTC 2008
Date: Tuesday, November 11, 2008 @ 18:33:53
Author: luciano
Revision: 6877
[svn-inject] Applying Debian modifications to trunk
Added:
packages/python-pyevent/trunk/debian/
packages/python-pyevent/trunk/debian/README.Debian
packages/python-pyevent/trunk/debian/changelog
packages/python-pyevent/trunk/debian/compat
packages/python-pyevent/trunk/debian/control
packages/python-pyevent/trunk/debian/copyright
packages/python-pyevent/trunk/debian/dirs
packages/python-pyevent/trunk/debian/docs
packages/python-pyevent/trunk/debian/rules
Property changes on: packages/python-pyevent/trunk/debian
___________________________________________________________________
Name: mergeWithUpstream
+ 1
Added: packages/python-pyevent/trunk/debian/README.Debian
===================================================================
--- packages/python-pyevent/trunk/debian/README.Debian (rev 0)
+++ packages/python-pyevent/trunk/debian/README.Debian 2008-11-11 18:33:53 UTC (rev 6877)
@@ -0,0 +1,6 @@
+python-pyevent for Debian
+-------------------------
+
+<possible notes regarding this package - if none, delete this file>
+
+ -- Luciano Bello <luciano at debian.org> Thu, 06 Nov 2008 18:56:03 -0200
Added: packages/python-pyevent/trunk/debian/changelog
===================================================================
--- packages/python-pyevent/trunk/debian/changelog (rev 0)
+++ packages/python-pyevent/trunk/debian/changelog 2008-11-11 18:33:53 UTC (rev 6877)
@@ -0,0 +1,5 @@
+python-pyevent (0.3.svn54-1) unstable; urgency=low
+
+ * Initial release (Closes: #504729)
+
+ -- Luciano Bello <luciano at debian.org> Thu, 06 Nov 2008 18:56:03 -0200
Added: packages/python-pyevent/trunk/debian/compat
===================================================================
--- packages/python-pyevent/trunk/debian/compat (rev 0)
+++ packages/python-pyevent/trunk/debian/compat 2008-11-11 18:33:53 UTC (rev 6877)
@@ -0,0 +1 @@
+7
Added: packages/python-pyevent/trunk/debian/control
===================================================================
--- packages/python-pyevent/trunk/debian/control (rev 0)
+++ packages/python-pyevent/trunk/debian/control 2008-11-11 18:33:53 UTC (rev 6877)
@@ -0,0 +1,19 @@
+Source: python-pyevent
+Section: python
+Priority: extra
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Luciano Bello <luciano at debian.org>
+Build-Depends: debhelper (>= 7), libevent-dev(>=1.4), python-all
+Standards-Version: 3.8.0
+Build-Depends-Indep: python-support (>= 0.6.4)
+Homepage: http://code.google.com/p/pyevent/
+XS-Python-Version: all
+
+Package: python-pyevent
+Architecture: any
+XB-Python-Version: ${python:Versions}
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: Python extension module for Niels Provos' libevent
+ Python extension module for libevent, from http://monkey.org/~provos/libevent/.
+ Please, read more information about libevent in the libevent package.
+
Added: packages/python-pyevent/trunk/debian/copyright
===================================================================
--- packages/python-pyevent/trunk/debian/copyright (rev 0)
+++ packages/python-pyevent/trunk/debian/copyright 2008-11-11 18:33:53 UTC (rev 6877)
@@ -0,0 +1,37 @@
+This package was debianized by Luciano Bello <luciano at debian.org> on
+Thu, 06 Nov 2008 18:56:03 -0200.
+
+It was downloaded from http://code.google.com/p/pyevent/
+
+Upstream Author:
+
+ Dug Song <dugsong at monkey.org>
+
+Copyright:
+
+ Copyright (c) 2004 Dug Song <dugsong at monkey.org>
+ Copyright (c) 2003 Martin Murray <murrayma at citi.umich.edu>
+
+License:
+
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted under the terms of the BSD License.
+
+ THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+ OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ SUCH DAMAGE.
+
+On Debian systems, the complete text of the BSD License can be
+found in `/usr/share/common-licenses/BSD'.
+
+
+The Debian packaging is copyright 2008, Luciano Bello <luciano at debian.org> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
Added: packages/python-pyevent/trunk/debian/dirs
===================================================================
--- packages/python-pyevent/trunk/debian/dirs (rev 0)
+++ packages/python-pyevent/trunk/debian/dirs 2008-11-11 18:33:53 UTC (rev 6877)
@@ -0,0 +1,2 @@
+usr/bin
+usr/sbin
Added: packages/python-pyevent/trunk/debian/docs
===================================================================
--- packages/python-pyevent/trunk/debian/docs (rev 0)
+++ packages/python-pyevent/trunk/debian/docs 2008-11-11 18:33:53 UTC (rev 6877)
@@ -0,0 +1 @@
+README
Added: packages/python-pyevent/trunk/debian/rules
===================================================================
--- packages/python-pyevent/trunk/debian/rules (rev 0)
+++ packages/python-pyevent/trunk/debian/rules 2008-11-11 18:33:53 UTC (rev 6877)
@@ -0,0 +1,50 @@
+#!/usr/bin/make -f
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+PYVERS=$(shell pyversions -r)
+
+build:
+
+clean:
+ dh_testdir
+
+ # Add here commands to clean up after the build process.
+ for python in $(PYVERS); do \
+ $$python setup.py clean; \
+ done
+
+ rm -f build-stamp
+ rm -f *.pyc *.pyo
+
+ dh_clean
+
+install: build
+ dh_testdir
+ dh_testroot
+ dh_installdirs
+
+ for python in $(PYVERS); do \
+ $$python setup.py install --root=debian/python-pyevent; \
+ done
+
+# Build architecture-dependent files here.
+binary-arch:
+# We have nothing to do by default.
+
+# Build architecture-independent files here.
+binary-indep: build install
+ dh_testdir
+ dh_testroot
+ dh_installchangelogs
+ dh_installdocs README
+ dh_pysupport
+ dh_compress
+ dh_fixperms
+ dh_installdeb
+ dh_gencontrol
+ dh_md5sums
+ dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install
Property changes on: packages/python-pyevent/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
+ *
More information about the Python-modules-commits
mailing list