mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

52 lines
2.4 KiB

  1. # --- ROCK-COPYRIGHT-NOTE-BEGIN ---
  2. #
  3. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  4. # Please add additional copyright information _after_ the line containing
  5. # the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
  6. # the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
  7. #
  8. # ROCK Linux: rock-src/package/jsaw/numpy/setup-rollback-23.1.patch
  9. # ROCK Linux is Copyright (C) 1998 - 2005 Clifford Wolf
  10. #
  11. # This patch file is dual-licensed. It is available under the license the
  12. # patched project is licensed under, as long as it is an OpenSource license
  13. # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
  14. # of the GNU General Public License as published by the Free Software
  15. # Foundation; either version 2 of the License, or (at your option) any later
  16. # version.
  17. #
  18. # --- ROCK-COPYRIGHT-NOTE-END ---
  19. --- Numeric-23.3/setup.py 2004-06-07 23:52:01.000000000 +0200
  20. +++ Numeric-23.1/setup.py 2003-04-14 20:01:17.000000000 +0200
  21. @@ -33,21 +33,20 @@
  22. # delete all but the first one in this list if using your own LAPACK/BLAS
  23. sourcelist = [os.path.join('Src', 'lapack_litemodule.c'),
  24. -# os.path.join('Src', 'blas_lite.c'),
  25. -# os.path.join('Src', 'f2c_lite.c'),
  26. -# os.path.join('Src', 'zlapack_lite.c'),
  27. -# os.path.join('Src', 'dlapack_lite.c')
  28. + os.path.join('Src', 'blas_lite.c'),
  29. + os.path.join('Src', 'f2c_lite.c'),
  30. + os.path.join('Src', 'zlapack_lite.c'),
  31. + os.path.join('Src', 'dlapack_lite.c')
  32. ]
  33. # set these to use your own BLAS;
  34. -library_dirs_list = ['/usr/lib/atlas']
  35. -libraries_list = ['lapack', 'cblas', 'f77blas', 'atlas', 'g2c']
  36. - # if you also set `use_dotblas` (see below), you'll need:
  37. - # ['lapack', 'cblas', 'f77blas', 'atlas', 'g2c']
  38. +library_dirs_list = []
  39. +libraries_list = [] # if you also set `use_dotblas` (see below), you'll need:
  40. + # ['lapack', 'cblas', 'f77blas', 'atlas', 'g2c']
  41. # set to true (1), if you also want BLAS optimized matrixmultiply/dot/innerproduct
  42. -use_dotblas = 1
  43. -include_dirs = ['/usr/include/atlas'] # You may need to set this to find cblas.h
  44. +use_dotblas = 0
  45. +include_dirs = [] # You may need to set this to find cblas.h
  46. # e.g. on UNIX using ATLAS this should be ['/usr/include/atlas']
  47. # The packages are split in this way to allow future optional inclusion