summaryrefslogtreecommitdiff
path: root/dev-python/netcdf4-python
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2021-04-28 20:21:43 +0100
committerV3n3RiX <venerix@redcorelinux.org>2021-04-28 20:21:43 +0100
commit40aaaa64e86ba6710bbeb31c4615a6ce80e75e11 (patch)
tree758c221bad35c9288d0bd6df9c7dfc226728e52c /dev-python/netcdf4-python
parent8d5dbd847cbc704a6a06405856e94b461011afe3 (diff)
gentoo resync : 28.04.2021
Diffstat (limited to 'dev-python/netcdf4-python')
-rw-r--r--dev-python/netcdf4-python/Manifest1
-rw-r--r--dev-python/netcdf4-python/files/netcdf4-python-1.5.5-tests.patch33
2 files changed, 0 insertions, 34 deletions
diff --git a/dev-python/netcdf4-python/Manifest b/dev-python/netcdf4-python/Manifest
index 2407dd03ba4b..4407db492242 100644
--- a/dev-python/netcdf4-python/Manifest
+++ b/dev-python/netcdf4-python/Manifest
@@ -1,4 +1,3 @@
-AUX netcdf4-python-1.5.5-tests.patch 1309 BLAKE2B 04876bde9d60bfd48633366eb35d20dab843537673c04ff26fd979cb2de4b6cb36296c2f77b89b2227e7d103a2171827330b4dd0febcffa7aaba288b89becdff SHA512 c876c492c0d5004b1f4092ea580b11f2faf902ed5ce7bbbf16f591e76c12966c15c6616a272ee1e8026b0eba614eb2bdd4cdca495c60f7d7957228eedfae3fd1
DIST netCDF4-1.5.6.tar.gz 763732 BLAKE2B 0bb08ed81206c7d14817dad0f93683b5c44678869c760467071e2a0a76be76c9d78c0f714a043d77dba9b4535a83d59d8197340c105070a4f0204900b1e50410 SHA512 cc5bdb476fa034576f8e1a19e709dba53ad2db68cd10221df2de46a47fc7e5bacfc90fe8c4458ef45b20bf24a1cf52f275b1891af5574e2a139e95cb0d793a8b
EBUILD netcdf4-python-1.5.6.ebuild 1165 BLAKE2B 794f9296c48a0df0339aadfa5eeed5f096ff8fcb53afff5d29764fe3d198e32b6e9a3fba168c5962ddea8cc9481dab0066945385494a721c6fb143ebea751889 SHA512 a52abb9570d1ca7eeea14c4df741c9ca9184c19b85443aa3ebbadeb0aa4c9b4ae2fd5d92f23ed99aef361550b674b5be627dfdb25c6f282fe35e1daeca3eb558
MISC metadata.xml 680 BLAKE2B b380916f10fadde1beadde6b0f97dabdada2a183db75b345dc6bcc8723a24ce5b1d266048e758d02cc53bc0e92339fe359c86741212f9122a984825ebaf45e2c SHA512 5825d714a75190fef8b60360221425c5feed48220920b854f5f2e1a6489b4fa1952b7a798e42c4750b69c83902879ce263fd5b7d109ed9d43a147e6298a329bb
diff --git a/dev-python/netcdf4-python/files/netcdf4-python-1.5.5-tests.patch b/dev-python/netcdf4-python/files/netcdf4-python-1.5.5-tests.patch
deleted file mode 100644
index ff0085c7a1f6..000000000000
--- a/dev-python/netcdf4-python/files/netcdf4-python-1.5.5-tests.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-# tst_diskless.py fails and tst_dap.py requires network
---- a/test/run_all.py
-+++ b/test/run_all.py
-@@ -16,9 +16,6 @@ if python3:
- else:
- test_files.remove('tst_unicode3.py')
- sys.stdout.write('not running tst_unicode3.py ...\n')
--if __netcdf4libversion__ < '4.2.1' or __has_parallel4_support__ or __has_pnetcdf_support__:
-- test_files.remove('tst_diskless.py')
-- sys.stdout.write('not running tst_diskless.py ...\n')
- if not __has_nc_inq_path__:
- test_files.remove('tst_filepath.py')
- sys.stdout.write('not running tst_filepath.py ...\n')
-@@ -29,14 +26,11 @@ if not __has_cdf5_format__ or struct.calcsize("P") < 8:
- test_files.remove('tst_cdf5.py')
- sys.stdout.write('not running tst_cdf5.py ...\n')
-
--# Don't run tests that require network connectivity
--if os.getenv('NO_NET'):
-- test_files.remove('tst_dap.py');
-- sys.stdout.write('not running tst_dap.py ...\n')
--else:
-- # run opendap test first (issue #856).
-- test_files.remove('tst_dap.py')
-- test_files.insert(0,'tst_dap.py')
-+test_files.remove('tst_diskless.py')
-+sys.stdout.write('not running tst_diskless.py ...\n')
-+
-+test_files.remove('tst_dap.py');
-+sys.stdout.write('not running tst_dap.py ...\n')
-
- # Build the test suite from the tests found in the test files.
- testsuite = unittest.TestSuite()