pkgsrc/devel/scons/PLIST

403 lines
12 KiB
Text
Raw Normal View History

@comment $NetBSD: PLIST,v 1.3 2004/08/24 20:39:14 recht Exp $
bin/scons
bin/sconsign
lib/scons/SCons/Action.py
lib/scons/SCons/Action.pyc
lib/scons/SCons/Action.pyo
lib/scons/SCons/Builder.py
lib/scons/SCons/Builder.pyc
lib/scons/SCons/Builder.pyo
lib/scons/SCons/Conftest.py
lib/scons/SCons/Conftest.pyc
lib/scons/SCons/Conftest.pyo
lib/scons/SCons/Debug.py
lib/scons/SCons/Debug.pyc
lib/scons/SCons/Debug.pyo
lib/scons/SCons/Defaults.py
lib/scons/SCons/Defaults.pyc
lib/scons/SCons/Defaults.pyo
lib/scons/SCons/Environment.py
lib/scons/SCons/Environment.pyc
lib/scons/SCons/Environment.pyo
lib/scons/SCons/Errors.py
lib/scons/SCons/Errors.pyc
lib/scons/SCons/Errors.pyo
lib/scons/SCons/Executor.py
lib/scons/SCons/Executor.pyc
lib/scons/SCons/Executor.pyo
lib/scons/SCons/Job.py
lib/scons/SCons/Job.pyc
lib/scons/SCons/Job.pyo
lib/scons/SCons/Node/Alias.py
lib/scons/SCons/Node/Alias.pyc
lib/scons/SCons/Node/Alias.pyo
lib/scons/SCons/Node/FS.py
lib/scons/SCons/Node/FS.pyc
lib/scons/SCons/Node/FS.pyo
lib/scons/SCons/Node/Python.py
lib/scons/SCons/Node/Python.pyc
lib/scons/SCons/Node/Python.pyo
lib/scons/SCons/Node/__init__.py
lib/scons/SCons/Node/__init__.pyc
lib/scons/SCons/Node/__init__.pyo
lib/scons/SCons/Optik/__init__.py
lib/scons/SCons/Optik/__init__.pyc
lib/scons/SCons/Optik/__init__.pyo
lib/scons/SCons/Optik/errors.py
lib/scons/SCons/Optik/errors.pyc
lib/scons/SCons/Optik/errors.pyo
lib/scons/SCons/Optik/option.py
lib/scons/SCons/Optik/option.pyc
lib/scons/SCons/Optik/option.pyo
lib/scons/SCons/Optik/option_parser.py
lib/scons/SCons/Optik/option_parser.pyc
lib/scons/SCons/Optik/option_parser.pyo
lib/scons/SCons/Options/BoolOption.py
lib/scons/SCons/Options/BoolOption.pyc
lib/scons/SCons/Options/BoolOption.pyo
lib/scons/SCons/Options/EnumOption.py
lib/scons/SCons/Options/EnumOption.pyc
lib/scons/SCons/Options/EnumOption.pyo
lib/scons/SCons/Options/ListOption.py
lib/scons/SCons/Options/ListOption.pyc
lib/scons/SCons/Options/ListOption.pyo
lib/scons/SCons/Options/PackageOption.py
lib/scons/SCons/Options/PackageOption.pyc
lib/scons/SCons/Options/PackageOption.pyo
lib/scons/SCons/Options/PathOption.py
lib/scons/SCons/Options/PathOption.pyc
lib/scons/SCons/Options/PathOption.pyo
lib/scons/SCons/Options/__init__.py
lib/scons/SCons/Options/__init__.pyc
lib/scons/SCons/Options/__init__.pyo
lib/scons/SCons/Platform/__init__.py
lib/scons/SCons/Platform/__init__.pyc
lib/scons/SCons/Platform/__init__.pyo
lib/scons/SCons/Platform/aix.py
lib/scons/SCons/Platform/aix.pyc
lib/scons/SCons/Platform/aix.pyo
lib/scons/SCons/Platform/cygwin.py
lib/scons/SCons/Platform/cygwin.pyc
lib/scons/SCons/Platform/cygwin.pyo
lib/scons/SCons/Platform/darwin.py
lib/scons/SCons/Platform/darwin.pyc
lib/scons/SCons/Platform/darwin.pyo
lib/scons/SCons/Platform/hpux.py
lib/scons/SCons/Platform/hpux.pyc
lib/scons/SCons/Platform/hpux.pyo
lib/scons/SCons/Platform/irix.py
lib/scons/SCons/Platform/irix.pyc
lib/scons/SCons/Platform/irix.pyo
lib/scons/SCons/Platform/os2.py
lib/scons/SCons/Platform/os2.pyc
lib/scons/SCons/Platform/os2.pyo
lib/scons/SCons/Platform/posix.py
lib/scons/SCons/Platform/posix.pyc
lib/scons/SCons/Platform/posix.pyo
lib/scons/SCons/Platform/sunos.py
lib/scons/SCons/Platform/sunos.pyc
lib/scons/SCons/Platform/sunos.pyo
lib/scons/SCons/Platform/win32.py
lib/scons/SCons/Platform/win32.pyc
lib/scons/SCons/Platform/win32.pyo
lib/scons/SCons/SConf.py
lib/scons/SCons/SConf.pyc
lib/scons/SCons/SConf.pyo
update to SCons-0.96 IMPORTANT: Release 0.96 contains the following interface changes: - All Builder calls now return a *list* of Nodes, even when the Builder only builds one file. This may require SConscript file changes if you were manipulating the return values from Builders. - The SConsignFile() function now uses a different internal database format by default. This will cause a rebuild when you upgrade to 0.96 unless you modify your SConsignFile() call. - The internal format of .sconsign files has been changed. The change was coded to be backwards-compatible, but there might be corner cases that cause warnings about "ignoring corrupt .sconsign files" and rebuilds when you use SCons 0.96 for the first time in an already-built tree. - The scan_check function that can be supplied to a custom Scanner now must take two arguments, the Node to be checked and a construction environment. It previously only used the Node as an argument. - The internal "node_factory" and "scanner" keyword arguments have been removed from the Builder() function, in favor of separate "target_factory," "source_factory," "target_scanner" and "source"scanner" keywords, which are now documented. - The Scanner add_skey() function has been dropped in favor of using construction variables for the lists of file suffixes known to a Scanner. - File name extensions that contain all digits are now assumed to be version numbers and treated as part of the file basename. - The env.Append() and env.Prepend() methods have been changed to behave like the rest of Python when either argument is a UserList. See the release notes for more information about these changes. This release adds the following new features: - A new --debug=explain option tells SCons to report the reason(s) why it thinks it must rebuild something. - New Moc() and Uic() Builders provide more explicit control over Qt builds, plus new construction variables to control them: $QT_AUTOSCAN, $QT_DEBUG, $QT_MOCCXXPREFIX, $QT_MOCCXXSUFFIX, $QT_MOCHPREFIX, $QT_MOCHSUFFIX, $QT_UICDECLPREFIX, $QT_UICDECLSUFFIX, $QT_UICIMPLPREFIX, $QT_UICIMPLSUFFIX and $QT_UISUFFIX. - Support for Fortran 90 and Fortran 95 has been added. - The newer "ifort" versions of the Intel Fortran Compiler for Linux are now supported. - New functions have been added to return platform-independent Actions that Chmod(), Copy(), Delete(), Mkdir(), Move() and Touch() files and/or directories. - A new Execute() function can now execute Actions directly at SConscript-read time. - A new $RPATH variable has been added that specifies a list of directories for the GNU and IRIX linkers to search for shared libraries. - New $CPPSUFFIXES, $DSUFFIXES, $FORTRANSUFFIXES and $IDLSUFFIXES variables have been added that make it easier to arrange for additional file suffixes to be scanned by the default Scanners. - A new Flatten() function can be used to turn nested lists of Nodes (or other arguments) into a flat list. - A new --debug=presub option prints the commands to be executed before their construction variables are expanded. - A new .win32 Node attribute will expand file names with Windows backslash path separators on any system. - A new ARGLIST variable makes it possible to fetch keyword=value arguments in the order specified on the command line. - Support has been added for the .dylib shared library suffix and -dynamiclib linker option on Mac OS X (darwin). For a complete list see the included CHANGES.txt.
2004-08-18 22:27:42 +02:00
lib/scons/SCons/SConsign.py
lib/scons/SCons/SConsign.pyc
lib/scons/SCons/SConsign.pyo
lib/scons/SCons/Scanner/C.py
lib/scons/SCons/Scanner/C.pyc
lib/scons/SCons/Scanner/C.pyo
lib/scons/SCons/Scanner/D.py
lib/scons/SCons/Scanner/D.pyc
lib/scons/SCons/Scanner/D.pyo
lib/scons/SCons/Scanner/Fortran.py
lib/scons/SCons/Scanner/Fortran.pyc
lib/scons/SCons/Scanner/Fortran.pyo
lib/scons/SCons/Scanner/IDL.py
lib/scons/SCons/Scanner/IDL.pyc
lib/scons/SCons/Scanner/IDL.pyo
lib/scons/SCons/Scanner/Prog.py
lib/scons/SCons/Scanner/Prog.pyc
lib/scons/SCons/Scanner/Prog.pyo
lib/scons/SCons/Scanner/__init__.py
lib/scons/SCons/Scanner/__init__.pyc
lib/scons/SCons/Scanner/__init__.pyo
lib/scons/SCons/Script/SConscript.py
lib/scons/SCons/Script/SConscript.pyc
lib/scons/SCons/Script/SConscript.pyo
lib/scons/SCons/Script/__init__.py
lib/scons/SCons/Script/__init__.pyc
lib/scons/SCons/Script/__init__.pyo
lib/scons/SCons/Sig/MD5.py
lib/scons/SCons/Sig/MD5.pyc
lib/scons/SCons/Sig/MD5.pyo
lib/scons/SCons/Sig/TimeStamp.py
lib/scons/SCons/Sig/TimeStamp.pyc
lib/scons/SCons/Sig/TimeStamp.pyo
lib/scons/SCons/Sig/__init__.py
lib/scons/SCons/Sig/__init__.pyc
lib/scons/SCons/Sig/__init__.pyo
lib/scons/SCons/Taskmaster.py
lib/scons/SCons/Taskmaster.pyc
lib/scons/SCons/Taskmaster.pyo
lib/scons/SCons/Tool/386asm.py
lib/scons/SCons/Tool/386asm.pyc
lib/scons/SCons/Tool/386asm.pyo
lib/scons/SCons/Tool/BitKeeper.py
lib/scons/SCons/Tool/BitKeeper.pyc
lib/scons/SCons/Tool/BitKeeper.pyo
lib/scons/SCons/Tool/CVS.py
lib/scons/SCons/Tool/CVS.pyc
lib/scons/SCons/Tool/CVS.pyo
lib/scons/SCons/Tool/JavaCommon.py
lib/scons/SCons/Tool/JavaCommon.pyc
lib/scons/SCons/Tool/JavaCommon.pyo
lib/scons/SCons/Tool/Perforce.py
lib/scons/SCons/Tool/Perforce.pyc
lib/scons/SCons/Tool/Perforce.pyo
lib/scons/SCons/Tool/PharLapCommon.py
lib/scons/SCons/Tool/PharLapCommon.pyc
lib/scons/SCons/Tool/PharLapCommon.pyo
lib/scons/SCons/Tool/RCS.py
lib/scons/SCons/Tool/RCS.pyc
lib/scons/SCons/Tool/RCS.pyo
lib/scons/SCons/Tool/SCCS.py
lib/scons/SCons/Tool/SCCS.pyc
lib/scons/SCons/Tool/SCCS.pyo
lib/scons/SCons/Tool/Subversion.py
lib/scons/SCons/Tool/Subversion.pyc
lib/scons/SCons/Tool/Subversion.pyo
lib/scons/SCons/Tool/__init__.py
lib/scons/SCons/Tool/__init__.pyc
lib/scons/SCons/Tool/__init__.pyo
lib/scons/SCons/Tool/aixc++.py
lib/scons/SCons/Tool/aixc++.pyc
lib/scons/SCons/Tool/aixc++.pyo
lib/scons/SCons/Tool/aixcc.py
lib/scons/SCons/Tool/aixcc.pyc
lib/scons/SCons/Tool/aixcc.pyo
lib/scons/SCons/Tool/aixf77.py
lib/scons/SCons/Tool/aixf77.pyc
lib/scons/SCons/Tool/aixf77.pyo
lib/scons/SCons/Tool/aixlink.py
lib/scons/SCons/Tool/aixlink.pyc
lib/scons/SCons/Tool/aixlink.pyo
lib/scons/SCons/Tool/ar.py
lib/scons/SCons/Tool/ar.pyc
lib/scons/SCons/Tool/ar.pyo
lib/scons/SCons/Tool/as.py
lib/scons/SCons/Tool/as.pyc
lib/scons/SCons/Tool/as.pyo
lib/scons/SCons/Tool/bcc32.py
lib/scons/SCons/Tool/bcc32.pyc
lib/scons/SCons/Tool/bcc32.pyo
lib/scons/SCons/Tool/c++.py
lib/scons/SCons/Tool/c++.pyc
lib/scons/SCons/Tool/c++.pyo
lib/scons/SCons/Tool/cc.py
lib/scons/SCons/Tool/cc.pyc
lib/scons/SCons/Tool/cc.pyo
update to SCons-0.96 IMPORTANT: Release 0.96 contains the following interface changes: - All Builder calls now return a *list* of Nodes, even when the Builder only builds one file. This may require SConscript file changes if you were manipulating the return values from Builders. - The SConsignFile() function now uses a different internal database format by default. This will cause a rebuild when you upgrade to 0.96 unless you modify your SConsignFile() call. - The internal format of .sconsign files has been changed. The change was coded to be backwards-compatible, but there might be corner cases that cause warnings about "ignoring corrupt .sconsign files" and rebuilds when you use SCons 0.96 for the first time in an already-built tree. - The scan_check function that can be supplied to a custom Scanner now must take two arguments, the Node to be checked and a construction environment. It previously only used the Node as an argument. - The internal "node_factory" and "scanner" keyword arguments have been removed from the Builder() function, in favor of separate "target_factory," "source_factory," "target_scanner" and "source"scanner" keywords, which are now documented. - The Scanner add_skey() function has been dropped in favor of using construction variables for the lists of file suffixes known to a Scanner. - File name extensions that contain all digits are now assumed to be version numbers and treated as part of the file basename. - The env.Append() and env.Prepend() methods have been changed to behave like the rest of Python when either argument is a UserList. See the release notes for more information about these changes. This release adds the following new features: - A new --debug=explain option tells SCons to report the reason(s) why it thinks it must rebuild something. - New Moc() and Uic() Builders provide more explicit control over Qt builds, plus new construction variables to control them: $QT_AUTOSCAN, $QT_DEBUG, $QT_MOCCXXPREFIX, $QT_MOCCXXSUFFIX, $QT_MOCHPREFIX, $QT_MOCHSUFFIX, $QT_UICDECLPREFIX, $QT_UICDECLSUFFIX, $QT_UICIMPLPREFIX, $QT_UICIMPLSUFFIX and $QT_UISUFFIX. - Support for Fortran 90 and Fortran 95 has been added. - The newer "ifort" versions of the Intel Fortran Compiler for Linux are now supported. - New functions have been added to return platform-independent Actions that Chmod(), Copy(), Delete(), Mkdir(), Move() and Touch() files and/or directories. - A new Execute() function can now execute Actions directly at SConscript-read time. - A new $RPATH variable has been added that specifies a list of directories for the GNU and IRIX linkers to search for shared libraries. - New $CPPSUFFIXES, $DSUFFIXES, $FORTRANSUFFIXES and $IDLSUFFIXES variables have been added that make it easier to arrange for additional file suffixes to be scanned by the default Scanners. - A new Flatten() function can be used to turn nested lists of Nodes (or other arguments) into a flat list. - A new --debug=presub option prints the commands to be executed before their construction variables are expanded. - A new .win32 Node attribute will expand file names with Windows backslash path separators on any system. - A new ARGLIST variable makes it possible to fetch keyword=value arguments in the order specified on the command line. - Support has been added for the .dylib shared library suffix and -dynamiclib linker option on Mac OS X (darwin). For a complete list see the included CHANGES.txt.
2004-08-18 22:27:42 +02:00
lib/scons/SCons/Tool/cvf.py
lib/scons/SCons/Tool/cvf.pyc
lib/scons/SCons/Tool/cvf.pyo
lib/scons/SCons/Tool/default.py
lib/scons/SCons/Tool/default.pyc
lib/scons/SCons/Tool/default.pyo
lib/scons/SCons/Tool/dmd.py
lib/scons/SCons/Tool/dmd.pyc
lib/scons/SCons/Tool/dmd.pyo
lib/scons/SCons/Tool/dvipdf.py
lib/scons/SCons/Tool/dvipdf.pyc
lib/scons/SCons/Tool/dvipdf.pyo
lib/scons/SCons/Tool/dvips.py
lib/scons/SCons/Tool/dvips.pyc
lib/scons/SCons/Tool/dvips.pyo
lib/scons/SCons/Tool/f77.py
lib/scons/SCons/Tool/f77.pyc
lib/scons/SCons/Tool/f77.pyo
update to SCons-0.96 IMPORTANT: Release 0.96 contains the following interface changes: - All Builder calls now return a *list* of Nodes, even when the Builder only builds one file. This may require SConscript file changes if you were manipulating the return values from Builders. - The SConsignFile() function now uses a different internal database format by default. This will cause a rebuild when you upgrade to 0.96 unless you modify your SConsignFile() call. - The internal format of .sconsign files has been changed. The change was coded to be backwards-compatible, but there might be corner cases that cause warnings about "ignoring corrupt .sconsign files" and rebuilds when you use SCons 0.96 for the first time in an already-built tree. - The scan_check function that can be supplied to a custom Scanner now must take two arguments, the Node to be checked and a construction environment. It previously only used the Node as an argument. - The internal "node_factory" and "scanner" keyword arguments have been removed from the Builder() function, in favor of separate "target_factory," "source_factory," "target_scanner" and "source"scanner" keywords, which are now documented. - The Scanner add_skey() function has been dropped in favor of using construction variables for the lists of file suffixes known to a Scanner. - File name extensions that contain all digits are now assumed to be version numbers and treated as part of the file basename. - The env.Append() and env.Prepend() methods have been changed to behave like the rest of Python when either argument is a UserList. See the release notes for more information about these changes. This release adds the following new features: - A new --debug=explain option tells SCons to report the reason(s) why it thinks it must rebuild something. - New Moc() and Uic() Builders provide more explicit control over Qt builds, plus new construction variables to control them: $QT_AUTOSCAN, $QT_DEBUG, $QT_MOCCXXPREFIX, $QT_MOCCXXSUFFIX, $QT_MOCHPREFIX, $QT_MOCHSUFFIX, $QT_UICDECLPREFIX, $QT_UICDECLSUFFIX, $QT_UICIMPLPREFIX, $QT_UICIMPLSUFFIX and $QT_UISUFFIX. - Support for Fortran 90 and Fortran 95 has been added. - The newer "ifort" versions of the Intel Fortran Compiler for Linux are now supported. - New functions have been added to return platform-independent Actions that Chmod(), Copy(), Delete(), Mkdir(), Move() and Touch() files and/or directories. - A new Execute() function can now execute Actions directly at SConscript-read time. - A new $RPATH variable has been added that specifies a list of directories for the GNU and IRIX linkers to search for shared libraries. - New $CPPSUFFIXES, $DSUFFIXES, $FORTRANSUFFIXES and $IDLSUFFIXES variables have been added that make it easier to arrange for additional file suffixes to be scanned by the default Scanners. - A new Flatten() function can be used to turn nested lists of Nodes (or other arguments) into a flat list. - A new --debug=presub option prints the commands to be executed before their construction variables are expanded. - A new .win32 Node attribute will expand file names with Windows backslash path separators on any system. - A new ARGLIST variable makes it possible to fetch keyword=value arguments in the order specified on the command line. - Support has been added for the .dylib shared library suffix and -dynamiclib linker option on Mac OS X (darwin). For a complete list see the included CHANGES.txt.
2004-08-18 22:27:42 +02:00
lib/scons/SCons/Tool/f90.py
lib/scons/SCons/Tool/f90.pyc
lib/scons/SCons/Tool/f90.pyo
lib/scons/SCons/Tool/f95.py
lib/scons/SCons/Tool/f95.pyc
lib/scons/SCons/Tool/f95.pyo
lib/scons/SCons/Tool/fortran.py
lib/scons/SCons/Tool/fortran.pyc
lib/scons/SCons/Tool/fortran.pyo
lib/scons/SCons/Tool/g++.py
lib/scons/SCons/Tool/g++.pyc
lib/scons/SCons/Tool/g++.pyo
lib/scons/SCons/Tool/g77.py
lib/scons/SCons/Tool/g77.pyc
lib/scons/SCons/Tool/g77.pyo
lib/scons/SCons/Tool/gas.py
lib/scons/SCons/Tool/gas.pyc
lib/scons/SCons/Tool/gas.pyo
lib/scons/SCons/Tool/gcc.py
lib/scons/SCons/Tool/gcc.pyc
lib/scons/SCons/Tool/gcc.pyo
lib/scons/SCons/Tool/gnulink.py
lib/scons/SCons/Tool/gnulink.pyc
lib/scons/SCons/Tool/gnulink.pyo
lib/scons/SCons/Tool/gs.py
lib/scons/SCons/Tool/gs.pyc
lib/scons/SCons/Tool/gs.pyo
lib/scons/SCons/Tool/hpc++.py
lib/scons/SCons/Tool/hpc++.pyc
lib/scons/SCons/Tool/hpc++.pyo
lib/scons/SCons/Tool/hpcc.py
lib/scons/SCons/Tool/hpcc.pyc
lib/scons/SCons/Tool/hpcc.pyo
lib/scons/SCons/Tool/hplink.py
lib/scons/SCons/Tool/hplink.pyc
lib/scons/SCons/Tool/hplink.pyo
lib/scons/SCons/Tool/icc.py
lib/scons/SCons/Tool/icc.pyc
lib/scons/SCons/Tool/icc.pyo
lib/scons/SCons/Tool/icl.py
lib/scons/SCons/Tool/icl.pyc
lib/scons/SCons/Tool/icl.pyo
lib/scons/SCons/Tool/ifl.py
lib/scons/SCons/Tool/ifl.pyc
lib/scons/SCons/Tool/ifl.pyo
update to SCons-0.96 IMPORTANT: Release 0.96 contains the following interface changes: - All Builder calls now return a *list* of Nodes, even when the Builder only builds one file. This may require SConscript file changes if you were manipulating the return values from Builders. - The SConsignFile() function now uses a different internal database format by default. This will cause a rebuild when you upgrade to 0.96 unless you modify your SConsignFile() call. - The internal format of .sconsign files has been changed. The change was coded to be backwards-compatible, but there might be corner cases that cause warnings about "ignoring corrupt .sconsign files" and rebuilds when you use SCons 0.96 for the first time in an already-built tree. - The scan_check function that can be supplied to a custom Scanner now must take two arguments, the Node to be checked and a construction environment. It previously only used the Node as an argument. - The internal "node_factory" and "scanner" keyword arguments have been removed from the Builder() function, in favor of separate "target_factory," "source_factory," "target_scanner" and "source"scanner" keywords, which are now documented. - The Scanner add_skey() function has been dropped in favor of using construction variables for the lists of file suffixes known to a Scanner. - File name extensions that contain all digits are now assumed to be version numbers and treated as part of the file basename. - The env.Append() and env.Prepend() methods have been changed to behave like the rest of Python when either argument is a UserList. See the release notes for more information about these changes. This release adds the following new features: - A new --debug=explain option tells SCons to report the reason(s) why it thinks it must rebuild something. - New Moc() and Uic() Builders provide more explicit control over Qt builds, plus new construction variables to control them: $QT_AUTOSCAN, $QT_DEBUG, $QT_MOCCXXPREFIX, $QT_MOCCXXSUFFIX, $QT_MOCHPREFIX, $QT_MOCHSUFFIX, $QT_UICDECLPREFIX, $QT_UICDECLSUFFIX, $QT_UICIMPLPREFIX, $QT_UICIMPLSUFFIX and $QT_UISUFFIX. - Support for Fortran 90 and Fortran 95 has been added. - The newer "ifort" versions of the Intel Fortran Compiler for Linux are now supported. - New functions have been added to return platform-independent Actions that Chmod(), Copy(), Delete(), Mkdir(), Move() and Touch() files and/or directories. - A new Execute() function can now execute Actions directly at SConscript-read time. - A new $RPATH variable has been added that specifies a list of directories for the GNU and IRIX linkers to search for shared libraries. - New $CPPSUFFIXES, $DSUFFIXES, $FORTRANSUFFIXES and $IDLSUFFIXES variables have been added that make it easier to arrange for additional file suffixes to be scanned by the default Scanners. - A new Flatten() function can be used to turn nested lists of Nodes (or other arguments) into a flat list. - A new --debug=presub option prints the commands to be executed before their construction variables are expanded. - A new .win32 Node attribute will expand file names with Windows backslash path separators on any system. - A new ARGLIST variable makes it possible to fetch keyword=value arguments in the order specified on the command line. - Support has been added for the .dylib shared library suffix and -dynamiclib linker option on Mac OS X (darwin). For a complete list see the included CHANGES.txt.
2004-08-18 22:27:42 +02:00
lib/scons/SCons/Tool/ifort.py
lib/scons/SCons/Tool/ifort.pyc
lib/scons/SCons/Tool/ifort.pyo
lib/scons/SCons/Tool/ilink.py
lib/scons/SCons/Tool/ilink.pyc
lib/scons/SCons/Tool/ilink.pyo
lib/scons/SCons/Tool/ilink32.py
lib/scons/SCons/Tool/ilink32.pyc
lib/scons/SCons/Tool/ilink32.pyo
lib/scons/SCons/Tool/jar.py
lib/scons/SCons/Tool/jar.pyc
lib/scons/SCons/Tool/jar.pyo
lib/scons/SCons/Tool/javac.py
lib/scons/SCons/Tool/javac.pyc
lib/scons/SCons/Tool/javac.pyo
lib/scons/SCons/Tool/javah.py
lib/scons/SCons/Tool/javah.pyc
lib/scons/SCons/Tool/javah.pyo
lib/scons/SCons/Tool/latex.py
lib/scons/SCons/Tool/latex.pyc
lib/scons/SCons/Tool/latex.pyo
lib/scons/SCons/Tool/lex.py
lib/scons/SCons/Tool/lex.pyc
lib/scons/SCons/Tool/lex.pyo
lib/scons/SCons/Tool/link.py
lib/scons/SCons/Tool/link.pyc
lib/scons/SCons/Tool/link.pyo
lib/scons/SCons/Tool/linkloc.py
lib/scons/SCons/Tool/linkloc.pyc
lib/scons/SCons/Tool/linkloc.pyo
lib/scons/SCons/Tool/m4.py
lib/scons/SCons/Tool/m4.pyc
lib/scons/SCons/Tool/m4.pyo
lib/scons/SCons/Tool/masm.py
lib/scons/SCons/Tool/masm.pyc
lib/scons/SCons/Tool/masm.pyo
lib/scons/SCons/Tool/midl.py
lib/scons/SCons/Tool/midl.pyc
lib/scons/SCons/Tool/midl.pyo
lib/scons/SCons/Tool/mingw.py
lib/scons/SCons/Tool/mingw.pyc
lib/scons/SCons/Tool/mingw.pyo
lib/scons/SCons/Tool/mslib.py
lib/scons/SCons/Tool/mslib.pyc
lib/scons/SCons/Tool/mslib.pyo
lib/scons/SCons/Tool/mslink.py
lib/scons/SCons/Tool/mslink.pyc
lib/scons/SCons/Tool/mslink.pyo
lib/scons/SCons/Tool/msvc.py
lib/scons/SCons/Tool/msvc.pyc
lib/scons/SCons/Tool/msvc.pyo
lib/scons/SCons/Tool/msvs.py
lib/scons/SCons/Tool/msvs.pyc
lib/scons/SCons/Tool/msvs.pyo
lib/scons/SCons/Tool/nasm.py
lib/scons/SCons/Tool/nasm.pyc
lib/scons/SCons/Tool/nasm.pyo
lib/scons/SCons/Tool/pdflatex.py
lib/scons/SCons/Tool/pdflatex.pyc
lib/scons/SCons/Tool/pdflatex.pyo
lib/scons/SCons/Tool/pdftex.py
lib/scons/SCons/Tool/pdftex.pyc
lib/scons/SCons/Tool/pdftex.pyo
lib/scons/SCons/Tool/qt.py
lib/scons/SCons/Tool/qt.pyc
lib/scons/SCons/Tool/qt.pyo
lib/scons/SCons/Tool/rmic.py
lib/scons/SCons/Tool/rmic.pyc
lib/scons/SCons/Tool/rmic.pyo
lib/scons/SCons/Tool/sgiar.py
lib/scons/SCons/Tool/sgiar.pyc
lib/scons/SCons/Tool/sgiar.pyo
lib/scons/SCons/Tool/sgic++.py
lib/scons/SCons/Tool/sgic++.pyc
lib/scons/SCons/Tool/sgic++.pyo
lib/scons/SCons/Tool/sgicc.py
lib/scons/SCons/Tool/sgicc.pyc
lib/scons/SCons/Tool/sgicc.pyo
lib/scons/SCons/Tool/sgilink.py
lib/scons/SCons/Tool/sgilink.pyc
lib/scons/SCons/Tool/sgilink.pyo
lib/scons/SCons/Tool/sunar.py
lib/scons/SCons/Tool/sunar.pyc
lib/scons/SCons/Tool/sunar.pyo
lib/scons/SCons/Tool/sunc++.py
lib/scons/SCons/Tool/sunc++.pyc
lib/scons/SCons/Tool/sunc++.pyo
lib/scons/SCons/Tool/suncc.py
lib/scons/SCons/Tool/suncc.pyc
lib/scons/SCons/Tool/suncc.pyo
lib/scons/SCons/Tool/sunlink.py
lib/scons/SCons/Tool/sunlink.pyc
lib/scons/SCons/Tool/sunlink.pyo
lib/scons/SCons/Tool/swig.py
lib/scons/SCons/Tool/swig.pyc
lib/scons/SCons/Tool/swig.pyo
lib/scons/SCons/Tool/tar.py
lib/scons/SCons/Tool/tar.pyc
lib/scons/SCons/Tool/tar.pyo
lib/scons/SCons/Tool/tex.py
lib/scons/SCons/Tool/tex.pyc
lib/scons/SCons/Tool/tex.pyo
lib/scons/SCons/Tool/tlib.py
lib/scons/SCons/Tool/tlib.pyc
lib/scons/SCons/Tool/tlib.pyo
lib/scons/SCons/Tool/yacc.py
lib/scons/SCons/Tool/yacc.pyc
lib/scons/SCons/Tool/yacc.pyo
lib/scons/SCons/Tool/zip.py
lib/scons/SCons/Tool/zip.pyc
lib/scons/SCons/Tool/zip.pyo
lib/scons/SCons/Util.py
lib/scons/SCons/Util.pyc
lib/scons/SCons/Util.pyo
lib/scons/SCons/Warnings.py
lib/scons/SCons/Warnings.pyc
lib/scons/SCons/Warnings.pyo
lib/scons/SCons/__init__.py
lib/scons/SCons/__init__.pyc
lib/scons/SCons/__init__.pyo
update to SCons-0.96 IMPORTANT: Release 0.96 contains the following interface changes: - All Builder calls now return a *list* of Nodes, even when the Builder only builds one file. This may require SConscript file changes if you were manipulating the return values from Builders. - The SConsignFile() function now uses a different internal database format by default. This will cause a rebuild when you upgrade to 0.96 unless you modify your SConsignFile() call. - The internal format of .sconsign files has been changed. The change was coded to be backwards-compatible, but there might be corner cases that cause warnings about "ignoring corrupt .sconsign files" and rebuilds when you use SCons 0.96 for the first time in an already-built tree. - The scan_check function that can be supplied to a custom Scanner now must take two arguments, the Node to be checked and a construction environment. It previously only used the Node as an argument. - The internal "node_factory" and "scanner" keyword arguments have been removed from the Builder() function, in favor of separate "target_factory," "source_factory," "target_scanner" and "source"scanner" keywords, which are now documented. - The Scanner add_skey() function has been dropped in favor of using construction variables for the lists of file suffixes known to a Scanner. - File name extensions that contain all digits are now assumed to be version numbers and treated as part of the file basename. - The env.Append() and env.Prepend() methods have been changed to behave like the rest of Python when either argument is a UserList. See the release notes for more information about these changes. This release adds the following new features: - A new --debug=explain option tells SCons to report the reason(s) why it thinks it must rebuild something. - New Moc() and Uic() Builders provide more explicit control over Qt builds, plus new construction variables to control them: $QT_AUTOSCAN, $QT_DEBUG, $QT_MOCCXXPREFIX, $QT_MOCCXXSUFFIX, $QT_MOCHPREFIX, $QT_MOCHSUFFIX, $QT_UICDECLPREFIX, $QT_UICDECLSUFFIX, $QT_UICIMPLPREFIX, $QT_UICIMPLSUFFIX and $QT_UISUFFIX. - Support for Fortran 90 and Fortran 95 has been added. - The newer "ifort" versions of the Intel Fortran Compiler for Linux are now supported. - New functions have been added to return platform-independent Actions that Chmod(), Copy(), Delete(), Mkdir(), Move() and Touch() files and/or directories. - A new Execute() function can now execute Actions directly at SConscript-read time. - A new $RPATH variable has been added that specifies a list of directories for the GNU and IRIX linkers to search for shared libraries. - New $CPPSUFFIXES, $DSUFFIXES, $FORTRANSUFFIXES and $IDLSUFFIXES variables have been added that make it easier to arrange for additional file suffixes to be scanned by the default Scanners. - A new Flatten() function can be used to turn nested lists of Nodes (or other arguments) into a flat list. - A new --debug=presub option prints the commands to be executed before their construction variables are expanded. - A new .win32 Node attribute will expand file names with Windows backslash path separators on any system. - A new ARGLIST variable makes it possible to fetch keyword=value arguments in the order specified on the command line. - Support has been added for the .dylib shared library suffix and -dynamiclib linker option on Mac OS X (darwin). For a complete list see the included CHANGES.txt.
2004-08-18 22:27:42 +02:00
lib/scons/SCons/dblite.py
lib/scons/SCons/dblite.pyc
lib/scons/SCons/dblite.pyo
lib/scons/SCons/exitfuncs.py
lib/scons/SCons/exitfuncs.pyc
lib/scons/SCons/exitfuncs.pyo
man/man1/scons.1
man/man1/sconsign.1
@dirrm lib/scons/SCons/Tool
@dirrm lib/scons/SCons/Sig
@dirrm lib/scons/SCons/Script
@dirrm lib/scons/SCons/Scanner
@dirrm lib/scons/SCons/Platform
@dirrm lib/scons/SCons/Options
@dirrm lib/scons/SCons/Optik
@dirrm lib/scons/SCons/Node
@dirrm lib/scons/SCons
@dirrm lib/scons