[Python-modules-commits] r18210 - in packages/pymodbus/trunk/debian (8 files)

debacle at users.alioth.debian.org debacle at users.alioth.debian.org
Fri Aug 19 20:56:23 UTC 2011


    Date: Friday, August 19, 2011 @ 20:56:22
  Author: debacle
Revision: 18210

Upload version 0.9.0-1.

Added:
  packages/pymodbus/trunk/debian/pydist-overrides
Modified:
  packages/pymodbus/trunk/debian/changelog
  packages/pymodbus/trunk/debian/control
  packages/pymodbus/trunk/debian/copyright
  packages/pymodbus/trunk/debian/patches/100_exclude_test.patch
  packages/pymodbus/trunk/debian/patches/101_pyserial_version.patch
  packages/pymodbus/trunk/debian/python-pymodbus.docs
  packages/pymodbus/trunk/debian/rules

Modified: packages/pymodbus/trunk/debian/changelog
===================================================================
--- packages/pymodbus/trunk/debian/changelog	2011-08-19 06:41:24 UTC (rev 18209)
+++ packages/pymodbus/trunk/debian/changelog	2011-08-19 20:56:22 UTC (rev 18210)
@@ -1,3 +1,14 @@
+pymodbus (0.9.0-1) unstable; urgency=low
+
+  * Initial release (Closes: #578120)
+    (Really, previous version never has been uploaded.)
+  * New upstream version.
+    Examples and docs are not included by upstream anymore.
+  * Moved to dh_python2.
+  * Twisted and Serial recommended only.
+
+ -- W. Martin Borgert <debacle at debian.org>  Wed, 17 Aug 2011 09:34:29 +0000
+
 pymodbus (0.5.1-1) unstable; urgency=low
 
   * Initial release (Closes: #578120)

Modified: packages/pymodbus/trunk/debian/control
===================================================================
--- packages/pymodbus/trunk/debian/control	2011-08-19 06:41:24 UTC (rev 18209)
+++ packages/pymodbus/trunk/debian/control	2011-08-19 20:56:22 UTC (rev 18210)
@@ -1,25 +1,23 @@
 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,
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: W. Martin Borgert <debacle at debian.org>, Maximiliano Curia <maxy at debian.org>
+Build-Depends: debhelper (>= 7), python-all (>= 2.6.6-3~),
                python-setuptools, python-twisted-core
-Standards-Version: 3.8.4
-XS-Python-Version: all
+Standards-Version: 3.9.2
 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
+Depends: python (>= 2.6.6-7~), python (<< 2.8)
+Recommends: python-twisted-core, 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 :
+ Pymodbus is a full Modbus protocol implementation.
+ It is currently supports the following :
  .
  Client Features: 
   * Can perform single get/set on discrete and registers
@@ -33,3 +31,6 @@
   * Working on serial communication
   * Working on functioning as a RTU
   * Can mimic a server based on the supplied input data 
+ .
+ For asynchronous communication, you need python-twisted-core.
+ For serial communication, you need python-serial.

Modified: packages/pymodbus/trunk/debian/copyright
===================================================================
--- packages/pymodbus/trunk/debian/copyright	2011-08-19 06:41:24 UTC (rev 18209)
+++ packages/pymodbus/trunk/debian/copyright	2011-08-19 20:56:22 UTC (rev 18210)
@@ -6,7 +6,7 @@
 
     http://code.google.com/p/pymodbus/
 
-Upstream Author(s):
+Upstream Author:
 
     Galen Collins <bashwork at gmail.com> 
 

Modified: packages/pymodbus/trunk/debian/patches/100_exclude_test.patch
===================================================================
--- packages/pymodbus/trunk/debian/patches/100_exclude_test.patch	2011-08-19 06:41:24 UTC (rev 18209)
+++ packages/pymodbus/trunk/debian/patches/100_exclude_test.patch	2011-08-19 20:56:22 UTC (rev 18210)
@@ -2,13 +2,14 @@
 ===================================================================
 --- 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 @@
+@@ -82,14 +82,13 @@
      maintainer_email = 'bashwork at gmail.com',
      url='http://code.google.com/p/pymodbus/',
-     license = 'LGPL',
+     license = 'BSD',
 -    packages = find_packages(exclude=['ez_setup', 'examples', 'tests', 'doc']),
 +    packages = find_packages(exclude=['ez_setup', 'examples', 'test', 'doc']),
      platforms = ["Linux","Mac OS X","Win"],
+     #package_data = {'doc':[
      include_package_data = True,
      zip_safe = True,
      install_requires = [
@@ -17,13 +18,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

Modified: packages/pymodbus/trunk/debian/patches/101_pyserial_version.patch
===================================================================
--- packages/pymodbus/trunk/debian/patches/101_pyserial_version.patch	2011-08-19 06:41:24 UTC (rev 18209)
+++ packages/pymodbus/trunk/debian/patches/101_pyserial_version.patch	2011-08-19 20:56:22 UTC (rev 18210)
@@ -1,11 +1,3 @@
-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

Added: packages/pymodbus/trunk/debian/pydist-overrides
===================================================================
--- packages/pymodbus/trunk/debian/pydist-overrides	                        (rev 0)
+++ packages/pymodbus/trunk/debian/pydist-overrides	2011-08-19 20:56:22 UTC (rev 18210)
@@ -0,0 +1 @@
+twisted python-twisted-core

Modified: packages/pymodbus/trunk/debian/python-pymodbus.docs
===================================================================
--- packages/pymodbus/trunk/debian/python-pymodbus.docs	2011-08-19 06:41:24 UTC (rev 18209)
+++ packages/pymodbus/trunk/debian/python-pymodbus.docs	2011-08-19 20:56:22 UTC (rev 18210)
@@ -1,5 +1 @@
-examples
 test
-doc/README
-doc/TODO
-doc/sphinx

Modified: packages/pymodbus/trunk/debian/rules
===================================================================
--- packages/pymodbus/trunk/debian/rules	2011-08-19 06:41:24 UTC (rev 18209)
+++ packages/pymodbus/trunk/debian/rules	2011-08-19 20:56:22 UTC (rev 18210)
@@ -2,8 +2,7 @@
 # -*- makefile -*-
 
 # Uncomment this to turn on verbose mode.
-export DH_VERBOSE=1
+#export DH_VERBOSE=1
 
 %:
-	dh  $@
-
+	dh  $@ --with python2




More information about the Python-modules-commits mailing list