~ubuntu-branches/ubuntu/vivid/pymodbus/vivid

« back to all changes in this revision

Viewing changes to debian/patches/100_exclude_test.patch

  • Committer: Package Import Robot
  • Author(s): W. Martin Borgert
  • Date: 2011-10-26 07:26:28 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20111026072628-fvzyi6tnb8iipomp
Tags: 0.9.0+r175-1
* Update from trunk to get a number of upstream fixes.
* Removed examples/tools/ (not present in previous version
  anyway) from source because there are different licenses
  involved. Needs clarification.
* Dont't install unit tests.
* Debian patches not necessary anymore.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
Index: pymodbus-0.5.1/setup.py
2
 
===================================================================
3
 
--- pymodbus-0.5.1.orig/setup.py        2010-04-20 12:24:32.000000000 -0300
4
 
+++ pymodbus-0.5.1/setup.py     2010-04-20 14:42:52.000000000 -0300
5
 
@@ -82,14 +82,13 @@
6
 
     maintainer_email = 'bashwork@gmail.com',
7
 
     url='http://code.google.com/p/pymodbus/',
8
 
     license = 'BSD',
9
 
-    packages = find_packages(exclude=['ez_setup', 'examples', 'tests', 'doc']),
10
 
+    packages = find_packages(exclude=['ez_setup', 'examples', 'test', 'doc']),
11
 
     platforms = ["Linux","Mac OS X","Win"],
12
 
     #package_data = {'doc':[
13
 
     include_package_data = True,
14
 
     zip_safe = True,
15
 
     install_requires = [
16
 
         'twisted >= 2.5.0',
17
 
-        'nose >= 0.9.3',
18
 
         'pyserial >= 2.4'
19
 
     ],
20
 
     test_suite = 'nose.collector',