-* Disable rpath setting during build
- Cython is producing -R flags to set rpath (see it by grepping the build log).
- This should be stopped and checked to make sure that tests still pass.
-
* Fix tests requiring network access
All tests should be passing now.
The ones that fail are failing because of network access issues.
- ext.extra_link_args += ['-Wl,-rpath,$ORIGIN']
build_ext.build_extension(self, ext)
+--- python-pysam.orig/setup.py
++++ python-pysam/setup.py
+@@ -348,7 +348,6 @@
+ shared_htslib_sources +
+ os_c_files,
+ library_dirs=htslib_library_dirs,
+- runtime_library_dirs=htslib_library_dirs,
+ include_dirs=["pysam", "."] + include_os + htslib_include_dirs,
+ libraries=external_htslib_libraries,
+ language="c",