summaryrefslogtreecommitdiff
path: root/numpy/distutils/misc_util.py
Commit message (Collapse)AuthorAgeFilesLines
...
* Support for installable libraries in numscons.David Cournapeau2009-07-261-0/+4
| | | | | | | | Numscons has been modified such as clib are now copied (using the Install builder) where numpy.distutils expect them, and a function has been added to numpy.distutils so that we can add installable libraries in setupscons.py scripts (which add the library to the NumpyDistribution instance).
* Refactor common code between add_library and add_installed_library.David Cournapeau2009-07-261-18/+12
|
* Remove dead code.David Cournapeau2009-07-261-4/+1
|
* Add get_npymath_info function to reuse npymath outside numpy.David Cournapeau2009-07-261-0/+16
|
* Installing a clib now works.David Cournapeau2009-07-261-5/+29
| | | | | | | | Installable libraries are built exactly like conventional clib (they are added to the NumpyDistribution instance libraries member, and build_clib is not aware of the libraries/installable libraries distinction). Everything is done in the install_clib. The library cannot be used yet by external code, though.
* Add a new function to add installed library - do nothing for now.David Cournapeau2009-07-261-0/+8
|
* BUG#1134: Fix handling of depends arg when not given in add_library.David Cournapeau2009-06-091-0/+5
|
* Move is_bootstrapping outside scons command, may be useful elsewhere.David Cournapeau2009-04-211-0/+9
|
* Remove tabs and unnecessary whitespace.Stefan van der Walt2009-04-161-2/+2
|
* Add a function to get MSVC version.David Cournapeau2009-03-111-0/+8
|
* Python 3000 fixes for 2to3 [patch by James Watson].Stefan van der Walt2009-03-021-3/+5
|
* Do not use popen* but subprocess.Popen instead.David Cournapeau2009-01-041-1/+5
|
* ran reindentJarrod Millman2008-08-081-1/+1
|
* Change API for pre/post hooks: they should be able to take arbitrary arguments.David Cournapeau2008-07-311-1/+2
|
* Remove add_configres function which did nothing...David Cournapeau2008-07-311-5/+0
|
* Make it possible to execute post/pre hooks in scons command even when no ↵David Cournapeau2008-07-311-1/+4
| | | | scons script is used.
* Handle VS 2008 in msvc_runtime_library.David Cournapeau2008-07-291-0/+1
|
* Generate headers in the right place for inplace builds.Robert Kern2008-07-191-3/+14
|
* Use the default terminal colour to print out INFO messages in distutils. Stefan van der Walt2008-04-161-1/+3
| | | | This prevents visibility problems on backgrounds other than black.
* ran reindentJarrod Millman2008-02-081-5/+5
|
* Use eval instead of dynamic import in scons_generate_config_py, so that we doDavid Cournapeau2008-01-231-4/+2
| | | | | not generate spurious *.pyc files.
* Fix missing import from numsconsDavid Cournapeau2008-01-071-0/+1
|
* Import get_configres* functions from numsconsDavid Cournapeau2008-01-061-0/+1
|
* Add function add_configres for numpy.distutils.ConfigurationDavid Cournapeau2008-01-061-0/+4
|
* Add scons_make_config function to numpy distutils Configuration.David Cournapeau2008-01-061-0/+6
|
* Add facilities to generate config file for future sconsified modules.David Cournapeau2008-01-061-0/+45
|
* add an option to change setup filenames to numpy.distutils.ConfigurationDavid Cournapeau2008-01-061-1/+4
|
* Add the infrastructure to add SConstruct files inDavid Cournapeau2008-01-061-1/+45
| | | | | numpy.distutils.Configuration.
* Get MATHLIB from numpyconfig.h, not from config.h anymoreDavid Cournapeau2007-12-221-2/+2
|
* use 'in' keyword to test dictionary membershipJarrod Millman2007-11-281-7/+7
|
* Fix get_mathlib when path argument is NoneDavid Cournapeau2007-11-131-1/+1
|
* ran reindent.py to clean up whitespaceJarrod Millman2007-10-291-1/+1
|
* using faster string methods rather than deprecated string moduleJarrod Millman2007-10-291-3/+2
|
* fixing link error: wrong gen_lib_options is being used, may be it is a ↵Pearu Peterson2007-09-231-1/+3
| | | | import problem.
* fix missing string importPearu Peterson2007-09-231-1/+1
|
* backport the usage of get_build_architecture to pyhton <=2.4Pearu Peterson2007-09-221-5/+18
|
* Fix problem with msvc_on_amd64 not working prior to Python 2.5Travis Oliphant2007-09-201-1/+4
|
* remove debug messages.Pearu Peterson2007-07-281-4/+2
|
* msvc_on_amd64 must be applied *after* importing ccompiler module, apply ↵Pearu Peterson2007-07-271-2/+0
| | | | quote_args also to include_dirs.
* Added debug messages to see if quote_args are applied properly.Pearu Peterson2007-07-271-1/+4
|
* Fix type error on setting os.environ item.Pearu Peterson2007-07-271-1/+1
|
* Try to fix build on AMD64 with MSVC compiler.Pearu Peterson2007-07-271-0/+14
|
* Using own quote_args, trying to fix build failures with MSVC compiler.Pearu Peterson2007-07-271-1/+12
|
* Resolved issues in changeset 3846.Pearu Peterson2007-05-311-1/+2
|
* Undo change in 3845.Pearu Peterson2007-05-311-1/+1
|
* Fix some problems with data-files not being added in top-level and extra ↵Travis Oliphant2007-05-311-1/+1
| | | | version information added to the name of development distributions.
* Better temporary file handling by using one temporary directory forcookedm2007-05-281-61/+79
| | | | numpy.distutils, and removing that at exit. Replaces using tempfile.mktemp.
* Add a numpy.distutils.log.good function, which when WARN messages would becookedm2007-05-251-11/+30
| | | | | logged, logs a "nice" anti-warn version. Use this for finding executables to report when we do actually find one.
* merge from distutils-revamp branch (step 1)cookedm2007-05-251-12/+4
|\ | | | | | | | | | | - minor cleanups - find_executable returns None when no file found (instead of having to check with os.path.isfile)
| * Branch numpy.distutils to distutils-revampcookedm2006-07-061-1409/+0
| |