[Python-modules-commits] r12677 - in packages/pymodbus/trunk (14 files)
maxy at users.alioth.debian.org
maxy at users.alioth.debian.org
Tue Apr 20 19:17:46 UTC 2010
Date: Tuesday, April 20, 2010 @ 19:17:43
Author: maxy
Revision: 12677
Uploading pymodbus module
Added:
packages/pymodbus/trunk/debian/
packages/pymodbus/trunk/debian/changelog
packages/pymodbus/trunk/debian/compat
packages/pymodbus/trunk/debian/control
packages/pymodbus/trunk/debian/copyright
packages/pymodbus/trunk/debian/patches/
packages/pymodbus/trunk/debian/patches/100_exclude_test.patch
packages/pymodbus/trunk/debian/patches/101_pyserial_version.patch
packages/pymodbus/trunk/debian/patches/series
packages/pymodbus/trunk/debian/python-pymodbus.docs
packages/pymodbus/trunk/debian/rules
packages/pymodbus/trunk/debian/source/
packages/pymodbus/trunk/debian/source/format
packages/pymodbus/trunk/debian/watch
Property changes on: packages/pymodbus/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
+ 1
Added: packages/pymodbus/trunk/debian/changelog
===================================================================
--- packages/pymodbus/trunk/debian/changelog (rev 0)
+++ packages/pymodbus/trunk/debian/changelog 2010-04-20 19:17:43 UTC (rev 12677)
@@ -0,0 +1,5 @@
+pymodbus (0.5.1-1) unstable; urgency=low
+
+ * Initial release (Closes: #578120)
+
+ -- Maximiliano Curia <maxy at debian.org> Fri, 16 Apr 2010 13:15:39 -0300
Added: packages/pymodbus/trunk/debian/compat
===================================================================
--- packages/pymodbus/trunk/debian/compat (rev 0)
+++ packages/pymodbus/trunk/debian/compat 2010-04-20 19:17:43 UTC (rev 12677)
@@ -0,0 +1 @@
+7
Added: packages/pymodbus/trunk/debian/control
===================================================================
--- packages/pymodbus/trunk/debian/control (rev 0)
+++ packages/pymodbus/trunk/debian/control 2010-04-20 19:17:43 UTC (rev 12677)
@@ -0,0 +1,35 @@
+Source: pymodbus
+Section: python
+Priority: optional
+Maintainer: Maximiliano Curia <maxy at debian.org>
+Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Build-Depends: debhelper (>= 7), python-support, python-all,
+ python-setuptools, python-twisted-core
+Standards-Version: 3.8.4
+XS-Python-Version: all
+Vcs-Svn: svn://svn.debian.org/python-modules/packages/pymodbus/trunk/
+Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/pymodbus/trunk/
+Homepage: http://code.google.com/p/pymodbus
+
+Package: python-pymodbus
+Architecture: all
+XB-Python-Version: ${python:Versions}
+Depends: ${misc:Depends}, ${python:Depends}, python-twisted-core,
+ python-zope.interface, python-serial
+Provides: ${python:Provides}
+Description: full Modbus protocol implementation
+ Pymodbus is a full Modbus protocol implementation using twisted for its
+ communications core. It is currently supports the following :
+ .
+ Client Features:
+ * Can perform single get/set on discrete and registers
+ * Can perform multiple get/set on discrete and registers
+ * Working on diagnostic/file/pipe/setting/info requests
+ * Can fully scrape a host to be cloned
+ .
+ Server Features:
+ * Can function as a fully implemented TCP/ASCII modbus server
+ * Full server control context
+ * Working on serial communication
+ * Working on functioning as a RTU
+ * Can mimic a server based on the supplied input data
Added: packages/pymodbus/trunk/debian/copyright
===================================================================
--- packages/pymodbus/trunk/debian/copyright (rev 0)
+++ packages/pymodbus/trunk/debian/copyright 2010-04-20 19:17:43 UTC (rev 12677)
@@ -0,0 +1,43 @@
+This work was packaged for Debian by:
+
+ Maximiliano Curia <maxy at debian.org> on Fri, 16 Apr 2010 13:15:39 -0300
+
+It was downloaded from:
+
+ http://code.google.com/p/pymodbus/
+
+Upstream Author(s):
+
+ Galen Collins <bashwork at gmail.com>
+
+Copyright:
+
+ Copyright (c) 2008 Galen Collins
+
+License:
+
+ The MIT License
+
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the "Software"), to deal
+ in the Software without restriction, including without limitation the rights
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+
+ The above copyright notice and this permission notice shall be included in
+ all copies or substantial portions of the Software.
+
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ THE SOFTWARE.
+
+The Debian packaging is:
+
+ Copyright (C) 2010 Maximiliano Curia <maxy at debian.org>
+
+and is also licensed under the MIT License.
Added: packages/pymodbus/trunk/debian/patches/100_exclude_test.patch
===================================================================
--- packages/pymodbus/trunk/debian/patches/100_exclude_test.patch (rev 0)
+++ packages/pymodbus/trunk/debian/patches/100_exclude_test.patch 2010-04-20 19:17:43 UTC (rev 12677)
@@ -0,0 +1,29 @@
+Index: pymodbus-0.5.1/setup.py
+===================================================================
+--- pymodbus-0.5.1.orig/setup.py 2010-04-20 12:24:32.000000000 -0300
++++ pymodbus-0.5.1/setup.py 2010-04-20 14:42:52.000000000 -0300
+@@ -82,13 +82,12 @@
+ maintainer_email = 'bashwork at gmail.com',
+ url='http://code.google.com/p/pymodbus/',
+ license = 'LGPL',
+- packages = find_packages(exclude=['ez_setup', 'examples', 'tests', 'doc']),
++ packages = find_packages(exclude=['ez_setup', 'examples', 'test', 'doc']),
+ platforms = ["Linux","Mac OS X","Win"],
+ include_package_data = True,
+ zip_safe = True,
+ install_requires = [
+ 'twisted >= 2.5.0',
+- 'nose >= 0.9.3',
+ 'pyserial >= 2.4'
+ ],
+ test_suite = 'nose.collector',
+Index: pymodbus-0.5.1/pymodbus.egg-info/requires.txt
+===================================================================
+--- pymodbus-0.5.1.orig/pymodbus.egg-info/requires.txt 2010-04-20 12:24:32.000000000 -0300
++++ pymodbus-0.5.1/pymodbus.egg-info/requires.txt 2010-04-20 14:42:39.000000000 -0300
+@@ -1,3 +1,2 @@
+ twisted >= 2.5.0
+-nose >= 0.9.3
+-pyserial >= 2.4
+\ No newline at end of file
++pyserial >= 2.4
Added: packages/pymodbus/trunk/debian/patches/101_pyserial_version.patch
===================================================================
--- packages/pymodbus/trunk/debian/patches/101_pyserial_version.patch (rev 0)
+++ packages/pymodbus/trunk/debian/patches/101_pyserial_version.patch 2010-04-20 19:17:43 UTC (rev 12677)
@@ -0,0 +1,21 @@
+Index: pymodbus-0.5.1/pymodbus.egg-info/requires.txt
+===================================================================
+--- pymodbus-0.5.1.orig/pymodbus.egg-info/requires.txt 2010-04-20 14:51:02.000000000 -0300
++++ pymodbus-0.5.1/pymodbus.egg-info/requires.txt 2010-04-20 14:51:04.000000000 -0300
+@@ -1,2 +1,2 @@
+ twisted >= 2.5.0
+-pyserial >= 2.4
++pyserial >= 2.3
+Index: pymodbus-0.5.1/setup.py
+===================================================================
+--- pymodbus-0.5.1.orig/setup.py 2010-04-20 14:51:02.000000000 -0300
++++ pymodbus-0.5.1/setup.py 2010-04-20 14:51:04.000000000 -0300
+@@ -88,7 +88,7 @@
+ zip_safe = True,
+ install_requires = [
+ 'twisted >= 2.5.0',
+- 'pyserial >= 2.4'
++ 'pyserial >= 2.3'
+ ],
+ test_suite = 'nose.collector',
+ cmdclass = command_classes,
Added: packages/pymodbus/trunk/debian/patches/series
===================================================================
--- packages/pymodbus/trunk/debian/patches/series (rev 0)
+++ packages/pymodbus/trunk/debian/patches/series 2010-04-20 19:17:43 UTC (rev 12677)
@@ -0,0 +1,2 @@
+100_exclude_test.patch
+101_pyserial_version.patch
Added: packages/pymodbus/trunk/debian/python-pymodbus.docs
===================================================================
--- packages/pymodbus/trunk/debian/python-pymodbus.docs (rev 0)
+++ packages/pymodbus/trunk/debian/python-pymodbus.docs 2010-04-20 19:17:43 UTC (rev 12677)
@@ -0,0 +1,5 @@
+examples
+test
+doc/README
+doc/TODO
+doc/sphinx
Added: packages/pymodbus/trunk/debian/rules
===================================================================
--- packages/pymodbus/trunk/debian/rules (rev 0)
+++ packages/pymodbus/trunk/debian/rules 2010-04-20 19:17:43 UTC (rev 12677)
@@ -0,0 +1,9 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+
+# Uncomment this to turn on verbose mode.
+export DH_VERBOSE=1
+
+%:
+ dh $@
+
Property changes on: packages/pymodbus/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
+ *
Added: packages/pymodbus/trunk/debian/source/format
===================================================================
--- packages/pymodbus/trunk/debian/source/format (rev 0)
+++ packages/pymodbus/trunk/debian/source/format 2010-04-20 19:17:43 UTC (rev 12677)
@@ -0,0 +1 @@
+3.0 (quilt)
Added: packages/pymodbus/trunk/debian/watch
===================================================================
--- packages/pymodbus/trunk/debian/watch (rev 0)
+++ packages/pymodbus/trunk/debian/watch 2010-04-20 19:17:43 UTC (rev 12677)
@@ -0,0 +1,3 @@
+version=3
+http://code.google.com/p/pymodbus/downloads/list \
+ http://pymodbus.googlecode.com/files/pymodbus-([\d\.]+)\.tar\.gz
More information about the Python-modules-commits
mailing list