Import of pkgsrc-2014Q1
This commit is contained in:
@@ -1,13 +0,0 @@
|
||||
$NetBSD: patch-aa,v 1.7 2010/07/16 12:18:00 drochner Exp $
|
||||
|
||||
--- setup.py.orig 2010-07-01 11:04:59.000000000 +0000
|
||||
+++ setup.py
|
||||
@@ -527,7 +527,7 @@ else:
|
||||
'tables.tests', 'tables.nodes.tests',
|
||||
'tables.netcdf3.tests', 'tables.nra.tests']
|
||||
setuptools_kwargs['scripts'] = [
|
||||
- 'utils/ptdump', 'utils/ptrepack', 'utils/nctoh5']
|
||||
+ 'utils/ptdump' + sys.version[0:3], 'utils/ptrepack' + sys.version[0:3], 'utils/nctoh5' + sys.version[0:3]]
|
||||
# Copy additional data for packages that need it.
|
||||
setuptools_kwargs['package_data'] = {
|
||||
'tables.tests': ['*.h5'],
|
||||
@@ -1,15 +0,0 @@
|
||||
$NetBSD: patch-ab,v 1.4 2013/05/14 09:57:58 fhajny Exp $
|
||||
|
||||
avoid use of a rendundant Python-2.6 builtin for compatibility
|
||||
|
||||
--- tables/tests/test_basics.py.orig 2010-11-05 09:27:14.000000000 +0000
|
||||
+++ tables/tests/test_basics.py
|
||||
@@ -2357,7 +2357,7 @@ def _worker(fn, qout = None):
|
||||
rows = fp.root.table.where('(f0 < 10)')
|
||||
if common.verbose:
|
||||
print "Got the iterator, about to iterate"
|
||||
- next(rows)
|
||||
+ row = rows.next()
|
||||
if common.verbose:
|
||||
print "Succeeded in one iteration\n"
|
||||
fp.close()
|
||||
Reference in New Issue
Block a user