Import of pkgsrc-2014Q1

This commit is contained in:
2014-11-05 12:41:07 +01:00
parent 785076ae39
commit 9a8c06dafb
19365 changed files with 828089 additions and 278039 deletions
-13
View File
@@ -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'],
-15
View File
@@ -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()