1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
Description: <short summary of the patch>
TODO: Put a short summary on the line above and replace this paragraph
with a longer explanation of this change. Complete the meta-information
with other relevant fields (see below for details). To make it easier, the
information below has been extracted from the changelog. Adjust it or drop
it.
.
spherepack (3.2-6) UNRELEASED; urgency=low
.
* Fortran ABI change: Now build with --default-real-8; d* versions of methods
are also provided as required by NCL (our first real use of spherepack).
* Add python3-sphere package.
Author: Alastair McKinstry <mckinstry@debian.org>
---
The information above should follow the Patch Tagging Guidelines, please
checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
are templates for supplementary fields that you might want to add:
Origin: <vendor|upstream|other>, <url of original patch>
Bug: <url in upstream bugtracker>
Bug-Debian: http://bugs.debian.org/<bugnumber>
Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
Forwarded: <no|not-needed|url proving that it has been forwarded>
Reviewed-By: <name and email of someone who approved the patch>
Last-Update: <YYYY-MM-DD>
Index: spherepack-3.2/setup.py
===================================================================
--- spherepack-3.2.orig/setup.py 2013-07-03 15:37:09.000000000 +0100
+++ spherepack-3.2/setup.py 2013-07-03 15:37:09.000000000 +0100
@@ -16,6 +16,8 @@
extra_link_args = ['-bundle','-bundle_loader '+sys.prefix+'/bin/python']
ext1 = Extension(name = 'spherepack',
extra_link_args=extra_link_args,
+ extra_f77_compile_args = ["-ffixed-line-length-0", "-fdefault-real-8"],
+ extra_f90_compile_args = ["-fdefault-real-8"],
libraries = ['sphere'],
library_dirs = [ os.path.join( os.getcwd() + '/Src')],
sources = ['Src/spherepack.pyf',])
|