[Python-modules-commits] [pydispatcher] 03/03: Initial packaging work

Neil Muller drnlmza-guest at moszumanska.debian.org
Thu Nov 5 10:30:54 UTC 2015


This is an automated email from the git hooks/post-receive script.

drnlmza-guest pushed a commit to branch master
in repository pydispatcher.

commit 5e08e66f55602e89a474f7bb5c282112c5f598f3
Author: Neil <Neil Muller drnlmuller+debian at gmail.com>
Date:   Thu Nov 5 12:27:47 2015 +0200

    Initial packaging work
---
 debian/changelog |  5 +++++
 debian/compat    |  1 +
 debian/control   | 44 ++++++++++++++++++++++++++++++++++++++++++++
 debian/copyright | 48 ++++++++++++++++++++++++++++++++++++++++++++++++
 debian/rules     |  6 ++++++
 debian/watch     |  2 ++
 6 files changed, 106 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..d3fa9b9
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+pydispatcher (2.0.5-1) UNRELEASED; urgency=low
+
+  * Initial release. (Closes: #800441)
+
+ -- Neil Muller <drnlmuller+debian at gmail.com>  Wed, 04 Nov 2015 15:04:33 +0200
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..12028cc
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,44 @@
+Source: pydispatcher
+Section: python
+Priority: optional
+Build-Depends: debhelper (>= 9),
+               dh-python,
+               python-all (>= 2.7.3-4),
+               python-setuptools,
+               python3-all,
+               python3-setuptools
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Neil Muller <drnlmuller+debian at gmail.com>
+Standards-Version: 3.9.6
+X-Python-Version: >= 2.6
+Vcs-Git: git://anonscm.debian.org/python-modules/packages/pydispatcher.git
+Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/sqlobject.git
+Homepage: http://pydispatcher.sourceforge.net/
+
+Package: python-pydispatcher
+Architecture: all
+Depends: ${misc:Depends},
+         ${python:Depends}
+Description: Python signal dispatching mechanism
+ PyDispatcher provides the Python programmer with a
+ multiple-producer-multiple-consumer signal-registration and routing
+ infrastructure for use in multiple contexts. The mechanism of PyDispatcher
+ started life as a highly rated recipe in the Python Cookbook. The project
+ aims to include various enhancements to the recipe developed during use in
+ various applications.
+ .
+ This is the Python 2 version of PyDispatcher.
+
+Package: python3-pydispatcher
+Architecture: all
+Depends: ${misc:Depends},
+         ${python3:Depends}
+Description: Python 3 signal dispatching mechanism
+ PyDispatcher provides the Python programmer with a
+ multiple-producer-multiple-consumer signal-registration and routing
+ infrastructure for use in multiple contexts. The mechanism of PyDispatcher
+ started life as a highly rated recipe in the Python Cookbook. The project
+ aims to include various enhancements to the recipe developed during use in
+ various applications.
+ .
+ This package contains the Python 3 version of PyDispatcher.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..853ffec
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,48 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: PyDispatcher
+Upstream-Contact: Mike C. Fletcher
+Source: http://pydispatcher.sourceforge.net/
+
+Files: *
+Copyright: 2001-2006 Patrick K. O'Brien
+           2006-2015 Mike C. Fletcher
+License: BSD-3-clause
+
+Files: debian/*
+Copyright: 2015 Neil Muller <drnlmuller+debian at gmail.com>
+License: BSD-3-clause
+
+License: BSD-3-clause
+	Copyright (c) 2001-2006, Patrick K. O'Brien and Contributors
+	All rights reserved.
+	.
+	Redistribution and use in source and binary forms, with or without
+	modification, are permitted provided that the following conditions
+	are met:
+	.
+		Redistributions of source code must retain the above copyright
+		notice, this list of conditions and the following disclaimer.
+	.
+		Redistributions in binary form must reproduce the above
+		copyright notice, this list of conditions and the following
+		disclaimer in the documentation and/or other materials
+		provided with the distribution.
+	.
+		The name of Patrick K. O'Brien, or the name of any Contributor,
+		may not be used to endorse or promote products derived from this 
+		software without specific prior written permission.
+	.
+	THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS 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
+	COPYRIGHT HOLDERS AND 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. 
+
+
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..9b3b8df
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,6 @@
+#!/usr/bin/make -f
+
+export PYBUILD_NAME=pydispatcher
+
+%:
+	dh $@ --with python2,python3 --buildsystem=pybuild
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..35c138e
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=3
+https://pypi.debian.net/PyDispatcher/PyDispatcher-([\d\.]*)\.tar\.gz

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/pydispatcher.git



More information about the Python-modules-commits mailing list